-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c7d324
commit ccf0efb
Showing
34 changed files
with
235 additions
and
233 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
- platform: as3935 | ||
name: "${mac} Storm Alert" | ||
name: '${mac} Storm Alert' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
- platform: status | ||
name: "${mac} Connectivity" | ||
name: '${mac} Connectivity' | ||
entity_category: diagnostic |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
- platform: homeassistant | ||
id: prevent_deep_sleep | ||
name: $friendly_name Prevent Deep Sleep | ||
entity_id: input_boolean.prevent_deep_sleep |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- | ||
- file: "gfonts://Roboto+Mono" | ||
- file: 'gfonts://Roboto+Mono' | ||
id: roboto_mono_regular_20 | ||
size: 20 | ||
- file: "gfonts://Roboto+Mono" | ||
- file: 'gfonts://Roboto+Mono' | ||
id: roboto_mono_regular_16 | ||
size: 16 | ||
- file: "gfonts://Roboto+Mono" | ||
- file: 'gfonts://Roboto+Mono' | ||
id: roboto_mono_regular_12 | ||
size: 12 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- | ||
- file: "gfonts://Roboto" | ||
- file: 'gfonts://Roboto' | ||
id: roboto_regular_20 | ||
size: 20 | ||
- file: "gfonts://Roboto" | ||
- file: 'gfonts://Roboto' | ||
id: roboto_regular_16 | ||
size: 16 | ||
- file: "gfonts://Roboto" | ||
- file: 'gfonts://Roboto' | ||
id: roboto_regular_12 | ||
size: 12 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
deep_sleep: | ||
run_duration: ${run_duration} | ||
sleep_duration: ${sleep_duration} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
--- | ||
globals: | ||
- id: first_time_boot | ||
type: bool | ||
initial_value: "true" | ||
restore_value: yes | ||
initial_value: true | ||
restore_value: true | ||
- id: wifi_signal_sent | ||
type: bool | ||
initial_value: "false" | ||
restore_value: no | ||
initial_value: false | ||
restore_value: false | ||
- id: uptime_sent | ||
type: bool | ||
initial_value: "false" | ||
restore_value: no | ||
initial_value: false | ||
restore_value: false |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
# Trick to include secrets in imports | ||
<<: !include ../../secrets.yaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
- id: aqi | ||
mode: restart | ||
then: | ||
# Bad if at least one of the sensor values is bad | ||
- if: | ||
condition: | ||
or: | ||
- sensor.in_range: | ||
id: pm2_5_avg_24h | ||
above: 25 | ||
- sensor.in_range: | ||
id: pm10_avg_24h | ||
above: 50 | ||
then: | ||
- text_sensor.template.publish: | ||
id: aqi | ||
state: Bad | ||
else: | ||
# Acceptable if at least one of the sensor values is acceptable | ||
- if: | ||
condition: | ||
or: | ||
- sensor.in_range: | ||
id: pm2_5_avg_24h | ||
above: 12 | ||
- sensor.in_range: | ||
id: pm10_avg_24h | ||
above: 25 | ||
then: | ||
- text_sensor.template.publish: | ||
id: aqi | ||
state: Acceptable | ||
else: | ||
# Otherwise good (all of the sensor values are good) | ||
- text_sensor.template.publish: | ||
id: aqi | ||
state: Good |
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
# Trick to include secrets in imports | ||
<<: !include ../../secrets.yaml |
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
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
Oops, something went wrong.