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.

253 lines
8.0 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. #pragma once
  2. #include "esphome.h"
  3. #define CONSTANT_BRIGHTNESS true
  4. // The lamp circuitry does not support having RGB and white
  5. // channels active at the same time. Therefore, color interlock
  6. // must be enabled.
  7. #define COLOR_INTERLOCK true
  8. // Same range as supported by the original Yeelight firmware.
  9. #define HOME_ASSISTANT_MIRED_MIN 153
  10. #define HOME_ASSISTANT_MIRED_MAX 588
  11. namespace esphome {
  12. namespace rgbww {
  13. class YeelightBedsideLampV2LightOutput : public Component, public LightOutput
  14. {
  15. public:
  16. YeelightBedsideLampV2LightOutput(
  17. FloatOutput *r, FloatOutput *g, FloatOutput *b, FloatOutput *w,
  18. esphome::gpio::GPIOBinaryOutput *m1, esphome::gpio::GPIOBinaryOutput *m2) :
  19. red_(r), green_(g), blue_(b), white_(w), master1_(m1), master2_(m2) {}
  20. LightTraits get_traits() override
  21. {
  22. auto traits = LightTraits();
  23. traits.set_supports_rgb(true);
  24. traits.set_supports_color_temperature(true);
  25. traits.set_supports_brightness(true);
  26. traits.set_supports_rgb_white_value(false);
  27. traits.set_supports_color_interlock(COLOR_INTERLOCK);
  28. traits.set_min_mireds(HOME_ASSISTANT_MIRED_MIN);
  29. traits.set_max_mireds(HOME_ASSISTANT_MIRED_MAX);
  30. return traits;
  31. }
  32. void write_state(LightState *state) override
  33. {
  34. auto values = state->current_values;
  35. ESP_LOGD("custom", "B = State %f, RGB %f %f %f, BRI %f, TEMP %f",
  36. values.get_state(),
  37. values.get_red(), values.get_green(), values.get_blue(),
  38. values.get_brightness(), values.get_color_temperature());
  39. // Power down the light when its state is 'off'.
  40. if (values.get_state() == 0) {
  41. this->turn_off_();
  42. return;
  43. }
  44. // Leave it to the default tooling to figure out the basics.
  45. // Because of the color interlocking, there are two possible outcomes:
  46. // - red, green, blue zero -> the light is in color temperature mode
  47. // - cwhite, wwhite zero -> the light is in RGB mode
  48. float red, green, blue, cwhite, wwhite;
  49. state->current_values_as_rgbww(
  50. &red, &green, &blue, &cwhite, &wwhite,
  51. CONSTANT_BRIGHTNESS, COLOR_INTERLOCK);
  52. if (cwhite > 0 || wwhite > 0) {
  53. this->turn_on_in_color_temperature_mode_(
  54. values.get_color_temperature(), values.get_brightness());
  55. } else {
  56. this->turn_on_in_rgb_mode_(
  57. values.get_red(), values.get_green(), values.get_blue(), values.get_brightness());
  58. }
  59. }
  60. private:
  61. FloatOutput *red_;
  62. FloatOutput *green_;
  63. FloatOutput *blue_;
  64. FloatOutput *white_;
  65. esphome::gpio::GPIOBinaryOutput *master1_;
  66. esphome::gpio::GPIOBinaryOutput *master2_;
  67. void turn_off_()
  68. {
  69. master2_->turn_off();
  70. master1_->turn_off();
  71. red_->turn_off();
  72. green_->turn_off();
  73. blue_->turn_off();
  74. white_->turn_off();
  75. }
  76. void turn_on_in_rgb_mode_(float red, float green, float blue, float brightness)
  77. {
  78. ESP_LOGD("custom", "Activate RGB %f, %f, %f, BRIGHTNESS %f", red, green, blue, brightness);
  79. // Compensate for brightness.
  80. red = red * brightness;
  81. green = green * brightness;
  82. blue = blue * brightness;
  83. // Inverse the signal. The LEDs in the lamp's circuit are brighter
  84. // when the voltages on the GPIO pins are lower.
  85. red = 1.0f - red;
  86. green = 1.0f - green;
  87. blue = 1.0f - blue;
  88. float white = 0.0;
  89. ESP_LOGD("rgb_mode", "LED state : RGBW %f, %f, %f, %f", red, green, blue, white);
  90. // Drive the LEDs.
  91. red_->set_level(red);
  92. green_->set_level(green);
  93. blue_->set_level(blue);
  94. white_->set_level(white);
  95. master1_->turn_on();
  96. master2_->turn_on();
  97. }
  98. void turn_on_in_color_temperature_mode_(float temperature, float brightness)
  99. {
  100. ESP_LOGD("temperature_mode", "Activate TEMPERATURE %f, BRIGHTNESS %f", temperature, brightness);
  101. // Empirically determined during programming the temperature GPIO output
  102. // code from below, by checking how far my outputs were off from the
  103. // original lamp firmeware's outputs. This scaler is used for correcting
  104. // my output towards the original output.
  105. float volt_scaler;
  106. float red = 1.0;
  107. float green = 1.0;
  108. float blue = 1.0;
  109. float white = 1.0;
  110. // Temperature band 370 - 588
  111. if (temperature <= HOME_ASSISTANT_MIRED_MAX && temperature >= 371)
  112. {
  113. volt_scaler = 3.23f;
  114. float start = 371;
  115. float end = 588;
  116. float band = end - start;
  117. float red_volt = 2.86f * (1.0f - brightness);
  118. red = red_volt / volt_scaler;
  119. float green_1 = 2.90f + (temperature - start) * (2.97f - 2.90f) / band;
  120. float green_100 = 0.45f + (temperature - start) * (1.13f - 0.45f) / band;
  121. float green_volt = green_1 + brightness * (green_100 - green_1);
  122. green = green_volt / volt_scaler;
  123. float white_1 = 0.28f - (temperature - start) * (0.28f - 0.19f) / band;
  124. float white_100 = 1.07f - (temperature - start) * (1.07f - 0.22f) / band;
  125. float white_volt = white_1 + brightness * (white_100 - white_1);
  126. white = white_volt / volt_scaler;
  127. }
  128. // Temperature band 334 - 370
  129. else if (temperature >= 334)
  130. {
  131. volt_scaler = 3.23f;
  132. float red_volt = (1.0f - brightness) * 2.86f;
  133. red = red_volt / volt_scaler;
  134. float green_volt = 2.9f - brightness * (2.9f - 0.45f);
  135. green = green_volt / volt_scaler;
  136. float white_volt = 0.28f + brightness * (1.07f - 0.28f);
  137. white = white_volt / volt_scaler;
  138. }
  139. // Temperature band 313 - 333
  140. //
  141. // The light becomes noticably brighter when moving from temperature 334 to
  142. // temperature 333. There's a little jump in the lighting output here.
  143. // Possibly this is a switch from warm to cold lighting as imposed by the
  144. // LED circuitry, making this unavoidable. However, it would be interesting
  145. // to see if we can smoothen this out.
  146. // BTW: This behavior is in sync with the original firmware.
  147. else if (temperature >= 313)
  148. {
  149. volt_scaler = 3.23f;
  150. float red_volt = 2.89f - brightness * (2.89f - 0.32f);
  151. red = red_volt / volt_scaler;
  152. float green_volt = 2.96f - brightness * (2.96f - 1.03f);
  153. green = green_volt / volt_scaler;
  154. float white_volt = 0.42f + brightness * (2.43f - 0.42f);
  155. float volt_scaler_white = 3.45f;
  156. white = white_volt / volt_scaler_white;
  157. }
  158. // Temperature band 251 - 312
  159. else if (temperature >= 251)
  160. {
  161. volt_scaler = 3.48f;
  162. float white_correction = 1.061;
  163. float white_volt = 0.5f + brightness * (3.28f * white_correction - 0.5f);
  164. white = white_volt / volt_scaler;
  165. }
  166. // Temperature band 223 - 250
  167. else if (temperature >= 223)
  168. {
  169. volt_scaler = 3.25f;
  170. float green_volt = 2.94f - brightness * (2.94f - 0.88f);
  171. green = green_volt / volt_scaler;
  172. float blue_volt = 3.02f - brightness * (3.02f - 1.59f);
  173. blue = blue_volt / volt_scaler;
  174. float white_correction = 1.024f;
  175. float white_volt = 0.42f + brightness * (2.51f * white_correction - 0.42f);
  176. float volt_scaler_white = 3.36f;
  177. white = white_volt / volt_scaler_white;
  178. }
  179. // Temperature band 153 - 222
  180. else if (temperature >= HOME_ASSISTANT_MIRED_MIN)
  181. {
  182. float start = 153;
  183. float end = 222;
  184. float band = end - start;
  185. volt_scaler = 3.23f;
  186. float green_volt = 2.86f - brightness * 2.86f;
  187. green = green_volt / volt_scaler;
  188. float blue_1 = 2.92f + (temperature - start) * (2.97f - 2.92f) / band;
  189. float blue_100 = 0.62f + (temperature - start) * (1.17f - 0.62f) / band;
  190. float blue_volt = blue_1 - brightness * (blue_1 - blue_100);
  191. blue = blue_volt / volt_scaler;
  192. float white_1 = 0.28f + (temperature - start) * (0.37f - 0.28f) / band;
  193. float white_100 = 1.1f + (temperature - start) * (2.0f - 1.1f) / band;
  194. float white_volt = white_1 + brightness * (white_100 - white_1);
  195. float volt_scaler_white = 3.27f;
  196. white = white_volt / volt_scaler_white;
  197. }
  198. ESP_LOGD("temperature_mode", "LED state : RGBW %f, %f, %f, %f", red, green, blue, white);
  199. red_->set_level(red);
  200. green_->set_level(green);
  201. blue_->set_level(blue);
  202. white_->set_level(white);
  203. master2_->turn_on();
  204. master1_->turn_on();
  205. }
  206. };
  207. } // namespace rgbww
  208. } // namespace esphome