Skip to content
Draft
Changes from 1 commit
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: 4 additions & 0 deletions util/homeassistant/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
"true": api.StatusC,
"active": api.StatusC,
"1": api.StatusC,
"starting": api.StatusC,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds like "B" to me?


// Status B - Connected/Ready
"b": api.StatusB,
Expand All @@ -135,6 +136,9 @@
"initialising": api.StatusB,
"preparing": api.StatusB,
"2": api.StatusB,
"no_power": api.StatusB,
"complete": api.StatusB,

Check failure on line 140 in util/homeassistant/connection.go

View workflow job for this annotation

GitHub Actions / Lint

File is not properly formatted (gci)
"stopped": api.StatusB,

// Status A - Disconnected
"a": api.StatusA,
Expand Down
Loading