Skip to content

Commit

Permalink
Added example config files
Browse files Browse the repository at this point in the history
  • Loading branch information
riley206 committed Sep 12, 2023
1 parent c102709 commit d0c71df
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions HomeAssistant_Driver/example.light.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"driver_config": {
"ip_address": "Your Home Assistant IP",
"access_token": "Your Home Assitant Access Token",
"port": "8123"
},
"driver_type": "home_assistant",
"registry_config":"config://example.light.json",
"interval": 30,
"timezone": "UTC"
}
22 changes: 22 additions & 0 deletions HomeAssistant_Driver/example.light.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"Entity ID": "example.light",
"Volttron Point Name": "state",
"Units": "On / Off",
"Units Details": "on/off",
"Writable": true,
"Starting Value": true,
"Type": "boolean",
"Notes": "lights hallway"
},
{
"Entity ID": "example.light",
"Volttron Point Name": "brightness",
"Units": "int",
"Units Details": "0-255 light level",
"Writable": true,
"Starting Value": 0,
"Type": "int",
"Notes": "brightness control"
}
]

0 comments on commit d0c71df

Please sign in to comment.