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.

26 lines
1.0 KiB

  1. // -----------------------------------------------------------------------------
  2. // Light
  3. // -----------------------------------------------------------------------------
  4. #pragma once
  5. namespace Light {
  6. constexpr const unsigned char VALUE_MIN = LIGHT_MIN_VALUE;
  7. constexpr const unsigned char VALUE_MAX = LIGHT_MAX_VALUE;
  8. constexpr const unsigned int BRIGHTNESS_MIN = LIGHT_MIN_BRIGHTNESS;
  9. constexpr const unsigned int BRIGHTNESS_MAX = LIGHT_MAX_BRIGHTNESS;
  10. // Default to the Philips Hue value that HA also use.
  11. // https://developers.meethue.com/documentation/core-concepts
  12. constexpr const unsigned int MIREDS_MIN = LIGHT_MIN_MIREDS;
  13. constexpr const unsigned int MIREDS_MAX = LIGHT_MAX_MIREDS;
  14. constexpr const unsigned int KELVIN_MIN = LIGHT_MIN_KELVIN;
  15. constexpr const unsigned int KELVIN_MAX = LIGHT_MAX_KELVIN;
  16. constexpr const unsigned int PWM_MIN = LIGHT_MIN_PWM;
  17. constexpr const unsigned int PWM_MAX = LIGHT_MAX_PWM;
  18. constexpr const unsigned int PWM_LIMIT = LIGHT_LIMIT_PWM;
  19. }