mirror of
https://gitlab.com/fabinfra/fabhardware/absaugungsklappensteuerung.git
synced 2025-03-12 14:51:44 +01:00
40 lines
415 B
C++
40 lines
415 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 memberSetup();
|
|
virtual void memberLoop();
|
|
|
|
|
|
static unsigned int getDeltamsec();
|
|
|
|
protected:
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
static void zeit();
|
|
|
|
static unsigned long alteZeit;
|
|
static unsigned int deltaZeit;
|
|
|
|
|
|
};
|
|
#endif
|