Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.7 KiB

  1. // -----------------------------------------------------------------------------
  2. // Analog Sensor (maps to an analogRead)
  3. // Copyright (C) 2017 by Xose Pérez <xose dot perez at gmail dot com>
  4. // -----------------------------------------------------------------------------
  5. #if SENSOR_SUPPORT && ANALOG_SUPPORT
  6. #pragma once
  7. #include "Arduino.h"
  8. #include "BaseSensor.h"
  9. class AnalogSensor : public BaseSensor {
  10. public:
  11. // ---------------------------------------------------------------------
  12. // Public
  13. // ---------------------------------------------------------------------
  14. AnalogSensor(): BaseSensor() {
  15. _count = 1;
  16. _sensor_id = SENSOR_ANALOG_ID;
  17. }
  18. // ---------------------------------------------------------------------
  19. // Sensor API
  20. // ---------------------------------------------------------------------
  21. // Initialization method, must be idempotent
  22. void begin() {
  23. pinMode(0, INPUT);
  24. }
  25. // Descriptive name of the sensor
  26. String description() {
  27. return String("ANALOG @ GPIO0");
  28. }
  29. // Type for slot # index
  30. unsigned char type(unsigned char index) {
  31. _error = SENSOR_ERROR_OK;
  32. if (index == 0) return MAGNITUDE_ANALOG;
  33. _error = SENSOR_ERROR_OUT_OF_RANGE;
  34. return MAGNITUDE_NONE;
  35. }
  36. // Current value for slot # index
  37. double value(unsigned char index) {
  38. _error = SENSOR_ERROR_OK;
  39. if (index == 0) return analogRead(0);
  40. _error = SENSOR_ERROR_OUT_OF_RANGE;
  41. return 0;
  42. }
  43. };
  44. #endif // SENSOR_SUPPORT && ANALOG_SUPPORT