1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-24 20:07:23 +00:00
Files
core/tests/components/watts/fixtures/discover_devices.json
theobld-ww c2440c4ebd Add Watts Vision + integration with tests (#153022)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2025-12-18 17:41:23 +01:00

40 lines
1019 B
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"]
}
]