Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lifx] Add support for new LIFX products #18191

Merged
merged 1 commit into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bundles/org.openhab.binding.lifx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ The following table lists the thing types of the supported LIFX devices:
| LIFX A21 1600lm | colorlight |
| LIFX BR30 | colorlight |
| LIFX Candle | colorlight |
| LIFX Ceiling | colorlight |
| LIFX Ceiling 13x26" | colorlight |
| LIFX Ceiling 15" | colorlight |
| LIFX Downlight | colorlight |
| LIFX GU10 | colorlight |
| LIFX Mini Color | colorlight |
Expand All @@ -36,6 +37,7 @@ The following table lists the thing types of the supported LIFX devices:
| LIFX Beam | colormzlight |
| LIFX Neon | colormzlight |
| LIFX Outdoor Neon | colormzlight |
| LIFX Outdoor Permanent | colormzlight |
| LIFX String | colormzlight |
| LIFX Z | colormzlight |
| | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,18 +160,22 @@ public enum LifxProduct {
PRODUCT_173(173, "LIFX Round Path", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_174(174, "LIFX Square Path", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_175(175, "LIFX PAR38", new Features(TR_1500_9000, COLOR)),
PRODUCT_176(176, "LIFX Ceiling", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_177(177, "LIFX Ceiling", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_176(176, "LIFX Ceiling 15\"", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_177(177, "LIFX Ceiling 15\"", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_181(181, "LIFX Color", new Features(TR_1500_9000, COLOR)),
PRODUCT_182(182, "LIFX Color", new Features(TR_1500_9000, COLOR)),
PRODUCT_185(185, "LIFX Candle", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_186(186, "LIFX Candle", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_187(187, "LIFX Candle", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_188(188, "LIFX Candle", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_201(201, "LIFX Ceiling 13x26\"", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_202(202, "LIFX Ceiling 13x26\"", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_203(203, "LIFX String", new Features(TR_1500_9000, COLOR, EXTENDED_MULTIZONE, MULTIZONE)),
PRODUCT_204(204, "LIFX String", new Features(TR_1500_9000, COLOR, EXTENDED_MULTIZONE, MULTIZONE)),
PRODUCT_205(205, "LIFX Neon", new Features(TR_1500_9000, COLOR, EXTENDED_MULTIZONE, MULTIZONE)),
PRODUCT_206(206, "LIFX Neon", new Features(TR_1500_9000, COLOR, EXTENDED_MULTIZONE, MULTIZONE)),
PRODUCT_213(213, "LIFX Outdoor Permanent", new Features(TR_1500_9000, COLOR, EXTENDED_MULTIZONE, MULTIZONE)),
PRODUCT_214(214, "LIFX Outdoor Permanent", new Features(TR_1500_9000, COLOR, EXTENDED_MULTIZONE, MULTIZONE)),
PRODUCT_215(215, "LIFX B10 Candle", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_216(216, "LIFX B10 Candle", new Features(TR_1500_9000, COLOR, MATRIX)),
PRODUCT_217(217, "LIFX T10 Candle", new Features(TR_1500_9000, COLOR, MATRIX)),
Expand Down