From d2171275e3f971dadf7c35a3d1f3afa3569753c6 Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 9 Apr 2021 11:27:32 +0200 Subject: [PATCH] - start communication of device --- Mystify/MainModel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mystify/MainModel.cs b/Mystify/MainModel.cs index 7f44725..65711be 100644 --- a/Mystify/MainModel.cs +++ b/Mystify/MainModel.cs @@ -17,6 +17,8 @@ namespace Mystify { _device = deviceFactory.Create(); _controllableCollector = controllableCollectorFactory.Create(); + + _device.StartCommunication(); } public List Channels => _device.Channels;