mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-03 16:41:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			503 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			503 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
esphome:
 | 
						|
  on_boot:
 | 
						|
    then:
 | 
						|
      - ufire_ise.calibrate_probe_high:
 | 
						|
          id: ufire_ise_sensor
 | 
						|
          solution: 7.0
 | 
						|
      - ufire_ise.calibrate_probe_low:
 | 
						|
          id: ufire_ise_sensor
 | 
						|
          solution: 4.0
 | 
						|
      - ufire_ise.reset:
 | 
						|
 | 
						|
i2c:
 | 
						|
  - id: i2c_ufire_ise
 | 
						|
    scl: ${scl_pin}
 | 
						|
    sda: ${sda_pin}
 | 
						|
 | 
						|
sensor:
 | 
						|
  - platform: template
 | 
						|
    id: test_sensor
 | 
						|
    lambda: "return 21;"
 | 
						|
  - platform: ufire_ise
 | 
						|
    id: ufire_ise_sensor
 | 
						|
    temperature_sensor: test_sensor
 | 
						|
    ph:
 | 
						|
      name: Ufire pH
 |