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

products: add registry entries for Neon and String #123

Merged
merged 1 commit into from
Nov 25, 2023
Merged
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
44 changes: 44 additions & 0 deletions modules/photons_products/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -986,5 +986,49 @@ class cap(lifx.Capability):

min_kelvin, max_kelvin = (1500, 9000)

class LCM3_NEON_US(lifx.Product):
pid = 141
family = Family.LCM3
friendly = "LIFX Neon US"

class cap(lifx.Capability):
zones = Zones.LINEAR
has_color = True

min_kelvin, max_kelvin = (1500, 9000)

class LCM3_NEON_INTL(lifx.Product):
pid = 142
family = Family.LCM3
friendly = "LIFX Neon Intl"

class cap(lifx.Capability):
zones = Zones.LINEAR
has_color = True

min_kelvin, max_kelvin = (1500, 9000)

class LCM3_STRING_US(lifx.Product):
pid = 143
family = Family.LCM3
friendly = "LIFX String US"

class cap(lifx.Capability):
zones = Zones.LINEAR
has_color = True

min_kelvin, max_kelvin = (1500, 9000)

class LCM3_STRING_INTL(lifx.Product):
pid = 144
family = Family.LCM3
friendly = "LIFX String Intl"

class cap(lifx.Capability):
zones = Zones.LINEAR
has_color = True

min_kelvin, max_kelvin = (1500, 9000)


Products = ProductsHolder(ProductRegistry, lifx.Capability)