LoRa_APRS_iGate/src/TaskEth.h

18 lines
255 B
C
Raw Normal View History

#ifndef TASK_ETH_H_
#define TASK_ETH_H_
#include <TaskManager.h>
class EthTask : public Task {
public:
EthTask();
virtual ~EthTask();
2021-05-19 00:44:37 +02:00
virtual bool setup(System &system) override;
virtual bool loop(System &system) override;
private:
};
#endif