mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
a15ac06771
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
62 lines
1,003 B
YAML
62 lines
1,003 B
YAML
---
|
|
esphome:
|
|
name: test6
|
|
project:
|
|
name: esphome.test6_project
|
|
version: "1.0.0"
|
|
|
|
rp2040:
|
|
board: rpipicow
|
|
framework:
|
|
# Waiting for https://github.com/platformio/platform-raspberrypi/pull/36
|
|
platform_version: https://github.com/maxgerhardt/platform-raspberrypi.git
|
|
|
|
wifi:
|
|
networks:
|
|
- ssid: "MySSID"
|
|
password: "password1"
|
|
|
|
api:
|
|
|
|
ota:
|
|
|
|
logger:
|
|
|
|
binary_sensor:
|
|
- platform: gpio
|
|
pin: GPIO5
|
|
id: pin_5_button
|
|
|
|
output:
|
|
- platform: gpio
|
|
pin: GPIO4
|
|
id: pin_4
|
|
|
|
switch:
|
|
- platform: output
|
|
output: pin_4
|
|
id: pin_4_switch
|
|
|
|
light:
|
|
- platform: rp2040_pio_led_strip
|
|
id: led_strip
|
|
pin: GPIO13
|
|
num_leds: 60
|
|
pio: 0
|
|
rgb_order: GRB
|
|
chipset: WS2812
|
|
- platform: rp2040_pio_led_strip
|
|
id: led_strip_custom_timings
|
|
pin: GPIO13
|
|
num_leds: 60
|
|
pio: 1
|
|
rgb_order: GRB
|
|
bit0_high: .1us
|
|
bit0_low: 1.2us
|
|
bit1_high: .69us
|
|
bit1_low: .4us
|
|
|
|
|
|
sensor:
|
|
- platform: internal_temperature
|
|
name: Internal Temperature
|