removed time date sensors that I was using for floorplan. closes #404
This commit is contained in:
parent
09b6d3931b
commit
0f8431bb58
|
@ -46,3 +46,40 @@ binary_sensor:
|
||||||
name: Bedroom Plugged
|
name: Bedroom Plugged
|
||||||
retain: true
|
retain: true
|
||||||
|
|
||||||
|
#---Sensor for Time and Date.-----------------------------
|
||||||
|
sensor:
|
||||||
|
- platform: template
|
||||||
|
scan_interval: 30000
|
||||||
|
sensors:
|
||||||
|
floorplan_date:
|
||||||
|
friendly_name: 'Date'
|
||||||
|
value_template: >-
|
||||||
|
{{now().strftime("%A")}}, {{now().strftime("%B")}} {{now().strftime("%d")}}
|
||||||
|
|
||||||
|
- platform: template
|
||||||
|
scan_interval: 60
|
||||||
|
sensors:
|
||||||
|
floorplan_time:
|
||||||
|
friendly_name: 'Time'
|
||||||
|
value_template: >-
|
||||||
|
{{now().strftime("%-I")}}:{{now().strftime("%M")}} {{now().strftime("%p")}}
|
||||||
|
clock_time:
|
||||||
|
friendly_name: 'Clock Time'
|
||||||
|
value_template: >-
|
||||||
|
{{now().strftime("%-I")}}:{{now().strftime("%M")}}
|
||||||
|
|
||||||
|
- platform: template
|
||||||
|
scan_interval: 30000
|
||||||
|
sensors:
|
||||||
|
clock_am_pm:
|
||||||
|
friendly_name: 'AM/PM'
|
||||||
|
value_template: >-
|
||||||
|
{{now().strftime("%p")}}
|
||||||
|
clock_day:
|
||||||
|
friendly_name: 'Day'
|
||||||
|
value_template: >-
|
||||||
|
{{now().strftime("%A")}}
|
||||||
|
clock_date:
|
||||||
|
friendly_name: 'Clock Date'
|
||||||
|
value_template: >-
|
||||||
|
{{now().strftime("%B")}} {{now().strftime("%d")}} {{now().year}}
|
||||||
|
|
|
@ -22,80 +22,3 @@ notify:
|
||||||
|
|
||||||
mobile_app:
|
mobile_app:
|
||||||
|
|
||||||
## - Reminders to take my medicine
|
|
||||||
input_boolean:
|
|
||||||
medicine:
|
|
||||||
name: Medicine Reminder
|
|
||||||
initial: off
|
|
||||||
icon: mdi:tablet
|
|
||||||
|
|
||||||
automation:
|
|
||||||
- alias: Medicine Reminder
|
|
||||||
id: 78c47087-8242-470c-97d1-3dc5747ed576
|
|
||||||
initial_state: true
|
|
||||||
trigger:
|
|
||||||
- platform: time_pattern
|
|
||||||
minutes: '/45'
|
|
||||||
- platform: time
|
|
||||||
at: '21:30:00'
|
|
||||||
- platform: state
|
|
||||||
entity_id: person.carlo
|
|
||||||
to: 'home'
|
|
||||||
|
|
||||||
condition:
|
|
||||||
- condition: time
|
|
||||||
after: '21:30:00'
|
|
||||||
- condition: state
|
|
||||||
entity_id: person.carlo
|
|
||||||
state: 'home'
|
|
||||||
- condition: state
|
|
||||||
entity_id: input_boolean.medicine
|
|
||||||
state: 'off'
|
|
||||||
|
|
||||||
action:
|
|
||||||
- service: script.notify_engine_two_button
|
|
||||||
data:
|
|
||||||
title: 'Medicine Alert!'
|
|
||||||
value1: 'Please take your Medicine!'
|
|
||||||
title1: 'Took Medicine'
|
|
||||||
action1: 'TABLET_TAKEN'
|
|
||||||
icon1: 'sfsymbols:arrow.up.circle'
|
|
||||||
who: "carlo"
|
|
||||||
group: 'Medicine'
|
|
||||||
|
|
||||||
- alias: Tablet Already taken
|
|
||||||
id: 1f295bb8-8925-4b22-8f75-9fe079b295a8
|
|
||||||
trigger:
|
|
||||||
platform: event
|
|
||||||
event_type: mobile_app_notification_action
|
|
||||||
event_data:
|
|
||||||
action: TABLET_TAKEN
|
|
||||||
action:
|
|
||||||
- service: input_boolean.turn_on
|
|
||||||
entity_id: input_boolean.medicine
|
|
||||||
|
|
||||||
# - alias: Remind Me Later
|
|
||||||
# id: 79b49c85-f832-47d7-b02d-bff099ef6fbc
|
|
||||||
# trigger:
|
|
||||||
# platform: event
|
|
||||||
# event_type: mobile_app_notification_action
|
|
||||||
# event_data:
|
|
||||||
# action: NOT_HOME
|
|
||||||
# action:
|
|
||||||
# - service: script.notify_engine_two_button
|
|
||||||
# data:
|
|
||||||
# title: 'Medicine Reminder'
|
|
||||||
# value1: 'Ok. I will remind you when you get home.'
|
|
||||||
# who: 'carlo'
|
|
||||||
# group: 'Medicine'
|
|
||||||
# - wait_template: >-
|
|
||||||
# {{ states.person.carlo.state == 'home' }}
|
|
||||||
# - service: script.notify_engine_two_button
|
|
||||||
# data:
|
|
||||||
# title: 'Medicine Reminder'
|
|
||||||
# value1: 'Now that your home, please take your medicine!'
|
|
||||||
# who: 'carlo'
|
|
||||||
# group: 'Medicine'
|
|
||||||
|
|
||||||
|
|
||||||
## Reminders to take my Medicine! - End.
|
|
||||||
|
|
|
@ -0,0 +1,85 @@
|
||||||
|
######################################################################
|
||||||
|
#-------------------------------------------
|
||||||
|
# @CCOSTAN
|
||||||
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
||||||
|
# ## - Reminders to take my medicine
|
||||||
|
#-------------------------------------------
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
|
||||||
|
input_boolean:
|
||||||
|
medicine:
|
||||||
|
name: Medicine Reminder
|
||||||
|
initial: off
|
||||||
|
icon: mdi:tablet
|
||||||
|
|
||||||
|
automation:
|
||||||
|
- alias: Medicine Reminder
|
||||||
|
id: 78c47087-8242-470c-97d1-3dc5747ed576
|
||||||
|
initial_state: true
|
||||||
|
trigger:
|
||||||
|
- platform: time_pattern
|
||||||
|
minutes: '/45'
|
||||||
|
- platform: time
|
||||||
|
at: '21:30:00'
|
||||||
|
- platform: state
|
||||||
|
entity_id: person.carlo
|
||||||
|
to: 'home'
|
||||||
|
|
||||||
|
condition:
|
||||||
|
- condition: time
|
||||||
|
after: '21:30:00'
|
||||||
|
- condition: state
|
||||||
|
entity_id: person.carlo
|
||||||
|
state: 'home'
|
||||||
|
- condition: state
|
||||||
|
entity_id: input_boolean.medicine
|
||||||
|
state: 'off'
|
||||||
|
|
||||||
|
action:
|
||||||
|
- service: script.notify_engine_two_button
|
||||||
|
data:
|
||||||
|
title: 'Medicine Alert!'
|
||||||
|
value1: 'Please take your Medicine!'
|
||||||
|
title1: 'Took Medicine'
|
||||||
|
action1: 'TABLET_TAKEN'
|
||||||
|
icon1: 'sfsymbols:arrow.up.circle'
|
||||||
|
who: "carlo"
|
||||||
|
group: 'Medicine'
|
||||||
|
|
||||||
|
- alias: Tablet Already taken
|
||||||
|
id: 1f295bb8-8925-4b22-8f75-9fe079b295a8
|
||||||
|
trigger:
|
||||||
|
platform: event
|
||||||
|
event_type: mobile_app_notification_action
|
||||||
|
event_data:
|
||||||
|
action: TABLET_TAKEN
|
||||||
|
action:
|
||||||
|
- service: input_boolean.turn_on
|
||||||
|
entity_id: input_boolean.medicine
|
||||||
|
|
||||||
|
# - alias: Remind Me Later
|
||||||
|
# id: 79b49c85-f832-47d7-b02d-bff099ef6fbc
|
||||||
|
# trigger:
|
||||||
|
# platform: event
|
||||||
|
# event_type: mobile_app_notification_action
|
||||||
|
# event_data:
|
||||||
|
# action: NOT_HOME
|
||||||
|
# action:
|
||||||
|
# - service: script.notify_engine_two_button
|
||||||
|
# data:
|
||||||
|
# title: 'Medicine Reminder'
|
||||||
|
# value1: 'Ok. I will remind you when you get home.'
|
||||||
|
# who: 'carlo'
|
||||||
|
# group: 'Medicine'
|
||||||
|
# - wait_template: >-
|
||||||
|
# {{ states.person.carlo.state == 'home' }}
|
||||||
|
# - service: script.notify_engine_two_button
|
||||||
|
# data:
|
||||||
|
# title: 'Medicine Reminder'
|
||||||
|
# value1: 'Now that your home, please take your medicine!'
|
||||||
|
# who: 'carlo'
|
||||||
|
# group: 'Medicine'
|
||||||
|
|
||||||
|
|
||||||
|
## Reminders to take my Medicine! - End.
|
|
@ -1,46 +0,0 @@
|
||||||
#-------------------------------------------
|
|
||||||
# @CCOSTAN
|
|
||||||
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
||||||
# More Info : https://www.vcloudinfo.com/
|
|
||||||
#-------------------------------------------
|
|
||||||
#-------------------------------------------
|
|
||||||
# Clean data for the Floorplan UI.
|
|
||||||
#-------------------------------------------
|
|
||||||
|
|
||||||
#---Sensor for Time and Date.-----------------------------
|
|
||||||
sensor:
|
|
||||||
- platform: template
|
|
||||||
scan_interval: 30000
|
|
||||||
sensors:
|
|
||||||
floorplan_date:
|
|
||||||
friendly_name: 'Date'
|
|
||||||
value_template: >-
|
|
||||||
{{now().strftime("%A")}}, {{now().strftime("%B")}} {{now().strftime("%d")}}
|
|
||||||
|
|
||||||
- platform: template
|
|
||||||
scan_interval: 60
|
|
||||||
sensors:
|
|
||||||
floorplan_time:
|
|
||||||
friendly_name: 'Time'
|
|
||||||
value_template: >-
|
|
||||||
{{now().strftime("%-I")}}:{{now().strftime("%M")}} {{now().strftime("%p")}}
|
|
||||||
clock_time:
|
|
||||||
friendly_name: 'Clock Time'
|
|
||||||
value_template: >-
|
|
||||||
{{now().strftime("%-I")}}:{{now().strftime("%M")}}
|
|
||||||
|
|
||||||
- platform: template
|
|
||||||
scan_interval: 30000
|
|
||||||
sensors:
|
|
||||||
clock_am_pm:
|
|
||||||
friendly_name: 'AM/PM'
|
|
||||||
value_template: >-
|
|
||||||
{{now().strftime("%p")}}
|
|
||||||
clock_day:
|
|
||||||
friendly_name: 'Day'
|
|
||||||
value_template: >-
|
|
||||||
{{now().strftime("%A")}}
|
|
||||||
clock_date:
|
|
||||||
friendly_name: 'Clock Date'
|
|
||||||
value_template: >-
|
|
||||||
{{now().strftime("%B")}} {{now().strftime("%d")}} {{now().year}}
|
|
Loading…
Reference in New Issue