mirror of
https://github.com/paperdash/device-epd.git
synced 2024-11-10 07:10:32 +00:00
16 lines
238 B
C
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 |