From 722120ee5f65da5f31f0f3278db49f47c1507d54 Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Thu, 9 Aug 2018 16:58:46 -0500 Subject: [PATCH] Adds correct version number --- python-driver/prostarsolar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-driver/prostarsolar.py b/python-driver/prostarsolar.py index 1b0e4cd..371c2fd 100644 --- a/python-driver/prostarsolar.py +++ b/python-driver/prostarsolar.py @@ -27,7 +27,7 @@ class start(threading.Thread, deviceBase): deviceBase.__init__(self, name=name, number=number, mac=mac, Q=Q, mcu=mcu, companyId=companyId, offset=offset, mqtt=mqtt, Nodes=Nodes) self.daemon = True - self.version = "1" + self.version = "3" self.finished = threading.Event() self.forceSend = False threading.Thread.start(self)