1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-24 10:49:45 +01:00
Files
core/tests/components/watts/fixtures/discover_devices.json
theobld-ww 0c1af1d613 Add switch entities to Watts Vision + (#162699)
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2026-02-11 17:39:17 +01:00

49 lines
1.2 KiB
JSON

[
{
"deviceId": "thermostat_123",
"deviceName": "Living Room Thermostat",
"deviceType": "thermostat",
"interface": "homeassistant.components.THERMOSTAT",
"roomName": "Living Room",
"isOnline": true,
"currentTemperature": 20.5,
"setpoint": 22.0,
"thermostatMode": "Comfort",
"minAllowedTemperature": 5.0,
"maxAllowedTemperature": 30.0,
"temperatureUnit": "C",
"availableThermostatModes": [
"Program",
"Eco",
"Comfort",
"Off",
"Defrost",
"Timer"
]
},
{
"deviceId": "thermostat_456",
"deviceName": "Bedroom Thermostat",
"deviceType": "thermostat",
"interface": "homeassistant.components.THERMOSTAT",
"roomName": "Bedroom",
"isOnline": true,
"currentTemperature": 19.0,
"setpoint": 21.0,
"thermostatMode": "Program",
"minAllowedTemperature": 5.0,
"maxAllowedTemperature": 30.0,
"temperatureUnit": "C",
"availableThermostatModes": ["Program", "Eco", "Comfort", "Off"]
},
{
"deviceId": "switch_789",
"deviceName": "Living Room Switch",
"deviceType": "switch",
"interface": "homeassistant.components.SWITCH",
"roomName": "Living Room",
"isOnline": true,
"isTurnedOn": false
}
]