device-epd/lib/device/device.h

18 lines
296 B
C
Raw Normal View History

2020-02-10 22:14:54 +00:00
#ifndef DEVICE_H
#define DEVICE_H
#include <Arduino.h>
#include <pgmspace.h>
2020-05-02 20:48:46 +00:00
#include <ArduinoUniqueID.h>
2020-02-10 22:14:54 +00:00
void setupDevice();
void loopDevice();
void deviceSetSleepInterval(long interval);
long deviceGetSleepInterval();
2020-02-20 20:59:59 +00:00
unsigned int deviceGetBootCount();
2020-02-10 22:14:54 +00:00
2020-05-02 20:48:46 +00:00
extern char DeviceId[21 +1];
2020-02-10 22:14:54 +00:00
#endif