mirror of
https://github.com/home-assistant/core.git
synced 2026-02-15 07:36:16 +00:00
11 lines
230 B
Python
11 lines
230 B
Python
from app.HomeAssistant import HomeAssistant
|
|
|
|
from app.observer.TomatoDeviceScanner import TomatoDeviceScanner
|
|
|
|
ha = HomeAssistant()
|
|
|
|
ha.setup_device_tracker(TomatoDeviceScanner(ha.get_config()))
|
|
ha.setup_hue_trigger()
|
|
|
|
ha.start()
|