Compare commits
97 Commits
2023.6.0b5
...
2024.2.0b2
@@ -3,7 +3,12 @@ FROM ghcr.io/home-assistant/devcontainer:addons
|
|||||||
RUN \
|
RUN \
|
||||||
apt-get update \
|
apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
python3-pip
|
python3-pip \
|
||||||
|
python3-venv
|
||||||
|
|
||||||
|
ENV VIRTUAL_ENV=/opt/venv
|
||||||
|
RUN python3 -m venv $VIRTUAL_ENV
|
||||||
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||||
|
|
||||||
COPY script/requirements.txt /
|
COPY script/requirements.txt /
|
||||||
|
|
||||||
|
|||||||
@@ -14,23 +14,28 @@
|
|||||||
"containerEnv": {
|
"containerEnv": {
|
||||||
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}"
|
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}"
|
||||||
},
|
},
|
||||||
"extensions": [
|
"customizations": {
|
||||||
"timonwong.shellcheck",
|
"vscode": {
|
||||||
"esbenp.prettier-vscode"
|
"extensions": [
|
||||||
],
|
"timonwong.shellcheck",
|
||||||
"mounts": [
|
"esbenp.prettier-vscode",
|
||||||
"type=volume,target=/var/lib/docker"
|
"ms-python.python"
|
||||||
],
|
],
|
||||||
"settings": {
|
"mounts": [
|
||||||
"terminal.integrated.profiles.linux": {
|
"type=volume,target=/var/lib/docker"
|
||||||
"zsh": {
|
],
|
||||||
"path": "/usr/bin/zsh"
|
"settings": {
|
||||||
|
"terminal.integrated.profiles.linux": {
|
||||||
|
"zsh": {
|
||||||
|
"path": "/usr/bin/zsh"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"terminal.integrated.defaultProfile.linux": "zsh",
|
||||||
|
"editor.formatOnPaste": false,
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"editor.formatOnType": true,
|
||||||
|
"files.trimTrailingWhitespace": true
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"terminal.integrated.defaultProfile.linux": "zsh",
|
|
||||||
"editor.formatOnPaste": false,
|
|
||||||
"editor.formatOnSave": true,
|
|
||||||
"editor.formatOnType": true,
|
|
||||||
"files.trimTrailingWhitespace": true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
6
.github/workflows/bump-version.yml
vendored
@@ -15,10 +15,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3.5.2
|
- uses: actions/checkout@v4.1.1
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v4.8.0
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.11'
|
||||||
- run: pip install -r script/requirements.txt
|
- run: pip install -r script/requirements.txt
|
||||||
- run: script/bump-version.py ${{ github.event.inputs.version }}
|
- run: script/bump-version.py ${{ github.event.inputs.version }}
|
||||||
- name: Write Beta changelog
|
- name: Write Beta changelog
|
||||||
|
|||||||
10
.github/workflows/devcontainer-build.yaml
vendored
@@ -19,20 +19,20 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3.5.2
|
- uses: actions/checkout@v4.1.1
|
||||||
- name: Log in to the GitHub container registry
|
- name: Log in to the GitHub container registry
|
||||||
uses: docker/login-action@v2.1.0
|
uses: docker/login-action@v3.0.0
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
uses: docker/setup-qemu-action@v3.0.0
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2.5.0
|
uses: docker/setup-buildx-action@v3.0.0
|
||||||
- name: Build and Push
|
- name: Build and Push
|
||||||
uses: docker/build-push-action@v4.0.0
|
uses: docker/build-push-action@v5.1.0
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: .devcontainer/Dockerfile
|
file: .devcontainer/Dockerfile
|
||||||
|
|||||||
8
.github/workflows/lint.yml
vendored
@@ -19,16 +19,16 @@ jobs:
|
|||||||
channel: dev
|
channel: dev
|
||||||
steps:
|
steps:
|
||||||
- name: ⤵️ Check out code from GitHub
|
- name: ⤵️ Check out code from GitHub
|
||||||
uses: actions/checkout@v3.5.2
|
uses: actions/checkout@v4.1.1
|
||||||
- name: 🛠 Setup Python
|
- name: 🛠 Setup Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4.8.0
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.11'
|
||||||
- name: 🛠 Install dependencies
|
- name: 🛠 Install dependencies
|
||||||
run: pip install -r script/requirements.txt
|
run: pip install -r script/requirements.txt
|
||||||
- name: 🛠 Generate files from template
|
- name: 🛠 Generate files from template
|
||||||
run: python script/generate.py ${{ matrix.channels.channel }}
|
run: python script/generate.py ${{ matrix.channels.channel }}
|
||||||
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
|
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
|
||||||
uses: frenck/action-addon-linter@v2.12.0
|
uses: frenck/action-addon-linter@v2.15.0
|
||||||
with:
|
with:
|
||||||
path: "./${{ matrix.channels.folder }}"
|
path: "./${{ matrix.channels.folder }}"
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
## 2023.6.0b5
|
## 2024.2.0b2
|
||||||
|
|
||||||
- Fix pypi release [esphome#4983](https://github.com/esphome/esphome/pull/4983) by [@jesserockz](https://github.com/jesserockz)
|
- AUTO_LOAD `sensor` for `shelly_dimmer` [esphome#6223](https://github.com/esphome/esphome/pull/6223) by [@kbx81](https://github.com/kbx81)
|
||||||
|
- Add more debugging logs to microWakeWord [esphome#6238](https://github.com/esphome/esphome/pull/6238) by [@kahrendt](https://github.com/kahrendt)
|
||||||
|
- Fix to RF receiver for Drayton Digistat heating controller [esphome#6235](https://github.com/esphome/esphome/pull/6235) by [@marshn](https://github.com/marshn)
|
||||||
|
- WRGB Use correct multiplier [esphome#6237](https://github.com/esphome/esphome/pull/6237) by [@mhetzi](https://github.com/mhetzi)
|
||||||
|
- Add optional minimum esphome version to microWakeWord manifest [esphome#6240](https://github.com/esphome/esphome/pull/6240) by [@jesserockz](https://github.com/jesserockz)
|
||||||
|
- Fix xl9535 pin reads [esphome#6242](https://github.com/esphome/esphome/pull/6242) by [@jesserockz](https://github.com/jesserockz)
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
# ESPHome Add-On
|
# ESPHome Beta Add-On
|
||||||
|
|
||||||
[](https://esphome.io/)
|
[![ESPHome logo][logo]][website]
|
||||||
|
|
||||||
[](https://github.com/esphome/esphome)
|
[![GitHub stars][github-stars-shield]][repository]
|
||||||
[![GitHub Release][releases-shield]][releases]
|
|
||||||
[![Discord][discord-shield]][discord]
|
[![Discord][discord-shield]][discord]
|
||||||
|
|
||||||
## About
|
## About
|
||||||
@@ -14,10 +13,10 @@ is write YAML configuration files; the rest (over-the-air updates, compiling) is
|
|||||||
handled by ESPHome.
|
handled by ESPHome.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img title="ESPHome dashboard screenshot" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/screenshot.png" width="700px"></img>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
[View the ESPHome documentation](https://esphome.io/)
|
[View the ESPHome documentation][website]
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
@@ -26,15 +25,17 @@ firmware. For example, to include a [DHT22][dht22].
|
|||||||
temperature and humidity sensor, you just need to include 8 lines of YAML
|
temperature and humidity sensor, you just need to include 8 lines of YAML
|
||||||
in your configuration file:
|
in your configuration file:
|
||||||
|
|
||||||
<img title="ESPHome DHT configuration example" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/dht-example.png" width="500px"></img>
|
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/dht-example.png" width="500px"></img>
|
||||||
|
|
||||||
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
||||||
|
|
||||||
<img title="ESPHome Home Assistant MQTT discovery" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
|
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/temperature-humidity.png" width="600px"></img>
|
||||||
|
|
||||||
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
|
||||||
[dht22]: https://esphome.io/components/sensor/dht.html
|
|
||||||
[discord]: https://discord.gg/KhAMKrd
|
[discord]: https://discord.gg/KhAMKrd
|
||||||
[releases-shield]: https://img.shields.io/github/release/esphome/esphome.svg
|
|
||||||
[releases]: https://esphome.io/changelog/index.html
|
|
||||||
[repository]: https://github.com/esphome/esphome
|
[repository]: https://github.com/esphome/esphome
|
||||||
|
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
||||||
|
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
|
||||||
|
[dht22]: https://beta.esphome.io/components/sensor/dht.html
|
||||||
|
[releases]: https://beta.esphome.io/changelog/index.html
|
||||||
|
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/logo.png
|
||||||
|
[website]: https://beta.esphome.io/
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ schema:
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
backup_exclude:
|
backup_exclude:
|
||||||
- '*/*/'
|
- '*/*/'
|
||||||
init: false
|
init: false
|
||||||
|
startup: services
|
||||||
name: ESPHome (beta)
|
name: ESPHome (beta)
|
||||||
version: 2023.6.0b5
|
version: 2024.2.0b2
|
||||||
slug: esphome-beta
|
slug: esphome-beta
|
||||||
description: Beta version of ESPHome add-on
|
description: Beta version of ESPHome add-on
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|||||||
BIN
esphome-beta/images/dht-example.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
esphome-beta/images/screenshot.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
esphome-beta/images/temperature-humidity.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
@@ -1,9 +1,8 @@
|
|||||||
# ESPHome Add-On
|
# ESPHome Dev Add-On
|
||||||
|
|
||||||
[](https://esphome.io/)
|
[![ESPHome logo][logo]][website]
|
||||||
|
|
||||||
[](https://github.com/esphome/esphome)
|
[![GitHub stars][github-stars-shield]][repository]
|
||||||
[![GitHub Release][releases-shield]][releases]
|
|
||||||
[![Discord][discord-shield]][discord]
|
[![Discord][discord-shield]][discord]
|
||||||
|
|
||||||
## About
|
## About
|
||||||
@@ -14,10 +13,10 @@ is write YAML configuration files; the rest (over-the-air updates, compiling) is
|
|||||||
handled by ESPHome.
|
handled by ESPHome.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img title="ESPHome dashboard screenshot" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
[View the ESPHome documentation](https://esphome.io/)
|
[View the ESPHome documentation][website]
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
@@ -26,15 +25,17 @@ firmware. For example, to include a [DHT22][dht22].
|
|||||||
temperature and humidity sensor, you just need to include 8 lines of YAML
|
temperature and humidity sensor, you just need to include 8 lines of YAML
|
||||||
in your configuration file:
|
in your configuration file:
|
||||||
|
|
||||||
<img title="ESPHome DHT configuration example" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/dht-example.png" width="500px"></img>
|
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/dht-example.png" width="500px"></img>
|
||||||
|
|
||||||
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
||||||
|
|
||||||
<img title="ESPHome Home Assistant MQTT discovery" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
|
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
|
||||||
|
|
||||||
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
|
||||||
[dht22]: https://esphome.io/components/sensor/dht.html
|
|
||||||
[discord]: https://discord.gg/KhAMKrd
|
[discord]: https://discord.gg/KhAMKrd
|
||||||
[releases-shield]: https://img.shields.io/github/release/esphome/esphome.svg
|
|
||||||
[releases]: https://esphome.io/changelog/index.html
|
|
||||||
[repository]: https://github.com/esphome/esphome
|
[repository]: https://github.com/esphome/esphome
|
||||||
|
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
||||||
|
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
|
||||||
|
[dht22]: https://next.esphome.io/components/sensor/dht.html
|
||||||
|
[releases]: https://next.esphome.io/changelog/index.html
|
||||||
|
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/logo.png
|
||||||
|
[website]: https://next.esphome.io/
|
||||||
|
|||||||
@@ -27,11 +27,11 @@ schema:
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
backup_exclude:
|
backup_exclude:
|
||||||
- '*/*/'
|
- '*/*/'
|
||||||
init: false
|
init: false
|
||||||
|
startup: services
|
||||||
name: ESPHome (dev)
|
name: ESPHome (dev)
|
||||||
version: dev
|
version: dev
|
||||||
slug: esphome-dev
|
slug: esphome-dev
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
## 2023.5.5
|
## 2023.12.9
|
||||||
|
|
||||||
- Fix version printing not breaking yaml parsing [esphome#4904](https://github.com/esphome/esphome/pull/4904) by [@jesserockz](https://github.com/jesserockz)
|
- fix sen5x negative temperature [esphome#6082](https://github.com/esphome/esphome/pull/6082) by [@ssieb](https://github.com/ssieb)
|
||||||
|
- negative values for all DHT22 variants [esphome#6074](https://github.com/esphome/esphome/pull/6074) by [@ssieb](https://github.com/ssieb)
|
||||||
|
- fix negative temperature for pmsx003 [esphome#6083](https://github.com/esphome/esphome/pull/6083) by [@ssieb](https://github.com/ssieb)
|
||||||
|
- fix: negative temperatures on PMS5003T sensors [esphome#6100](https://github.com/esphome/esphome/pull/6100) by [@aschmitz](https://github.com/aschmitz)
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
# ESPHome Add-On
|
# ESPHome Add-On
|
||||||
|
|
||||||
[](https://esphome.io/)
|
[![ESPHome logo][logo]][website]
|
||||||
|
|
||||||
[](https://github.com/esphome/esphome)
|
[![GitHub stars][github-stars-shield]][repository]
|
||||||
[![GitHub Release][releases-shield]][releases]
|
|
||||||
[![Discord][discord-shield]][discord]
|
[![Discord][discord-shield]][discord]
|
||||||
|
|
||||||
## About
|
## About
|
||||||
@@ -14,10 +13,10 @@ is write YAML configuration files; the rest (over-the-air updates, compiling) is
|
|||||||
handled by ESPHome.
|
handled by ESPHome.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img title="ESPHome dashboard screenshot" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/screenshot.png" width="700px"></img>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
[View the ESPHome documentation](https://esphome.io/)
|
[View the ESPHome documentation][website]
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
@@ -26,15 +25,17 @@ firmware. For example, to include a [DHT22][dht22].
|
|||||||
temperature and humidity sensor, you just need to include 8 lines of YAML
|
temperature and humidity sensor, you just need to include 8 lines of YAML
|
||||||
in your configuration file:
|
in your configuration file:
|
||||||
|
|
||||||
<img title="ESPHome DHT configuration example" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/dht-example.png" width="500px"></img>
|
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/dht-example.png" width="500px"></img>
|
||||||
|
|
||||||
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
||||||
|
|
||||||
<img title="ESPHome Home Assistant MQTT discovery" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
|
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/temperature-humidity.png" width="600px"></img>
|
||||||
|
|
||||||
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
|
||||||
[dht22]: https://esphome.io/components/sensor/dht.html
|
|
||||||
[discord]: https://discord.gg/KhAMKrd
|
[discord]: https://discord.gg/KhAMKrd
|
||||||
[releases-shield]: https://img.shields.io/github/release/esphome/esphome.svg
|
|
||||||
[releases]: https://esphome.io/changelog/index.html
|
|
||||||
[repository]: https://github.com/esphome/esphome
|
[repository]: https://github.com/esphome/esphome
|
||||||
|
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
||||||
|
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
|
||||||
|
[dht22]: https://esphome.io/components/sensor/dht.html
|
||||||
|
[releases]: https://esphome.io/changelog/index.html
|
||||||
|
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome/logo.png
|
||||||
|
[website]: https://esphome.io/
|
||||||
|
|||||||
@@ -26,13 +26,13 @@ schema:
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
backup_exclude:
|
backup_exclude:
|
||||||
- '*/*/'
|
- '*/*/'
|
||||||
init: false
|
init: false
|
||||||
|
startup: services
|
||||||
name: ESPHome
|
name: ESPHome
|
||||||
version: 2023.5.5
|
version: 2023.12.9
|
||||||
slug: esphome
|
slug: esphome
|
||||||
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
|
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|||||||
BIN
esphome/images/dht-example.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
esphome/images/screenshot.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
esphome/images/temperature-humidity.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
@@ -6,6 +6,7 @@ from pathlib import Path
|
|||||||
from enum import Enum
|
from enum import Enum
|
||||||
from shutil import copyfile
|
from shutil import copyfile
|
||||||
import sys
|
import sys
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
class Channel(Enum):
|
class Channel(Enum):
|
||||||
@@ -37,7 +38,8 @@ def main(args):
|
|||||||
with open(path, "w") as f:
|
with open(path, "w") as f:
|
||||||
yaml.dump(conf, f, indent=2, sort_keys=False, explicit_start=True)
|
yaml.dump(conf, f, indent=2, sort_keys=False, explicit_start=True)
|
||||||
|
|
||||||
for file_, conf_ in copyf.items():
|
for file_ in copyf:
|
||||||
|
os.makedirs(dir_ / Path(file_).parent, exist_ok=True)
|
||||||
if Path.exists(templ / channel.value / file_):
|
if Path.exists(templ / channel.value / file_):
|
||||||
copyfile(templ / channel.value / file_, dir_ / file_)
|
copyfile(templ / channel.value / file_, dir_ / file_)
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
# ESPHome Add-On
|
# ESPHome Add-On
|
||||||
|
|
||||||
[](https://esphome.io/)
|
[![ESPHome logo][logo]][website]
|
||||||
|
|
||||||
[](https://github.com/esphome/esphome)
|
[![GitHub stars][github-stars-shield]][repository]
|
||||||
[![GitHub Release][releases-shield]][releases]
|
|
||||||
[![Discord][discord-shield]][discord]
|
[![Discord][discord-shield]][discord]
|
||||||
|
|
||||||
## About
|
## About
|
||||||
@@ -14,10 +13,10 @@ is write YAML configuration files; the rest (over-the-air updates, compiling) is
|
|||||||
handled by ESPHome.
|
handled by ESPHome.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img title="ESPHome dashboard screenshot" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/screenshot.png" width="700px"></img>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
[View the ESPHome documentation](https://esphome.io/)
|
[View the ESPHome documentation][website]
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
@@ -26,15 +25,17 @@ firmware. For example, to include a [DHT22][dht22].
|
|||||||
temperature and humidity sensor, you just need to include 8 lines of YAML
|
temperature and humidity sensor, you just need to include 8 lines of YAML
|
||||||
in your configuration file:
|
in your configuration file:
|
||||||
|
|
||||||
<img title="ESPHome DHT configuration example" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/dht-example.png" width="500px"></img>
|
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/dht-example.png" width="500px"></img>
|
||||||
|
|
||||||
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
||||||
|
|
||||||
<img title="ESPHome Home Assistant MQTT discovery" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
|
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/temperature-humidity.png" width="600px"></img>
|
||||||
|
|
||||||
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
|
||||||
[dht22]: https://esphome.io/components/sensor/dht.html
|
|
||||||
[discord]: https://discord.gg/KhAMKrd
|
[discord]: https://discord.gg/KhAMKrd
|
||||||
[releases-shield]: https://img.shields.io/github/release/esphome/esphome.svg
|
|
||||||
[releases]: https://esphome.io/changelog/index.html
|
|
||||||
[repository]: https://github.com/esphome/esphome
|
[repository]: https://github.com/esphome/esphome
|
||||||
|
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
||||||
|
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
|
||||||
|
[dht22]: https://esphome.io/components/sensor/dht.html
|
||||||
|
[releases]: https://esphome.io/changelog/index.html
|
||||||
|
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome/logo.png
|
||||||
|
[website]: https://esphome.io/
|
||||||
|
|||||||
@@ -34,12 +34,13 @@ base: &base
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
backup_exclude:
|
backup_exclude:
|
||||||
- "*/*/"
|
- "*/*/"
|
||||||
# Disable docker init for s6
|
# Disable docker init for s6
|
||||||
init: false
|
init: false
|
||||||
|
# Make sure dashboard is available for core
|
||||||
|
startup: services
|
||||||
|
|
||||||
esphome-dev:
|
esphome-dev:
|
||||||
<<: *base
|
<<: *base
|
||||||
@@ -60,7 +61,6 @@ esphome-dev:
|
|||||||
ssl: bool?
|
ssl: bool?
|
||||||
certfile: str?
|
certfile: str?
|
||||||
keyfile: str?
|
keyfile: str?
|
||||||
relative_url: str?
|
|
||||||
leave_front_door_open: bool?
|
leave_front_door_open: bool?
|
||||||
base_image: ghcr.io/esphome/esphome-hassio:dev
|
base_image: ghcr.io/esphome/esphome-hassio:dev
|
||||||
options:
|
options:
|
||||||
@@ -70,7 +70,7 @@ esphome-beta:
|
|||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome-beta
|
directory: esphome-beta
|
||||||
name: ESPHome (beta)
|
name: ESPHome (beta)
|
||||||
version: '2023.6.0b5' # BETA
|
version: '2024.2.0b2' # BETA
|
||||||
slug: esphome-beta
|
slug: esphome-beta
|
||||||
description: "Beta version of ESPHome add-on"
|
description: "Beta version of ESPHome add-on"
|
||||||
url: https://beta.esphome.io/
|
url: https://beta.esphome.io/
|
||||||
@@ -84,14 +84,17 @@ esphome-stable:
|
|||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome
|
directory: esphome
|
||||||
name: ESPHome
|
name: ESPHome
|
||||||
version: '2023.5.5' # STABLE
|
version: '2023.12.9' # STABLE
|
||||||
slug: esphome
|
slug: esphome
|
||||||
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
|
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|
||||||
copy_files:
|
copy_files:
|
||||||
DOCS.md:
|
- DOCS.md
|
||||||
icon.png:
|
- icon.png
|
||||||
logo.png:
|
- logo.png
|
||||||
README.md:
|
- README.md
|
||||||
translations/en.yaml:
|
- translations/en.yaml
|
||||||
|
- images/dht-example.png
|
||||||
|
- images/screenshot.png
|
||||||
|
- images/temperature-humidity.png
|
||||||
|
|||||||
41
template/beta/README.md
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
# ESPHome Beta Add-On
|
||||||
|
|
||||||
|
[![ESPHome logo][logo]][website]
|
||||||
|
|
||||||
|
[![GitHub stars][github-stars-shield]][repository]
|
||||||
|
[![Discord][discord-shield]][discord]
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
|
||||||
|
directly through Home Assistant **with no programming experience required**. All you need to do
|
||||||
|
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||||
|
handled by ESPHome.
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/screenshot.png" width="700px"></img>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
[View the ESPHome documentation][website]
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
With ESPHome, you can go from a few lines of YAML straight to a custom-made
|
||||||
|
firmware. For example, to include a [DHT22][dht22].
|
||||||
|
temperature and humidity sensor, you just need to include 8 lines of YAML
|
||||||
|
in your configuration file:
|
||||||
|
|
||||||
|
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/dht-example.png" width="500px"></img>
|
||||||
|
|
||||||
|
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
||||||
|
|
||||||
|
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/temperature-humidity.png" width="600px"></img>
|
||||||
|
|
||||||
|
[discord]: https://discord.gg/KhAMKrd
|
||||||
|
[repository]: https://github.com/esphome/esphome
|
||||||
|
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
||||||
|
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
|
||||||
|
[dht22]: https://beta.esphome.io/components/sensor/dht.html
|
||||||
|
[releases]: https://beta.esphome.io/changelog/index.html
|
||||||
|
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/logo.png
|
||||||
|
[website]: https://beta.esphome.io/
|
||||||
41
template/dev/README.md
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
# ESPHome Dev Add-On
|
||||||
|
|
||||||
|
[![ESPHome logo][logo]][website]
|
||||||
|
|
||||||
|
[![GitHub stars][github-stars-shield]][repository]
|
||||||
|
[![Discord][discord-shield]][discord]
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
|
||||||
|
directly through Home Assistant **with no programming experience required**. All you need to do
|
||||||
|
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||||
|
handled by ESPHome.
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
[View the ESPHome documentation][website]
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
With ESPHome, you can go from a few lines of YAML straight to a custom-made
|
||||||
|
firmware. For example, to include a [DHT22][dht22].
|
||||||
|
temperature and humidity sensor, you just need to include 8 lines of YAML
|
||||||
|
in your configuration file:
|
||||||
|
|
||||||
|
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/dht-example.png" width="500px"></img>
|
||||||
|
|
||||||
|
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
|
||||||
|
|
||||||
|
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
|
||||||
|
|
||||||
|
[discord]: https://discord.gg/KhAMKrd
|
||||||
|
[repository]: https://github.com/esphome/esphome
|
||||||
|
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
|
||||||
|
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
|
||||||
|
[dht22]: https://next.esphome.io/components/sensor/dht.html
|
||||||
|
[releases]: https://next.esphome.io/changelog/index.html
|
||||||
|
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/logo.png
|
||||||
|
[website]: https://next.esphome.io/
|
||||||
BIN
template/images/dht-example.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
template/images/screenshot.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
template/images/temperature-humidity.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |