Store more state

This commit is contained in:
Sven van Heugten 2026-01-17 15:33:02 +01:00
parent 78b57258c1
commit 437e5bf25d
2 changed files with 36 additions and 12 deletions

View file

@ -87,3 +87,8 @@ type internal Brightness = Brightness of int
type internal Color =
| ColorByCoordinates of float * float
| ColorByTemperature of int
type internal LightState =
{ State: State
Brightness: Brightness
Color: Color }