homeassistant-config/config_creation/main.py

149 lines
7.1 KiB
Python
Raw Normal View History

import os
import argparse
2019-06-02 14:34:08 +02:00
from util import DeviceInfo, add_to_group
from ruamel.yaml import YAML
import knx_conf as knx
script_path = os.path.dirname(os.path.realpath(__file__))
2019-06-02 14:34:08 +02:00
yaml = YAML()
def add_knx_devices(devices, groups):
lights = [
# Dimmers
2019-06-02 14:34:08 +02:00
DeviceInfo('Wohnzimmerlampe', 'Wohnzimmer Deckenlampe', 'living_area'),
DeviceInfo('EsszimmerlampeWest', 'Esszimmer Deckenlampe West', 'living_area'),
DeviceInfo('EsszimmerlampeMitte', 'Esszimmer Deckenlampe Mitte', 'living_area'),
DeviceInfo("EsszimmerWandlampe", 'Esszimmer Schrankleuchte', 'living_area'),
DeviceInfo("Küchenlampe", "Küche Deckenlampe", 'living_area'),
DeviceInfo("AussenleuchteUntenSO", "Aussen Terassenlicht", 'outside'),
DeviceInfo("Gang", "Gang Licht", 'hallway'),
DeviceInfo("Bad", "Bad Licht", 'bathroom'),
DeviceInfo("GangWindfang", "Gang Einganglicht", 'hallway'),
DeviceInfo("LichtWaschküche", "Waschküche Licht", 'hallway'),
# Normal lights
2019-06-02 14:34:08 +02:00
DeviceInfo('AussenleuchteHaustüren', 'Haustür Licht', 'outside'),
DeviceInfo('AussenleuchteObenNW', 'Haustür Licht NW', 'outside'),
DeviceInfo('TreppenhausLicht', "Treppenhaus Licht", 'first_floor'),
DeviceInfo('WCLicht', "WC Licht", 'other'),
DeviceInfo('LampeVorratsraum', "Vorratsraum Licht", 'other'),
]
shutters = [
2019-06-02 14:34:08 +02:00
DeviceInfo('Wohnzimmer Fenster Rollo', 'Wohnzimmer Fenster Rollo', 'living_area'),
DeviceInfo('Terassentür Rollo', 'Wohnzimmer Terrassentür Rollo', 'living_area'),
DeviceInfo('Küchenfenster Rollo', 'Küche Fenster Rollo', 'living_area'),
DeviceInfo('Esszimmerfenster Rollo', 'Esszimmer Fenster Rollo', 'living_area'),
]
switches = [
# Bells
2019-06-02 14:34:08 +02:00
DeviceInfo("KlingelOben", "Klingel Oben", 'first_floor'),
DeviceInfo("Klingel Innen", "Klingel Innentür", 'other'),
DeviceInfo("Klingel Aussen", "Klingen Außentür", 'other'),
# Bewegungsmelder LEDs
2019-06-02 14:34:08 +02:00
DeviceInfo("BewegungsmelderMitte LED", "Bewegungsmelder Mitte LED", 'hallway'),
DeviceInfo("BewegungsmelderWest LED", "Bewegungsmelder West LED", 'hallway'),
DeviceInfo("BewegungsmelderOst LED", "Bewegungsmelder Ost LED", 'hallway'),
]
scene_button_names = ['ObenLinks', 'ObenRechts', 'MitteLinks', 'MitteRechts', 'UntenLinks', 'UntenRechts']
scene_button_names = [(i, e) for i, e in enumerate(scene_button_names)]
2019-06-11 19:28:39 +02:00
switches += [DeviceInfo(f"SzeneEsszimmer{n}", f"Esszimmer Szene {i}") for i, n in scene_button_names]
switches += [DeviceInfo(f"SzeneWohnzimmer{n}", f"Wohnzimmer Szene {i}") for i, n in scene_button_names]
switches += [DeviceInfo(f"SzeneEingang{n}", f"Eingang Szene {i}") for i, n in scene_button_names[2:]]
switches += [DeviceInfo(f"SzeneTerrassentuer{n}", f"Wohnzimmer Terrassentür Szene {i}")
for i, n in scene_button_names[2: 4]]
power_plugs = [
# Vorratsraum
2019-06-02 14:34:08 +02:00
DeviceInfo("VorratsraumSteckdose1", "Vorratsraum Steckdose", 'other'),
DeviceInfo("VorratsraumSteckdose2", "Vorratsraum Steckdose", 'other'),
DeviceInfo("VorratsraumSteckdose3", "Gefrierschrank", 'other'),
# Waschraum
2019-06-02 14:34:08 +02:00
DeviceInfo("Trockner", "Trockner", 'other'),
DeviceInfo("Waschmaschine", "Waschmaschine", 'other'),
# Küche
DeviceInfo("KücheSteckdose1", "Küche Steckdose 1"),
DeviceInfo("KücheSteckdose2", "Küche Steckdose 2"),
2019-06-02 14:34:08 +02:00
DeviceInfo("Spülmaschine", "Spülmaschine", 'living_area'),
DeviceInfo("Backofen", "Backofen", 'living_area'),
DeviceInfo("HerdP1", "Herd Phase 1", 'living_area'),
DeviceInfo("HerdP2", "Herd Phase 2", 'living_area'),
DeviceInfo("HerdP3", "Herd Phase 3", 'living_area'),
# Rest
2019-06-02 14:34:08 +02:00
DeviceInfo("ArbeitszimmerSteckdose", "Arbeitszimmer Steckdose", 'office_martin'),
DeviceInfo("WohnzimmerSteckdose1", "Wohnzimmer Steckdose 1", 'living_area'),
DeviceInfo("WohnzimmerSteckdose2", "Wohnzimmer Steckdose 2", 'living_area'),
]
imported_csv = knx.import_ets5_csv_file(os.path.join(script_path, 'knx_data/export_project1.csv'))
imported_csv.update(knx.import_ets5_csv_file(os.path.join(script_path, 'knx_data/export_project2.csv')))
knx.extent(devices, knx.create_lights(lights, imported_csv))
knx.extent(devices, knx.create_shutters(shutters, imported_csv))
knx.extent(devices, knx.create_switches(switches, imported_csv))
knx.extent(devices, knx.create_power_plug(power_plugs, imported_csv))
2019-06-02 14:34:08 +02:00
2019-06-11 19:28:39 +02:00
for device_type, devices in [('light', lights), ('cover', shutters), ('switch', switches)]:
for device in devices:
add_to_group(groups, device.groups, device.display_name, device_type)
2019-06-02 14:34:08 +02:00
def add_fhem_devices(devices, groups):
fhem_yaml_path = os.path.join(script_path, 'fhem.yaml')
fhem_yaml = yaml.load(open(fhem_yaml_path))
2019-06-02 14:34:08 +02:00
for device_type, device_list in fhem_yaml.items():
if device_type not in devices:
devices[device_type] = []
for device in device_list:
device['platform'] = 'fhem'
if 'groups' in device:
2019-06-11 19:28:39 +02:00
add_to_group(groups, device['groups'], device['name'], device_type)
2019-06-02 14:34:08 +02:00
del device['groups']
devices[device_type].append(device)
2019-06-21 01:58:58 +02:00
def add_light_groups(groups):
light_groups = {
f"light_{group_id}": {
'name': content['name'] + " Lichter",
'entities': [e for e in content['entities'] if e.startswith('light.')],
}
for group_id, content in groups.items() if 'name' in content
}
groups.update(light_groups)
def create_config(target_directory, development=False):
groups_yaml_path = os.path.join(script_path, 'groups.yaml')
manual_config_path = os.path.join(script_path, 'manual_config.yaml')
group_dict = yaml.load(open(groups_yaml_path))
2019-06-02 14:34:08 +02:00
all_devices = {}
add_knx_devices(all_devices, group_dict)
add_fhem_devices(all_devices, group_dict)
with open(os.path.join(target_directory, 'configuration.yaml'), 'w') as output:
output.write("# Dont' edit manually! this is generated!\n\n")
output.write(open(manual_config_path, 'r').read())
2019-06-02 14:34:08 +02:00
yaml.dump(all_devices, output)
2019-06-21 01:58:58 +02:00
add_light_groups(group_dict)
with open(os.path.join(target_directory, 'groups.yaml'), 'w') as output:
output.write("# Dont' edit manually! this is generated!\n\n")
yaml.dump(group_dict, output)
with open(os.path.join(target_directory, 'secrets.yaml'), 'w') as output:
output.write("# Dont' edit manually! this is generated!\n\n")
output.write(open(os.path.join(script_path, 'secrets.yaml'), 'r').read())
output.write("\n\n")
additional_file = 'secrets_development.yaml' if development else 'secrets_deploy.yaml'
output.write(open(os.path.join(script_path, additional_file), 'r').read())
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument("-d", "--dev", help="create config file for development", action="store_true")
args = parser.parse_args()
create_config(target_directory=os.getcwd(), development=args.dev)