tinance2-doorbot/include/tinance2.h
2024-01-31 09:52:11 +01:00

22 lines
438 B
C

#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"
#ifdef LOCAL_ACL
#include "local_acl.h"
#endif
void tinance2SyncTaskFunction(void *parameter);
void tinance2authrequest(String fullCardID, String cardID);
extern HTTPClient tinance2_http;
#endif