Things/things/Device.h

13 lines
224 B
C
Raw Normal View History

2016-04-08 08:18:59 +00:00
#ifndef DEVICE_H
#define DEVICE_H
class Device {
public:
// purely virtual functions, need to be implemented
virtual void setup() = 0;
virtual void homieRegister() = 0;
virtual void loop() = 0;
};
#endif