mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-28 21:53:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| #  component declaration
 | |
| wk2212_i2c:
 | |
|   - id: wk2212_i2c_bridge
 | |
|     i2c_id: i2c_bus
 | |
|     address: 0x70
 | |
|     uart:
 | |
|       - id: uart_i2c_id0
 | |
|         channel: 0
 | |
|         baud_rate: 115200
 | |
|         stop_bits: 1
 | |
|         parity: none
 | |
|       - id: uart_i2c_id1
 | |
|         channel: 1
 | |
|         baud_rate: 9600
 | |
|         stop_bits: 1
 | |
|         parity: none
 | |
| 
 | |
| # Ensures a sensor doesn't break validation
 | |
| sensor:
 | |
|   - platform: a02yyuw
 | |
|     uart_id: uart_i2c_id1
 | |
|     id: distance_sensor
 | |
| 
 | |
| # individual binary_sensor inputs
 | |
| binary_sensor:
 | |
|   - platform: gpio
 | |
|     name: "pin_0"
 | |
|     pin:
 | |
|       wk2212_i2c: wk2212_i2c_bridge
 | |
|       number: 0
 | |
|       mode:
 | |
|         input: true
 | |
|   - platform: gpio
 | |
|     name: "pin_1"
 | |
|     pin:
 | |
|       wk2212_i2c: wk2212_i2c_bridge
 | |
|       number: 1
 | |
|       mode:
 | |
|         input: true
 | |
|       inverted: true
 | |
| 
 | |
| # Individual binary outputs
 | |
| switch:
 | |
|   - platform: gpio
 | |
|     name: "pin_2"
 | |
|     pin:
 | |
|       wk2212_i2c: wk2212_i2c_bridge
 | |
|       number: 2
 | |
|       mode:
 | |
|         output: true
 | |
|   - platform: gpio
 | |
|     name: "pin_3"
 | |
|     pin:
 | |
|       wk2212_i2c: wk2212_i2c_bridge
 | |
|       number: 3
 | |
|       mode:
 | |
|         output: true
 | |
|       inverted: true
 |