Skip to content

Commit

Permalink
Update const.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MapoDan authored Jan 28, 2021
1 parent b1529ba commit 8b714d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions custom_components/programmable_thermostat/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
HVAC_MODE_HEAT_COOL)

#Generic
VERSION = '7.6'
VERSION = '8.0'
DOMAIN = 'programmable_thermostat'
PLATFORM = 'climate'
ISSUE_URL = 'https://github.com/custom-components/climate.programmable_thermostat/issues'
CONFIGFLOW_VERSION = 3
CONFIGFLOW_VERSION = 4


#Defaults
Expand All @@ -26,4 +26,5 @@
MAX_HVAC_OPTIONS = 8
AUTO_MODE_OPTIONS = ['all', 'heating', 'cooling']
INITIAL_HVAC_MODE_OPTIONS = ['', HVAC_MODE_COOL, HVAC_MODE_HEAT, HVAC_MODE_OFF, HVAC_MODE_HEAT_COOL]
INITIAL_HVAC_MODE_OPTIONS_OPTFLOW = ['null', HVAC_MODE_COOL, HVAC_MODE_HEAT, HVAC_MODE_OFF, HVAC_MODE_HEAT_COOL]
REGEX_STRING = r'((?P<hours>\d+?):(?=(\d+?:\d+?)))?((?P<minutes>\d+?):)?((?P<seconds>\d+?))?$'

0 comments on commit 8b714d6

Please sign in to comment.