Skip to content

Commit

Permalink
0.9.6.22 - Added X10 Home Assistant Service (Action) hassfest fix
Browse files Browse the repository at this point in the history
0.9.6.22 - Added X10 Home Assistant Service (Action)
Although the X10 devices are Switches in Home Assistant, and provide a simple On/Off control in the Frontend, it is now possible to create a service (action) call to change the X10 device state as Off, On, Dimmer, Brighten. These last two have no feedback on how dim/bright the device is and so it cannot be made a Light Entity in Home Assistant.
  • Loading branch information
davesmeghead committed Aug 10, 2024
1 parent 9d1cf68 commit a910097
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion custom_components/visonic/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
# "trigger",
#]

CLIENT_VERSION = "0.9.6.21"
CLIENT_VERSION = "0.9.6.22"

MAX_CLIENT_LOG_ENTRIES = 300

Expand Down
8 changes: 4 additions & 4 deletions custom_components/visonic/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,10 @@
},
"x10command": {
"options": {
"Off": "Off",
"On": "On",
"Dimmer": "Decrease Brightness",
"Brighten": "Increase Brightness"
"off": "Off",
"on": "On",
"dimmer": "Decrease Brightness",
"brighten": "Increase Brightness"
}
},
"siren_sounding": {
Expand Down

0 comments on commit a910097

Please sign in to comment.