Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba2k2 committed Jan 3, 2024
1 parent 039fb02 commit d7162b5
Showing 1 changed file with 86 additions and 94 deletions.
180 changes: 86 additions & 94 deletions docs/projects/esphome.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# ESPHome

!!! tip
See the [Cloudcutter video guide](https://www.youtube.com/watch?v=sSj8f-HCHQ0) for a complete tutorial on flashing with [Cloudcutter](https://github.com/tuya-cloudcutter/tuya-cloudcutter) and installing LibreTiny-ESPHome. **Includes Home Assistant Add-On setup.**
See the [Cloudcutter video guide](https://www.youtube.com/watch?v=sSj8f-HCHQ0) for a complete tutorial on flashing with [Cloudcutter](https://github.com/tuya-cloudcutter/tuya-cloudcutter) and installing LibreTiny-ESPHome. **Includes Home Assistant Add-On setup.**

LibreTiny is now natively supported by ESPHome in versions 2023.9.0 and later.

There are three basic ways to install and use ESPHome. You can choose the option that best suits you:

- ESPHome Dashboard (GUI) - for new users, might be an easy way to go; config management & compilation using web-based dashboard
- command line (CLI) - for more experienced users; compilation using CLI commands, somewhat easier to troubleshoot
- [Home Assistant Add-On] - using ESPHome in Home Assistant as an add-on
- Home Assistant Add-On - using ESPHome in Home Assistant as an add-on

## Find your device's board

Expand All @@ -21,89 +21,82 @@ If your board isn't listed, use one of the **Generic** boards, depending on the

=== "GUI"

For this, you need Docker, Docker Compose and Python installed. After running the commands, you'll have a running ESPHome Dashboard interface that you can connect to.
For this, you need Docker, Docker Compose and Python installed. After running the commands, you'll have a running ESPHome Dashboard interface that you can connect to.

1. Open a terminal/cmd.exe.
2. Create a `docker-compose.yml` file in a directory of choice:
1. Open a terminal/cmd.exe.
2. Create a `docker-compose.yml` file in a directory of choice:

```yaml title="docker-compose.yml"
version: "3"
services:
esphome:
container_name: esphome
image: docker pull ghcr.io/esphome/esphome:latest
volumes:
- ./configs:/config:rw # (1)!
- /etc/localtime:/etc/localtime:ro
restart: always
privileged: false
network_mode: host
```
```yaml title="docker-compose.yml"
version: "3"
services:
esphome:
container_name: esphome
image: docker pull ghcr.io/esphome/esphome:latest
volumes:
- ./configs:/config:rw # (1)!
- /etc/localtime:/etc/localtime:ro
restart: always
privileged: false
network_mode: host
```

1. You can change `./configs` to another path, in which your ESPHome configs will be stored.

3. Start the container using `docker-compose up`. You should be able to open the GUI on [http://localhost:6052/](http://localhost:6052/).
1. You can change `./configs` to another path, in which your ESPHome configs will be stored.
3. Start the container using `docker-compose up`. You should be able to open the GUI on [http://localhost:6052/](http://localhost:6052/).

=== "CLI"

!!! important
Read [Getting started](../getting-started/README.md) first - most importantly, the first part about installation.
!!! important
Read [Getting started](../getting-started/README.md) first - most importantly, the first part about installation.

Assuming you have PlatformIO, git and Python installed:
Assuming you have PlatformIO, git and Python installed:

1. Open a terminal/cmd.exe
2. `git clone https://github.com/esphome/esphome`
3. `cd` into the newly created `esphome` directory.
4. Check if it works by typing `python -m esphome`
1. Open a terminal/cmd.exe
2. `git clone https://github.com/esphome/esphome`
3. `cd` into the newly created `esphome` directory.
4. Check if it works by typing `python -m esphome`

!!! tip
You can alternately install ESPhome CLI using pip with `pip install esphome`
!!! tip
You can alternately install ESPHome CLI using pip with `pip install esphome`

## Create your device config

=== "GUI"

1. Open the GUI on [http://localhost:6052/](http://localhost:6052/) (or a different IP address if you're running on a Pi).
2. Go through the wizard steps:

- `New Device`
- `Continue`
- enter name and WiFi details (first time only)
- LibreTiny will not currently be listed as an option, choose any of the boards and you will overwrite them later
- select `Skip`

3. A new config file will be added. Press `Edit` and proceed to the next section.
4. Delete the entire generated configuration and replace it with the example configuration below or one generated by [UPK2ESPHome](https://upk.libretiny.eu/)
1. Open the GUI on [http://localhost:6052/](http://localhost:6052/) (or a different IP address if you're running on a Pi).
2. Go through the wizard steps:
- `New Device`
- `Continue`
- enter name and WiFi details (first time only)
- LibreTiny will not currently be listed as an option, choose any of the boards and you will overwrite them later
- select `Skip`
3. A new config file will be added. Press `Edit` and proceed to the next section.
4. Delete the entire generated configuration and replace it with the example configuration below or one generated by [UPK2ESPHome](https://upk.libretiny.eu/).

=== "CLI"

1. Create a YAML config file for your device. You can either:

- use `python -m esphome wizard yourdevice.yml` - type answers to the six questions the wizard asks, OR:
- write a config file manually: see Example configuration below

## Example configuration

```yaml title="yourdevice.yml"
esphome:
name: yourdevice
bk72xx: # adjust accordingly: bk72xx or rtl87xx
board: cb2s # THIS IS YOUR BOARD CODE
framework:
version: latest
logger:
api:
web_server:
captive_portal:
ota:
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ap:
```
1. Create a YAML config file for your device. You can either:
- use `python -m esphome wizard yourdevice.yml` - type answers to the six questions the wizard asks, OR:
- write a config file manually:
```yaml title="yourdevice.yml"
esphome:
name: yourdevice

bk72xx: # adjust accordingly: bk72xx or rtl87xx
board: cb2s # THIS IS YOUR BOARD CODE
framework:
version: latest

logger:
web_server:
captive_portal:
api:
ota:

wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ap:
```

## Automatically generate config

Expand All @@ -114,26 +107,26 @@ Instead of adding components manually and writing everything from scratch, you c
Now, just like with standard ESPHome on ESP32/ESP8266, you need to add components for your device. Visit [ESPHome homepage](https://esphome.io/) to learn about YAML configuration. If you want, you can upload an "empty" config first, and add actual components later.

!!! danger "Important"
It's highly recommended to **always** include the [`web_server`](https://esphome.io/components/web_server.html) and [`captive_portal`](https://esphome.io/components/captive_portal.html) components - **even in your first "empty" upload**.
It's highly recommended to **always** include the [`web_server`](https://esphome.io/components/web_server.html) and [`captive_portal`](https://esphome.io/components/captive_portal.html) components - **even in your first "empty" upload**.

Adding these two components will safeguard you against accidentally soft-bricking the device, by e.g. entering invalid Wi-Fi credentials. The Web Server provides an easy way to flash a new image over-the-air, and the Captive Portal allows to easily open the Web Server on a fallback AP.
Adding these two components will safeguard you against accidentally soft-bricking the device, by e.g. entering invalid Wi-Fi credentials. The Web Server provides an easy way to flash a new image over-the-air, and the Captive Portal allows to easily open the Web Server on a fallback AP.

## Build & upload

=== "GUI"

Close the config editor. Press the three dots icon and select `Install`. Choose `Manual download` and `Modern format`. The firmware will be compiled and a UF2 file will be downloaded automatically.
Close the config editor. Press the three dots icon and select `Install`. Choose `Manual download` and `Modern format`. The firmware will be compiled and a UF2 file will be downloaded automatically.

=== "CLI"

The command `python -m esphome compile yourdevice.yml` will compile ESPHome.
The command `python -m esphome compile yourdevice.yml` will compile ESPHome.

Now, refer to the [flashing guide](../flashing/esphome.md) to learn how to upload ESPHome to your device. There's also info on using `tuya-cloudcutter` in that guide.

## Advanced: LT configuration

!!! note
This part is for advanced users. You'll probably be fine with the default options.
This part is for advanced users. You'll probably be fine with the default options.

All options from [Options & config](../dev/config.md) can be customized in the LibreTiny block:

Expand Down Expand Up @@ -169,33 +162,32 @@ bk72xx:
## Advanced: Using development versions with ESPHome
There are a two ways to use development versions of LibreTiny with ESPHome
`version` is a required field, and must match a specific format, it is recommended to use `"0.0.0"` for custom development
`source` must point to where your development version of LibreTiny resides.
There are a two ways to use development versions of LibreTiny with ESPHome:
- `version` is a required field, and must match a specific format, it is recommended to use `"0.0.0"` for custom development
- `source` must point to where your development version of LibreTiny resides.

=== "Git"

```yaml
bk72xx:
framework:
version: "0.0.0"
source: "https://github.com/libretiny-eu/libretiny"
```
```yaml
bk72xx:
framework:
version: "0.0.0"
source: "https://github.com/libretiny-eu/libretiny"
```

Source can be post-fixed to modify branch or include open Pull Requests
Source can be post-fixed to checkout a specified branch or a Pull Request:

- Branch: add `#branch_name` (ex: `source: "https://github.com/libretiny-eu/libretiny#experimental_branch_name"`)
- Pull Requests: Pull requests currently require you to check out the source branch of the pull request. To get this
information, visit the PR, click on the source branch, and copy their git address and apply the branch their PR uses
ex: `https://github.com/pr_user/libretiny#pr_branch`
- Branch: add `#branch_name` (ex: `source: "https://github.com/libretiny-eu/libretiny#experimental_branch_name"`)
- Pull Requests: Pull requests currently require you to check out the source branch of the pull request. To get this information, visit the PR, click on the source branch, and copy their git address and apply the branch their PR uses (ex: `https://github.com/pr_user/libretiny#pr_branch`)

=== "Local"

Check out with git or download and extract a copy of LibreTiny to your local file system running ESPHome.
Check out with Git (recommended) or download and extract a copy of LibreTiny to your local file system running ESPHome.

```yaml
bk72xx:
framework:
version: "0.0.0"
source: "/local_path_to_libretiny"
```
```yaml
bk72xx:
framework:
version: "0.0.0"
source: "/local_path_to_libretiny"
```

0 comments on commit d7162b5

Please sign in to comment.