device-epd/include/device.h
Thomas Ballmann 31acb54167 lots of stuff
2020-02-20 21:59:59 +01:00

16 lines
238 B
C

#ifndef DEVICE_H
#define DEVICE_H
#include <Arduino.h>
#include <pgmspace.h>
void setupDevice();
void loopDevice();
void deviceSetSleepInterval(long interval);
long deviceGetSleepInterval();
unsigned int deviceGetBootCount();
#endif