Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #349 from DewGew/DewGew-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
DewGew committed Nov 9, 2023
2 parents c8631dd + 0d48f0a commit 6c2b503
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

"""Constants for Google Assistant."""
VERSION = '1.23.11'
VERSION = '1.23.12'
PUBLIC_URL = 'https://[your public url]'
CONFIGFILE = 'config/config.yaml'
LOGFILE = 'dzga.log'
Expand Down
2 changes: 1 addition & 1 deletion smarthome.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def AogGetDomain(device):
return DOMAINS['scene']
elif device["Type"] in ['Temp', 'Temp + Humidity', 'Temp + Humidity + Baro']:
return DOMAINS['temperature']
elif 'Thermostat' == device['Type']:
elif device['Type'] in ['Thermostat', 'Setpoint']:
return DOMAINS['thermostat']
elif 'Color Switch' == device["Type"]:
if "Dimmer" == device["SwitchType"]:
Expand Down

0 comments on commit 6c2b503

Please sign in to comment.