-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix uint16_t output * add pico-w diagram * add pico-w picture * add pico-w installed * add pico yaml example * update README * update README * update pico diagram
- Loading branch information
Showing
6 changed files
with
75 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
esphome: | ||
name: pico-w-c545 | ||
friendly_name: pico-w-c545 | ||
|
||
rp2040: | ||
board: rpipicow | ||
framework: | ||
# Required until https://github.com/platformio/platform-raspberrypi/pull/36 is merged | ||
platform_version: https://github.com/maxgerhardt/platform-raspberrypi.git | ||
|
||
# Enable Home Assistant API | ||
api: | ||
encryption: | ||
key: "<key>" | ||
|
||
ota: | ||
password: "<password>" | ||
|
||
wifi: | ||
ssid: !secret <ssid_secret> | ||
password: !secret <password_secret> | ||
|
||
# Enable fallback hotspot in case wifi connection fails | ||
ap: | ||
ssid: "Pico-W-C545" | ||
password: !secret <fallback_secret> | ||
|
||
external_components: | ||
# Pull from Github | ||
- source: github://mill1000/esphome-winix-c545@main | ||
components: [winix_c545] | ||
|
||
# Enable logging | ||
logger: | ||
level: DEBUG | ||
hardware_uart: UART0 | ||
|
||
uart: | ||
tx_pin: 8 #(UART1 TX) | ||
rx_pin: 9 #(UART1 RX) | ||
baud_rate: 115200 | ||
|
||
winix_c545: | ||
|
||
fan: | ||
- platform: winix_c545 | ||
name: Winix C545 Air Purifier | ||
|
||
sensor: | ||
- platform: winix_c545 | ||
filter_age: | ||
name: Filter Age | ||
filter_lifetime: | ||
name: Filter Lifetime | ||
aqi: | ||
name: AQI | ||
light: | ||
name: Light Intensity | ||
|
||
text_sensor: | ||
- platform: winix_c545 | ||
aqi_indicator: | ||
name: AQI Indicator | ||
|
||
switch: | ||
- platform: winix_c545 | ||
plasmawave: | ||
name: Plasmawave | ||
auto: | ||
name: Auto | ||
sleep: | ||
name: Sleep |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.