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.

69 lines
2.0 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. #pragma once
  6. #include "Arduino.h"
  7. #include "BaseSensor.h"
  8. class AnalogSensor : public BaseSensor {
  9. public:
  10. // ---------------------------------------------------------------------
  11. // Public
  12. // ---------------------------------------------------------------------
  13. AnalogSensor(): BaseSensor() {
  14. _count = 1;
  15. }
  16. void setGPIO(unsigned char gpio, unsigned char mode = INPUT) {
  17. _gpio = gpio;
  18. pinMode(_gpio, mode);
  19. }
  20. // ---------------------------------------------------------------------
  21. // Sensor API
  22. // ---------------------------------------------------------------------
  23. // Descriptive name of the sensor
  24. String name() {
  25. char buffer[20];
  26. snprintf(buffer, sizeof(buffer), "ANALOG @ GPIO%d", _gpio);
  27. return String(buffer);
  28. }
  29. // Descriptive name of the slot # index
  30. String slot(unsigned char index) {
  31. return name();
  32. }
  33. // Type for slot # index
  34. magnitude_t type(unsigned char index) {
  35. _error = SENSOR_ERROR_OK;
  36. if (index == 0) return MAGNITUDE_ANALOG;
  37. _error = SENSOR_ERROR_OUT_OF_RANGE;
  38. return MAGNITUDE_NONE;
  39. }
  40. // Current value for slot # index
  41. double value(unsigned char index) {
  42. _error = SENSOR_ERROR_OK;
  43. if (index == 0) return analogRead(_gpio);
  44. _error = SENSOR_ERROR_OUT_OF_RANGE;
  45. return 0;
  46. }
  47. protected:
  48. // ---------------------------------------------------------------------
  49. // Protected
  50. // ---------------------------------------------------------------------
  51. unsigned char _gpio;
  52. };