diff --git a/packages/ios.yaml b/packages/ios.yaml new file mode 100644 index 0000000..515be01 --- /dev/null +++ b/packages/ios.yaml @@ -0,0 +1,28 @@ +ios: + push: + categories: + - name: YesNo + identifier: yesno + actions: + - identifier: 'YES' + title: 'Ja' + - identifier: 'NO' + title: 'Nej' + - name: YesLater + identifier: yeslater + actions: + - identifier: 'YES' + title: 'OK' + - identifier: 'LATER' + title: 'Vänta' + - name: YesLaterNo + identifier: yeslaterno + actions: + - identifier: 'YES' + title: 'Ja' + - identifier: 'LATER' + title: 'Vänta' + - identifier: 'NO' + title: 'Nej' +notify: + - platform: ios diff --git a/packages/reminders.yaml b/packages/reminders.yaml new file mode 100644 index 0000000..131cb82 --- /dev/null +++ b/packages/reminders.yaml @@ -0,0 +1,30 @@ +homeassistant: + customize: + package.node_anchors: + common: &common + package: 'reminders' + +automation: + - alias: REM - Kaffet är klart + trigger: + platform: state + entity_id: switch.kaffebryggare + to: 'on' + for: + minutes: 5 + action: + - service: notify.ios_thomas_iphone + data: + title: "Fikadax!" + message: "Kaffet är färdigt!" + - alias: REM - Stäng av kaffebryggaren + trigger: + platform: state + entity_id: switch.kaffebryggare + to: 'on' + for: + minutes: 15 + action: + - service: switch.turn_off + data: + entity_id: switch.kaffebryggare