Skip to content

Commit

Permalink
fix commander 1 mapping (no real wrgb devices known)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMicDiet committed Sep 18, 2024
1 parent eab97f9 commit 196ed8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ class Commander1(BaseDevice):

_model_name = "Commander 1"
_model_codes = ["DYCOM"]
_colors: dict[str, int] = {"red": 0, "green": 1, "blue": 2, "white": 3}
_colors: dict[str, int] = {"white": 0, "red": 0, "green": 1, "blue": 2}
2 changes: 1 addition & 1 deletion custom_components/chihiros/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@
"requirements": [
"typer[all]==0.9.0"
],
"version": "0.6.3"
"version": "0.6.4"
}

0 comments on commit 196ed8c

Please sign in to comment.