jheling / freeathome

Free@Home component for Home Assistant
103 stars 37 forks source link

scene/turn_off. Service not found #106

Closed bonepl closed 2 years ago

bonepl commented 2 years ago

I have several scenes created in free@home, but activating scene entities fetched by integration ends up with message "Couldn't trigger service scene/turn_off. Service not found".

I updated free@home sysap firmware recently and moved to new mobile app Free@Home Next. Could this break this part of integration?

jheling commented 2 years ago

Hello, that could be a cause of your problems. I have not yet tried the new app. Can you still use both apps? On what firmware version are you now?

Tho85 commented 2 years ago

How exactly do you trigger the scenes? It looks like you try to call a service scene/turn_off. If I read the docs correctly, this service does not exist in Home Assistant (you can't turn off a scene, only turn on). Have you tried using the servicescene.turn_on?

bonepl commented 2 years ago

I just updated today to firmware version 2.6.4 from SAP-S-2 | ABB, problem still persist.

I enabled integration and added scene as a button:

type: button
tap_action:
  action: toggle
entity: scene.turn_off_all
name: Turn off all

Not sure how to change the usage of the service to scene.turn_on.

Scene works fine on both android apps as well as web interface.

Tho85 commented 2 years ago

I use it like this:

type: button
tap_action:
  action: call-service
  service: scene.turn_on
  service_data:
    entity_id: scene.my_scene
entity: scene.my_scene
bonepl commented 2 years ago

That worked, thank you! Issue can be closed.