LoRa_APRS_iGate/src/TaskEth.h

21 wiersze
343 B
C

#ifndef TASK_ETH_H_
#define TASK_ETH_H_
2023-09-23 13:37:35 +00:00
#include "System/TaskManager.h"
2022-03-20 00:03:26 +00:00
void setWiFiLogger(logging::Logger *logger);
2021-05-23 21:28:03 +00:00
void WiFiEvent(WiFiEvent_t event);
class EthTask : public Task {
public:
EthTask();
virtual ~EthTask();
2021-05-18 22:44:37 +00:00
virtual bool setup(System &system) override;
virtual bool loop(System &system) override;
private:
};
#endif