This file contains hidden or 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: bme680 | |
| friendly_name: Air Quality Sensor | |
| esp8266: | |
| board: d1_mini | |
| # Enable logging | |
| logger: |
This file contains hidden or 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
| GOAL: Send a push notification after the (vibrations from the) dryer cycle has completely stopped. | |
| USING: | |
| * Inexpensive hardware (see below) | |
| * ESPhome (http://esphome.io) for chip firmware | |
| * Home Assistant (http://hass.io) for sensor state machine and push notification. | |
| --- | |
| SHOPPING LIST: |
This file contains hidden or 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
| #!/usr/bin/python | |
| # By Brad Goodman | |
| # http://www.bradgoodman.com/ | |
| # brad@bradgoodman.com | |
| ####################### Fill in settings below ####################### | |
| USERNAME="your@emailaddress.com" | |
| PASSWORD="your_total_comfort_password" |
This file contains hidden or 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
| {% extends "layout.html" %} | |
| {% block canonical %}{{ url }}{{ page.url }}{% endblock %} | |
| {% block title %}{{ page.title }}{% endblock %} | |
| {% block meta %} | |
| {{ super() }} | |
| {% if page.metadata.keywords %}<meta name="keywords" content="{{ page.metadata.keywords }}">{% endif %} | |
| {% endblock %} | |
| {% block content %} | |
| <div class="row"> | |
| <div class="twelve columns"> |