Manything config

hello fiends struggling here with IFTT and manything. I have successfully called the manyhing applets I set up using
https://maker.ifttt.com/trigger/manything_off/with/key/XXXXXXX

but I can’t get HA to fire off anything in other automation or in dev tools> services
config is

  - alias: 'ManyThing Recording ON'

This calls an IFTTT recipe to turn on recording of the ManyThing Camera (iPhone) when we leave the house during the day.

trigger:
  platform: state
  entity_id: group.family
  state: 'not_home'
condition:
  condition: sun
  after: sunrise
action:
  service: ifttt.trigger
  data: {"event":"manything_on"}
  • alias: ‘ManyThing Recording ON - NightTime’

This calls an IFTTT recipe to turn on recording of the ManyThing Camera (iPhone) for the night.

trigger:
  platform: state
  entity_id: group.family
  state: 'home'
condition:
  condition: sun
  after: sunset
action:
  service: ifttt.trigger
  data: {"event":"manything_on"}
  • alias: ‘ManyThing Recording OFF’

This calls an IFTTT recipe to turn off recording of the ManyThing Camera (iPhone) when we are home unless it’s nighttime.

trigger:
  platform: state
  entity_id: group.family
  state: 'home'
condition:
  condition: sun
  after: sunset
action:
  service: ifttt.trigger
  data: {"event":"manything_off"}
1 Like