9 lines
123 B
C
9 lines
123 B
C
#ifndef CALLBACKFUNCTION_H
|
|
#define CALLBACKFUNCTION_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
typedef void (*CallbackFunction) ();
|
|
|
|
#endif
|