mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-04 00:51:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			940 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			940 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
i2c:
 | 
						|
  - id: i2c_apds9960
 | 
						|
    scl: ${scl_pin}
 | 
						|
    sda: ${sda_pin}
 | 
						|
 | 
						|
apds9960:
 | 
						|
  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
 |