IFTTT into Home Assistant

Hi,
To get Home Assistant working with IFTTT do I go to WebHooks and just enable IFTTT to get it working?
Thanks

what are you trying to do? Are you trying to send stuff to IFTTT or receive stuff fro IFTTT?
Have you read the doc?

1 Like

Thanks , I want to Turn on my bedside lamp ( Sonoff device ) when my Wyze Cam detects sound or movement. I got Wyze installed in IFTTT but not sure how to install it into Home Assistant.

what you need then is this part of the doc
here is an example of my automations running when IFTTT receives data from my Kello:

- alias: Play Weather Greeting IFTTT
  initial_state: true
  trigger:
    platform: event
    event_type: ifttt_webhook_received
    event_data:
      action: play_greeting
  condition:
    - condition: template
      value_template: '{{ (as_timestamp(now()) - as_timestamp(state_attr("automation.play_weather_greeting_ifttt", "last_triggered") | default(0)) | int > 30)}}'
  action:
  - service: mqtt.publish
    data:
      topic: "Kello/PlayStatus"
      payload_template: 'ON'
      retain: False
1 Like

You star thanks, appreciate it

1 Like