PowerOutlet.h 877 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef __POWEROUTLET_H__
  2. #define __POWEROUTLET_H__
  3. #include <Arduino.h>
  4. #include <ArduinoJson.h>
  5. class PowerOutlet
  6. {
  7. private:
  8. int id;
  9. String name;
  10. bool state;
  11. bool autostart;
  12. int delay;
  13. float voltage;
  14. int pin;
  15. int touchPin;
  16. String connector;
  17. public:
  18. void setId(int newId);
  19. int getId();
  20. void setName(String newName);
  21. String getName();
  22. void setState(bool newState);
  23. bool getState();
  24. void setAutostart(bool newAutostart);
  25. bool getAutostart();
  26. void setDelay(int newDelay);
  27. int getDelay();
  28. void setVoltage(float newVoltage);
  29. float getVoltage();
  30. void setPin(int newPin);
  31. int getPin();
  32. void setTouchPin(int newTouchPin);
  33. int getTouchPin();
  34. void setConnector(String newConnector);
  35. String getConnector();
  36. StaticJsonDocument<128> toJson();
  37. };
  38. #endif //__POWEROUTLET_H__