Source for esphome.io documentation files.
Go to file
Otto Winter 595aa5e92d
Bump version to 1.3.0
2018-04-18 19:33:53 +02:00
docker Initial Commit 🎉 2018-04-07 01:23:03 +02:00
esphomeyaml Bump version to 1.3.0 2018-04-18 19:33:53 +02:00
examples Initial Commit 🎉 2018-04-07 01:23:03 +02:00
.dockerignore Initial Commit 🎉 2018-04-07 01:23:03 +02:00
.gitignore Initial Commit 🎉 2018-04-07 01:23:03 +02:00
.travis.yml Enable Travis Linting (#3) 2018-04-10 17:17:46 +02:00
Dockerfile Bump version to 1.3.0 2018-04-18 19:33:53 +02:00
README.md Update README.md 2018-04-07 08:30:43 +02:00
pylintrc Enable Travis Linting (#3) 2018-04-10 17:17:46 +02:00
requirements.txt Initial Commit 🎉 2018-04-07 01:23:03 +02:00
setup.cfg Enable Travis Linting (#3) 2018-04-10 17:17:46 +02:00
setup.py Bump version to 1.2.1 2018-04-07 12:01:50 +02: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.