mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-04 00:51:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			272 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			272 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
esp_ldo:
 | 
						|
  - id: ldo_id
 | 
						|
    channel: 3
 | 
						|
    voltage: 2.5V
 | 
						|
    adjustable: true
 | 
						|
  - id: ldo_4
 | 
						|
    channel: 4
 | 
						|
    voltage: 2.0V
 | 
						|
    setup_priority: 900
 | 
						|
 | 
						|
esphome:
 | 
						|
  on_boot:
 | 
						|
    then:
 | 
						|
      - esp_ldo.voltage.adjust:
 | 
						|
          id: ldo_id
 | 
						|
          voltage: !lambda return 2.5;
 |