1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2026-03-13 10:53:06 +01:00
Files
esp32-nmea2000-obp60/lib/exampletask/GwIExampleTask.h
2023-10-27 20:29:16 +02:00

14 lines
264 B
C++

#ifndef GWIEXAMPLETASK_H
#define GWIEXAMPLETASK_H
#include "GwApi.h"
/**
* an interface for the example task
*/
class ExampleTaskIf : public GwApi::TaskInterfaces::Base{
public:
long count=0;
String someValue;
};
DECLARE_TASKIF(ExampleTaskIf);
#endif