2024-01-30 16:33:00 +00:00
|
|
|
#ifndef tinance2_h
|
|
|
|
#define tinance2_h
|
|
|
|
|
|
|
|
|
|
|
|
#include <freertos/FreeRTOS.h>
|
|
|
|
#include <freertos/task.h>
|
|
|
|
#include <HTTPClient.h>
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
|
|
|
#include "settings.h"
|
|
|
|
#include "secrets.h"
|
|
|
|
#include "hardware.h"
|
|
|
|
#include "buzzer_ctl.h"
|
2024-01-30 17:47:34 +00:00
|
|
|
#include "local_acl.h"
|
2024-01-30 16:33:00 +00:00
|
|
|
|
|
|
|
void tinance2SyncTaskFunction(void *parameter);
|
|
|
|
void tinance2authrequest(String fullCardID, String cardID);
|
2024-01-30 17:21:48 +00:00
|
|
|
extern HTTPClient tinance2_http;
|
2024-01-30 16:33:00 +00:00
|
|
|
|
|
|
|
#endif
|