mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-29 03:44:16 +01:00
- task manager working now in round robbin and returning after every task to arduino - adding a system class which is managing all bigger things
17 lines
318 B
C++
17 lines
318 B
C++
#ifndef TASK_DISPLAY_H_
|
|
#define TASK_DISPLAY_H_
|
|
|
|
#include <Display.h>
|
|
#include <TaskManager.h>
|
|
|
|
class DisplayTask : public Task {
|
|
public:
|
|
DisplayTask();
|
|
virtual ~DisplayTask();
|
|
|
|
virtual bool setup(std::shared_ptr<System> system) override;
|
|
virtual bool loop(std::shared_ptr<System> system) override;
|
|
};
|
|
|
|
#endif
|