tinance2-doorbot/include/tinance2.h

24 lines
500 B
C
Raw Permalink Normal View History

#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-31 08:52:11 +00:00
#ifdef LOCAL_ACL
#include "local_acl.h"
#endif
2024-01-31 10:50:05 +00:00
extern void tinance2SyncTaskFunction(void *parameter);
extern void tinance2authrequest(String fullCardID, String cardID);
extern void tinance2logrequest(String message);
2024-01-30 17:21:48 +00:00
extern HTTPClient tinance2_http;
#endif