mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-18 22:50:32 +01:00
20 lines
291 B
C++
20 lines
291 B
C++
#ifndef TASK_ETH_H_
|
|
#define TASK_ETH_H_
|
|
|
|
#include <TaskManager.h>
|
|
|
|
void WiFiEvent(WiFiEvent_t event);
|
|
|
|
class EthTask : public Task {
|
|
public:
|
|
EthTask();
|
|
virtual ~EthTask();
|
|
|
|
virtual bool setup(System &system) override;
|
|
virtual bool loop(System &system) override;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|