LoRa_APRS_iGate/src/TaskEth.h

21 wiersze
336 B
C
Czysty Zwykły widok Historia

#ifndef TASK_ETH_H_
#define TASK_ETH_H_
#include <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