Files
wiz-controller/data.go
Michael Lehmann 5399bc9a8a wip
2025-02-18 22:55:03 +01:00

18 lines
392 B
Go

package main
// BulbStatus fasst den Status zusammen, der im Template dargestellt wird.
type BulbStatus struct {
IP string
Port string
Name string
IsOn bool
Message string // Optional: Zusätzliche Infos, z. B. Fehleranzeige
}
// GroupStatus repräsentiert eine Gruppe von Bulbs für die Anzeige.
type GroupStatus struct {
Name string
Bulbs []BulbStatus
AllOn bool
}