Commit 0ad6742a authored by Vassilis Panos's avatar Vassilis Panos
Browse files

Support for multiple commands in climate and fan

parent 748c86ff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ from homeassistant.helpers.typing import ConfigType
_LOGGER = logging.getLogger(__name__)

DOMAIN = 'smartir'
VERSION = '1.3.3'
VERSION = '1.3.4'
VERSION_URL = (
    "https://raw.githubusercontent.com/"
    "smartHomeHub/SmartIR/{}/version.json")
+2 −2
Original line number Diff line number Diff line
@@ -362,7 +362,7 @@ class SmartIRClimate(ClimateDevice, RestoreEntity):
                    return

                service_data = {
                    'packet': [command]
                    'packet': command
                }

            else:
+2 −2
Original line number Diff line number Diff line
@@ -269,7 +269,7 @@ class SmartIRFan(FanEntity, RestoreEntity):
                    return

                service_data = {
                    'packet': [command]
                    'packet': command
                }

            else:
+1 −1

File changed.

Contains only whitespace changes.