mirror of
https://github.com/paperdash/device-epd.git
synced 2024-11-16 06:13:17 +00:00
19 lines
323 B
C
19 lines
323 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();
|
|
bool deviceIsConfigured();
|
|
|
|
extern char DeviceId[21 +1];
|
|
|
|
#endif |