mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			891 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			891 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apds9960:
 | |
|   i2c_id: i2c_bus
 | |
|   address: 0x20
 | |
|   update_interval: 60s
 | |
| 
 | |
| binary_sensor:
 | |
|   - platform: apds9960
 | |
|     id: apds9960_binary_sensor
 | |
|     direction: up
 | |
|     name: APDS9960 Up
 | |
|     device_class: motion
 | |
|     filters:
 | |
|       - invert
 | |
|       - delayed_on: 20ms
 | |
|       - delayed_off: 20ms
 | |
|       - lambda: "return false;"
 | |
|     on_state:
 | |
|       - logger.log: New state
 | |
|   - platform: apds9960
 | |
|     direction: down
 | |
|     name: APDS9960 Down
 | |
|   - platform: apds9960
 | |
|     direction: left
 | |
|     name: APDS9960 Left
 | |
|   - platform: apds9960
 | |
|     direction: right
 | |
|     name: APDS9960 Right
 | |
| 
 | |
| sensor:
 | |
|   - platform: apds9960
 | |
|     type: proximity
 | |
|     name: APDS9960 Proximity
 | |
|   - platform: apds9960
 | |
|     type: clear
 | |
|     name: APDS9960 Clear
 | |
|   - platform: apds9960
 | |
|     type: red
 | |
|     name: APDS9960 Red
 | |
|   - platform: apds9960
 | |
|     type: green
 | |
|     name: APDS9960 Green
 | |
|   - platform: apds9960
 | |
|     type: blue
 | |
|     name: APDS9960 Blue
 |