You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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