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
- platform: command_line | |
name: "NAS CPU Temperature" | |
scan_interval: 60 | |
command_timeout: 30 | |
command: "ssh [email protected] '( sensors )' > /tmp/cpu_nas && cat /tmp/cpu_nas | head -3 | tail -1 | cut -c15-22" | |
unit_of_measurement: "°C" | |
value_template: "{{ value }}" | |
- platform: command_line |
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
#include <SimpleTimerA.h> | |
#include <PubSubClient.h> | |
#include <Ethernet.h> | |
#include <SPI.h> | |
//USER CONFIGURED SECTION START// | |
const char* mqtt_server = "192.168.1.27"; | |
const int mqtt_port = 1883; | |
const char *mqtt_user = "MQTT"; | |
const char *mqtt_pass = "xxxxxxx"; |
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
resources: | |
- type: js | |
url: /community_plugin/plan-coordinates/plan-coordinates.js | |
#views: | |
- cards: | |
- cards: | |
- type: 'custom:plan-coordinates' | |
- elements: | |
- entity: switch.4336784084f3eb5d6215 | |
state_filter: |
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
esphome: | |
name: main_bathroom_shower | |
platform: ESP8266 | |
board: esp01_1m | |
wifi: | |
ssid: !secret wifi | |
password: !secret wifi_pw | |
# Enable logging |
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
- alias: lower mountian room shades in the morning | |
id: lowermountainroomshadesinthemorning | |
trigger: | |
- platform: numeric_state | |
entity_id: sun.sun | |
value_template: "{{ state.attributes.elevation }}" | |
above: 8.0 | |
# - platform: time | |
# at: "21:00:00" | |
# the shades have to NOT be closed, in order for the "close" automation to run |
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
esphome: | |
name: mountain_windows_left | |
platform: ESP8266 | |
board: d1_mini | |
wifi: | |
ssid: !secret wifi | |
password: !secret wifi_pw | |
# Enable logging |
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
esphome: | |
name: main_bathroom | |
platform: ESP8266 | |
board: esp01_1m | |
wifi: | |
ssid: !secret wifi | |
password: !secret wifi_pw | |
# Enable logging |
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
switch: | |
- platform: gpio | |
name: "Left Lights" | |
pin: D5 | |
id: left_lights | |
- platform: gpio | |
name: "Back Lights" | |
pin: D6 | |
id: back_lights |