Increments to version 12

This commit is contained in:
Patrick McDonagh
2018-05-15 15:23:34 -05:00
parent 0249503d6c
commit ca1aa5e0f6
4 changed files with 8 additions and 3 deletions

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"python.pythonPath": "/usr/local/bin/python"
}

View File

@@ -5,7 +5,7 @@
"file1": "flow-monitor.py" "file1": "flow-monitor.py"
}, },
"deviceName": "flowmonitor", "deviceName": "flowmonitor",
"driverId": "0180", "driverId": "0140",
"releaseVersion": "11", "releaseVersion": "12",
"driverFileName": "flow-monitor.py" "driverFileName": "flow-monitor.py"
} }

2
device_base.py Normal file
View File

@@ -0,0 +1,2 @@
class deviceBase(object):
pass

View File

@@ -172,7 +172,7 @@ class start(threading.Thread, deviceBase):
self.GPM_IGNORE_LIMIT = 1.0 self.GPM_IGNORE_LIMIT = 1.0
self.daemon = True self.daemon = True
self.version = "11" self.version = "12"
self.finished = threading.Event() self.finished = threading.Event()
threading.Thread.start(self) threading.Thread.start(self)