Things/things/DeviceLdr.h

24 lines
455 B
C++

#ifndef DEVICELDR_H
#define DEVICELDR_H
#include "Device.h"
#include <Homie.h>
class DeviceLdr : public Device {
public:
inline DeviceLdr(byte ldrPin) {
pin = ldrPin;
}
virtual void deviceSetup();
virtual void deviceRegister();
virtual void deviceLoop();
private:
byte pin;
const int INTERVAL_LDR = 60;
unsigned long lastSentLDR = 0;
int ldr = 0;
HomieNode ldrNode = HomieNode("ldr", "ldr");
};
#endif