mirror of
https://github.com/paperdash/device-epd.git
synced 2024-11-13 19:12:00 +00:00
18 lines
296 B
C
18 lines
296 B
C
#ifndef DEVICE_H
|
|
#define DEVICE_H
|
|
|
|
#include <Arduino.h>
|
|
#include <pgmspace.h>
|
|
#include <ArduinoUniqueID.h>
|
|
|
|
|
|
void setupDevice();
|
|
void loopDevice();
|
|
|
|
void deviceSetSleepInterval(long interval);
|
|
long deviceGetSleepInterval();
|
|
unsigned int deviceGetBootCount();
|
|
|
|
extern char DeviceId[21 +1];
|
|
|
|
#endif |