Go to file
Otto Winter 06371c9e2d
Create issue templates (#171)
* Create issue templates

* Update bug_report.md
2018-10-12 11:27:14 +02:00
.github Create issue templates (#171) 2018-10-12 11:27:14 +02:00
docker Fix docker installs using old platformio version (#125) 2018-09-27 01:14:51 +09:00
esphomeyaml Fix raw remote receiver (#158) 2018-10-12 09:49:10 +02:00
esphomeyaml-edge Try fix docker build 2018-09-25 13:26:01 +02:00
tests Fix binary sensor heartbeat not working (#130) 2018-09-27 16:34:02 +02:00
.dockerignore Fix docker build 2018-09-25 10:30:45 +02:00
.gitignore Fix docker build 2018-09-25 10:30:45 +02:00
.gitlab-ci.yml Use cache for HassIO add-on images 2018-09-26 18:59:39 +02:00
.travis.yml Enable Travis Tests (#133) 2018-09-28 19:34:28 +02:00
CODE_OF_CONDUCT.md Add Code of Conduct (Contributor Covenant) (#168) 2018-10-12 11:26:26 +02:00
CONTRIBUTING.md Create CONTRIBUTING.md (#169) 2018-10-12 11:26:05 +02:00
Dockerfile Docker default to starting dashboard (#143) 2018-10-04 19:01:57 +02:00
LICENSE Create LICENSE 2018-07-28 16:33:01 +02:00
MANIFEST.in HassIO -> dashboard 2018-05-27 14:15:24 +02:00
README.md Add a link to Home Assistant in README (#152) 2018-10-08 11:00:02 +02:00
pylintrc Smallish Update 2018-08-13 19:11:33 +02:00
repository.json HassIO add-on 2018-06-01 18:45:23 +02:00
requirements.txt Fix docker installs using old platformio version (#125) 2018-09-27 01:14:51 +09:00
setup.cfg Enable Travis Linting (#3) 2018-04-10 17:17:46 +02:00
setup.py Fix docker installs using old platformio version (#125) 2018-09-27 01:14:51 +09:00

README.md

esphomeyaml for esphomelib

Getting Started Guide: https://esphomelib.com/esphomeyaml/getting-started.html

Available Components: https://esphomelib.com/esphomeyaml/index.html

esphomeyaml is the solution for your ESP8266/ESP32 projects with Home Assistant. It allows you to create custom firmwares for your microcontrollers with no programming experience required. All you need to know is the YAML configuration format which is also used by Home Assistant.

esphomeyaml will:

  • Read your configuration file and warn you about potential errors (like using the invalid pins.)
  • Create a custom C++ sketch file for you using esphomeyaml's powerful C++ generation engine.
  • Compile the sketch file for you using platformio.
  • Upload the binary to your ESP via Over the Air updates.
  • Automatically start remote logs via MQTT.

And all of that with a single command 🎉:

esphomeyaml configuration.yaml run

Features

  • No programming experience required: just edit YAML configuration files like you're used to with Home Assistant.
  • Flexible: Use esphomelib's powerful core to create custom sensors/outputs.
  • Fast and efficient: Written in C++ and keeps memory consumption to a minimum.
  • Made for Home Assistant: Almost all Home Assistant features are supported out of the box. Including RGB lights and many more.
  • Easy reproducible configuration: No need to go through a long setup process for every single node. Just copy a configuration file and run a single command.
  • Smart Over The Air Updates: esphomeyaml has OTA updates deeply integrated into the system. It even automatically enters a recovery mode if a boot loop is detected.
  • Powerful logging engine: View colorful logs and debug issues remotely.
  • Open Source
  • For me: Makes documenting esphomelib's features a lot easier.

Special Thanks

Special Thanks to the Home Assistant project. Lots of the code base of esphomeyaml is based off of Home Assistant, for example the loading and config validation code.