42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| homeassistant:
 | |
|   # Name of the location where Home Assistant is running
 | |
|   name: Hogar
 | |
|   # Location required to calculate the time the sun rises and sets
 | |
|   latitude: !secret hogar_latitud
 | |
|   longitude: !secret hogar_longitud
 | |
|   # Impacts weather/sunrise data (altitude above sea level in meters)
 | |
|   elevation: !secret hogar_elevacion
 | |
|   # metric for Metric, imperial for Imperial
 | |
|   unit_system: metric
 | |
|   # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
 | |
|   time_zone: !secret hogar_zonahoraria
 | |
|   # Customization file
 | |
|   customize: !include customize.yaml
 | |
|   packages: !include_dir_named packages
 | |
| 
 | |
| group: !include groups.yaml
 | |
| automation: !include_dir_merge_list automation
 | |
| script: !include scripts.yaml
 | |
| 
 | |
| hacs:
 | |
|   token: 5bb7e3904cd0c2928a78ac11c92ff6ac00c5d107
 | |
| 
 | |
| plant:
 | |
|   salon:
 | |
|     sensors:
 | |
|       moisture: sensor.plantas_salon_humedad
 | |
|       temperature: sensor.plantas_salon_temperatura
 | |
|       conductivity: sensor.plantas_salon_fertilizante
 | |
|       brightness: sensor.plantas_salon_luz
 | |
|     min_moisture: 15
 | |
|     max_moisture: 60
 | |
|     min_conductivity: 450
 | |
|     max_conductivity: 2000
 | |
|     min_temperature: 10
 | |
|     max_temperature: 32
 | |
|     min_brightness: 1500
 | |
|     max_brightness: 6000
 | |
| 
 | |
| lovelace:
 | |
|   mode: yaml
 | 
