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.

63 lines
2.0 KiB

  1. #pragma once
  2. #include "../common.h"
  3. #include "../front_panel_hal.h"
  4. #include "esphome/components/sensor/sensor.h"
  5. #include <cmath>
  6. namespace esphome {
  7. namespace xiaomi {
  8. namespace bslamp2 {
  9. /**
  10. * A sensor for the touch slider on the front panel of the
  11. * Xiaomi Mijia Bedside Lamp 2.
  12. *
  13. * This sensor publishes the level at which the slider was touched, so it
  14. * can be used to implement automations. Note that it does not represent
  15. * the brightness of the LED lights (this is implemented by the light output
  16. * component), nor the level as displayed by the slider using the front
  17. * panel illumination (this is implemented by the slider output component).
  18. */
  19. class XiaomiBslamp2SliderSensor : public sensor::Sensor, public Component {
  20. public:
  21. void set_parent(FrontPanelHAL *front_panel) { front_panel_ = front_panel; }
  22. void set_range_from(float from) { range_from_ = from; }
  23. void set_range_to(float to) { range_to_ = to; }
  24. void setup() {
  25. slope_ = (range_to_ - range_from_) / 19.0f;
  26. front_panel_->add_on_event_callback([this](EVENT ev) {
  27. if ((ev & FLAG_PART_MASK) == FLAG_PART_SLIDER) {
  28. float level = (ev & FLAG_LEVEL_MASK) >> FLAG_LEVEL_SHIFT;
  29. // Slider level 1 is really hard to touch. It is between
  30. // the power button and the slider space, so it doesn't
  31. // look like this one was ever meant to be used, or that
  32. // the design was faulty on this. Therefore, level 1 is
  33. // ignored. The resulting range of levels is 0-19.
  34. float corrected_level = max(0.0f, level - 2.0f);
  35. float final_level = range_from_ + (slope_ * corrected_level);
  36. this->publish_state(final_level);
  37. }
  38. });
  39. }
  40. void dump_config() {
  41. ESP_LOGCONFIG(TAG, "Front panel slider sensor:");
  42. ESP_LOGCONFIG(TAG, " Range from: %f", range_from_);
  43. ESP_LOGCONFIG(TAG, " Range to: %f", range_to_);
  44. }
  45. protected:
  46. FrontPanelHAL *front_panel_;
  47. float range_from_;
  48. float range_to_;
  49. float slope_;
  50. };
  51. } // namespace bslamp2
  52. } // namespace xiaomi
  53. } // namespace esphome