4 Commits

2 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@@ -13,4 +13,5 @@
**/kitchen_ac/
/examples/*/*.h
**/__pycache__
**/private/
**/private/
**/tests

View File

@@ -33,7 +33,7 @@ from esphome.components.climate import (
ClimateSwingMode,
)
AUX_AC_FIRMWARE_VERSION = '0.2.16'
AUX_AC_FIRMWARE_VERSION = '0.2.17'
AC_PACKET_TIMEOUT_MIN = 150
AC_PACKET_TIMEOUT_MAX = 600
AC_POWER_LIMIT_MIN = 30
@@ -190,7 +190,7 @@ def output_info(config):
CONFIG_SCHEMA = cv.All(
climate.CLIMATE_SCHEMA.extend(
climate.climate_schema(climate.Climate).extend(
{
cv.GenerateID(): cv.declare_id(AirCon),
cv.Optional(CONF_PERIOD, default="7s"): cv.time_period,