MiLightButtons.h 212 B

1234567891011121314151617
  1. #ifndef _MILIGHT_BUTTONS
  2. #define _MILIGHT_BUTTONS
  3. enum MiLightRadioType {
  4. UNKNOWN = 0,
  5. RGBW = 0xB0,
  6. CCT = 0x5A,
  7. RGB_CCT = 0x20,
  8. RGB = 0xA4
  9. };
  10. enum MiLightStatus {
  11. ON = 0,
  12. OFF = 1
  13. };
  14. #endif