2022-02-06 17:51:55 +01:00
|
|
|
#ifndef ARDUINO_APASSUNG_H
|
|
|
|
#define ARDUINO_APASSUNG_H
|
|
|
|
|
|
|
|
#include "myList.h"
|
|
|
|
|
|
|
|
class ArduinoAnpassung : public MyList{
|
|
|
|
|
|
|
|
public:
|
2022-02-09 14:36:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2022-02-06 17:51:55 +01:00
|
|
|
~ArduinoAnpassung();
|
|
|
|
|
|
|
|
|
|
|
|
static void setup();
|
|
|
|
static void loop();
|
|
|
|
|
2022-02-10 11:39:16 +01:00
|
|
|
virtual void memberSetup();
|
|
|
|
virtual void memberLoop();
|
2022-02-09 14:36:58 +01:00
|
|
|
|
2022-02-06 17:51:55 +01:00
|
|
|
|
2022-02-09 14:36:58 +01:00
|
|
|
static unsigned int getDeltamsec();
|
2022-02-06 17:51:55 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-02-09 14:36:58 +01:00
|
|
|
static void zeit();
|
|
|
|
|
|
|
|
static unsigned long alteZeit;
|
|
|
|
static unsigned int deltaZeit;
|
|
|
|
|
|
|
|
|
2022-02-06 17:51:55 +01:00
|
|
|
};
|
|
|
|
#endif
|