mirror of
https://gitlab.com/fabinfra/fabhardware/absaugungsklappensteuerung.git
synced 2025-03-14 15:51:54 +01:00
29 lines
283 B
C
29 lines
283 B
C
|
#ifndef ARDUINO_APASSUNG_H
|
||
|
#define ARDUINO_APASSUNG_H
|
||
|
|
||
|
#include "myList.h"
|
||
|
|
||
|
class ArduinoAnpassung : public MyList{
|
||
|
|
||
|
public:
|
||
|
~ArduinoAnpassung();
|
||
|
|
||
|
|
||
|
static void setup();
|
||
|
static void loop();
|
||
|
|
||
|
|
||
|
virtual void memberLoop();
|
||
|
virtual void memberSetup();
|
||
|
|
||
|
protected:
|
||
|
|
||
|
|
||
|
|
||
|
private:
|
||
|
|
||
|
|
||
|
|
||
|
};
|
||
|
#endif
|