2021-01-25 16:26:39 +01:00
|
|
|
#ifndef DCCTimer_h
|
|
|
|
#define DCCTimer_h
|
|
|
|
#include "Arduino.h"
|
|
|
|
|
|
|
|
typedef void (*INTERRUPT_CALLBACK)();
|
|
|
|
|
|
|
|
class DCCTimer {
|
|
|
|
public:
|
2021-01-26 11:55:46 +01:00
|
|
|
static void begin(INTERRUPT_CALLBACK interrupt);
|
2021-01-25 16:26:39 +01:00
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|