Skip to content
Snippets Groups Projects
Verified Commit 020bce88 authored by Erick Hitter's avatar Erick Hitter
Browse files

Sync with upstream

b32581b
parent fa20abf6
No related branches found
No related tags found
No related merge requests found
script.restart_august_daemon:
friendly_name: Restart August daemon
icon: mdi:autorenew
script.force_lock_interior:
friendly_name: Lock Interior
icon: mdi:autorenew
script.force_unlock_interior:
friendly_name: Unlock Interior
icon: mdi:autorenew
script.force_disconnect_interior:
friendly_name: Disconnect Interior
icon: mdi:close-octagon
script.force_lock_keyed:
friendly_name: Lock Keyed
icon: mdi:autorenew
script.force_unlock_keyed:
friendly_name: Unlock Keyed
icon: mdi:autorenew
script.force_disconnect_keyed:
friendly_name: Disconnect Keyed
icon: mdi:close-octagon
......@@ -4,6 +4,9 @@ sensor.speedtest_download:
icon: mdi:download
sensor.speedtest_upload:
icon: mdi:upload
sensor.kitchen_fluorescent_consumption:
friendly_name: Kitchen Fluorescent
icon: mdi:lightbulb-outline
sensor.lava_lamp_consumption:
friendly_name: Lava Lamp
icon: mdi:radiator
......
switch.kitchen:
icon: mdi:lightbulb
switch.lava_lamp:
icon: mdi:led-on
switch.wireless_charger:
......
......@@ -82,8 +82,9 @@ living_room:
- scene.lr_relax
- scene.lr_read
dining_area:
name: Dining Area
name: Kitchen & Dining
entities:
- switch.kitchen
- light.ceiling_fan_1
- light.ceiling_fan_2
- scene.da_nightlight
......@@ -161,6 +162,7 @@ smoke_gas:
power_consumption:
name: Power Consumption
entities:
- sensor.kitchen_fluorescent_consumption
- sensor.lava_lamp_consumption
presence:
name: Presence
......@@ -214,6 +216,12 @@ scripts_misc:
name: Actions
entities:
- script.restart_august_daemon
- script.force_lock_interior
- script.force_unlock_interior
- script.force_disconnect_interior
- script.force_lock_keyed
- script.force_unlock_keyed
- script.force_disconnect_keyed
wunderground:
name: Wunderground
entities:
......
......@@ -101,3 +101,27 @@ dining_area_lights_timeout:
restart_august_daemon:
sequence:
- service: shell_command.restart_august_daemon
# Force lock keyed
force_lock_keyed:
sequence:
- service: shell_command.force_lock_keyed
# Force unlock keyed
force_unlock_keyed:
sequence:
- service: shell_command.force_unlock_keyed
# Force disconnect keyed
force_disconnect_keyed:
sequence:
- service: shell_command.force_disconnect_keyed
# Force lock interior
force_lock_interior:
sequence:
- service: shell_command.force_lock_interior
# Force unlock interior
force_unlock_interior:
sequence:
- service: shell_command.force_unlock_interior
# Force disconnect interior
force_disconnect_interior:
sequence:
- service: shell_command.force_disconnect_interior
platform: mqtt
state_topic: "smartthings/Kitchen/power"
name: "Kitchen Fluorescent Consumption"
unit_of_measurement: "W"
restart_august_daemon: /usr/bin/pm2 restart npm
force_lock_keyed: curl http://localhost:3176/api/lock/keyed
force_lock_interior: curl http://localhost:3176/api/lock/interior
force_unlock_keyed: curl http://localhost:3176/api/unlock/keyed
force_unlock_interior: curl http://localhost:3176/api/unlock/interior
force_disconnect_keyed: curl http://localhost:3176/api/disconnect/keyed
force_disconnect_interior: curl http://localhost:3176/api/disconnect/interior
- platform: mqtt
name: "Kitchen"
state_topic: "smartthings/Kitchen/switch"
command_topic: "smartthings/Kitchen/switch"
payload_on: "on"
payload_off: "off"
retain: true
- platform: mqtt
name: "Lava Lamp"
state_topic: "smartthings/Lava Lamp/switch"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment