How to setup Netatmo integration using webhooks to speed up device status update response times

How can I check if the webhook is working properly? Everything seems fine, but my presence camera lamp is always unavailable.

You can activate the log in the netatmo integration, restart ha and look on log.

Thanks, I activated the debug in the integration, restarted, but in the log I donā€™t see anything. How do I access the specific log with Netatmo debug?

There seems to be some inconsistency hereā€¦
In your bullet #5 you say to select the Netatmo integration.
Then, in bullet #7 you say to add the Netatmo Integration!

How can I select the Netatmo integration in bullet #5 when i donā€™t add it before I come to bullet #7 ??

Because in step 5 in the menu you have all the intƩgration even if you don t install it.

1 Like

after months it seems that I managed to make the camera light reappear. Does anyone know how to create a motion sensor when the camera detects movement? It will certainly be possible via API, but I really donā€™t know how to do it. I have already created an app on Netatmo dev, for the webhook, I donā€™t know if I will have to create another one or if I can do everything with that one. I hope this post of mine is not OT

You have to use the netatmo.event as trigger

Where? Do you have any more information to give me? Thanks

alias: Telecamera Vialetto Movimento Rilevato
description: Rileva il movimento e lo spegne dopo 60 secondi
triggers:
  - event_type: netatmo_event
    event_data:
      type: human
    trigger: event
  - event_type: netatmo_event
    event_data:
      type: vehicle
    trigger: event
  - event_type: netatmo_event
    event_data:
      type: animal
    trigger: event
actions:
  - action: input_boolean.turn_on
    data: {}
    target:
      entity_id: input_boolean.telecamera_vialetto_movimento_rilevato
  - delay: "00:00:60"
  - action: input_boolean.turn_off
    target:
      entity_id: input_boolean.telecamera_vialetto_movimento_rilevato
    data: {}

it works, but the events arrive 3 or 4 minutes late. Am I doing something wrong or is it a limitation of the netatmo ap? Itā€™s useless like this

No. At home the delay is 2 or 3 seconds. Donā€™t know how it works but 3-4 minutes is very big. A issue with your connection ?

1 Like

a mistake of mine, from developer tools, listen events, strangely I had these delays for the first 2 or 3 tests, then I made the automations and template sensors to have different icons for movement or non-movement of people, cars, and animals, and now they are quite simultaneous yes. Sorry