diff --git a/HomeAssistant_Driver/example.light.config b/HomeAssistant_Driver/example.light.config new file mode 100644 index 0000000000..1615088e22 --- /dev/null +++ b/HomeAssistant_Driver/example.light.config @@ -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" +} \ No newline at end of file diff --git a/HomeAssistant_Driver/example.light.json b/HomeAssistant_Driver/example.light.json new file mode 100644 index 0000000000..23ef115b8c --- /dev/null +++ b/HomeAssistant_Driver/example.light.json @@ -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" + } +] \ No newline at end of file