This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
unifi: | |
container_name: unifi | |
restart: unless-stopped | |
image: linuxserver/unifi | |
volumes: | |
- /srv/docker/unifi:/config | |
environment: | |
- PGID=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type: entities | |
title: Reminders | |
entities: | |
- entity: input_text.reminder_description | |
name: Message | |
- entity: input_select.reminder_recipient | |
- entity: input_datetime.reminder_tracker | |
name: Reminder date and time | |
- type: custom:config-template-card | |
entities: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Requires MQTT to be configured prior to use | |
## UI requires custom cards: auto-entities, config-template-card, template-entity-row | |
automation: | |
- alias: Reminder - Send next reminder | |
id: 'Send next reminder' | |
description: "" | |
trigger: | |
- platform: time | |
at: sensor.next_reminder | |
condition: [] |
OlderNewer