Skip to content

Commit

Permalink
products: add registry entries for Neon and String
Browse files Browse the repository at this point in the history
Signed-off-by: Avi Miller <[email protected]>
  • Loading branch information
Djelibeybi committed Nov 25, 2023
1 parent f6aab43 commit 86ce716
Showing 1 changed file with 44 additions and 0 deletions.
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.LCM43
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)

0 comments on commit 86ce716

Please sign in to comment.