ESP8266_swiss_army_board/src/app/tasks.h

21 lines
371 B
C

#ifndef TASKS_H
#define TASKS_H
#include <Arduino.h>
#include "SAB.h"
#include "views.h"
#include "HttpClient.h"
boolean task_blink(void *);
boolean task_batt_sensing(void *);
boolean task_esp_reset_restart(void *);
typedef struct dataLogger
{
HttpClient client;
uint8_t counter;
boolean rdy;
}DataLogger;
boolean task_post_data_logger(void *);
#endif //TASKS_H