mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			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"
 | |
| 
 | |
| network:
 | |
|   enable_ipv6: true
 | |
| 
 | |
| api:
 | |
| 
 | |
| ota:
 | |
| 
 | |
| logger:
 | |
| 
 | |
| debug:
 | |
| 
 | |
| 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
 | |
| 
 | |
| 
 | |
| spi:  # Pins are for SPI1 on the RP2040 Pico-W
 | |
|   miso_pin: 8
 | |
|   clk_pin: 10
 | |
|   mosi_pin: 11
 | |
|   id: spi_0
 | |
|   interface: hardware
 | |
| 
 | |
| #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
 | |
|   - platform: adc
 | |
|     pin: VCC
 | |
|     name: VSYS
 |