Teagan Glenn
that@teagantotally.rocks
Teagan42
Denver Devs Slack: Teagan42
pip3 install homeassistant
hass --open-ui
homeassistant:
name: Home Assistant
latitude: 39.6323225
longitude: -105.131914
temperature_unit: F
time_zone: America/Denver
sun:
frontend:
PROS
CONS
import appdaemon.appapi as appapi
class DoorNotification(appapi.AppDaemon):
def initialize(self):
if "sensor" in self.args:
for sensor in self.split_device_list(self.args["sensor"]):
self.listen_state(self.state_change, sensor)
else:
self.listen_state(self.motion, "binary_sensor")
def state_change(self, entity, attribute, old, new, kwargs):
if new == "on" or new == "open":
state = "open"
else:
state = "closed"
self.log("{} is {}".format(self.friendly_name(entity), state))
self.notify("{} is {}".format(self.friendly_name(entity), state),
name="ios")
Built-in
Home Assistant
https://github.com/MycroftAI/mycroft-skills
Built-in
Home Assistant
https://github.com/snipsco
Home Assitant
http://home-assistant.io
Home Assistant Help Chat Room
https://discord.gg/c5DvZ4e
Mycroft.ai Docs
https://docs.mycroft.ai/
Firewall Setup
https://www.dd-wrt.com/wiki/index.php/Firewall
https://wiki.openwrt.org/doc/uci/firewall
PFSense Docs
https://doc.pfsense.org/index.php/Main_Page