Hi!
After i updated to 0.61.1 i cant get my climate Sensibo to turn on or off. I have seen the breaking change and done the following changes:
automation:
- alias: 'skru AC på'
initial_state: 'on'
trigger:
platform: state
entity_id: input_boolean.turn_on_ac
to: 'on'
action:
- service: climate.turn_on
entity_id: climate.ac
- alias: 'skru AC av'
initial_state: 'on'
trigger:
platform: state
entity_id: input_boolean.turn_on_ac
to: 'off'
action:
- service: climate.turn_off
entity_id: climate.ac
input_boolean:
turn_on_ac:
name: 'AC ON'
initial: off
turn_off_ac:
name: 'AC OFF'
initial: off
And i get this error:
2018-01-17 19:22:54 ERROR (MainThread) [homeassistant.core] Error executing service <ServiceCall climate.turn_on: entity_id=['climate.ac']>
Traceback (most recent call last):
File "/usr/lib/python3.6/site-packages/homeassistant/core.py", line 1010, in _event_to_service_call
yield from service_handler.func(service_call)
File "/usr/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 441, in async_on_off_service
yield from climate.async_turn_on()
File "/usr/lib/python3.6/asyncio/futures.py", line 332, in __iter__
yield self # This tells Task to wait for completion.
File "/usr/lib/python3.6/asyncio/tasks.py", line 250, in _wakeup
future.result()
File "/usr/lib/python3.6/asyncio/futures.py", line 245, in result
raise self._exception
File "/usr/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/lib/python3.6/site-packages/homeassistant/components/climate/__init__.py", line 761, in turn_on
raise NotImplementedError()
NotImplementedError
hope someone can help me.
@andrey