cleanup in Unit class

This commit is contained in:
2017-12-27 18:23:09 +01:00
parent c6c847136c
commit 3fea95affb
3 changed files with 12 additions and 8 deletions
+6 -3
View File
@@ -1,11 +1,14 @@
from gex import Client
class Unit:
def __init__(self, client :Client, name :str, type :str):
def __init__(self, client :Client, name :str):
self.client = client
self.unit_name = name
self.unit_type = type
self.callsign = client.get_callsign(name, type)
self.unit_type = self._type()
self.callsign = client.get_callsign(name, self.unit_type)
def _type(self):
raise NotImplementedError("Missing _type() in Unit class \"%s\"" % self.__class__.__name__)
def send(self, cmd, pld=None, id=None):
""" Send a command to the unit """
+2 -2
View File
@@ -1,8 +1,8 @@
import gex
class Pin(gex.Unit):
def __init__(self, client, name):
super().__init__(client, name, 'PIN')
def _type(self):
return 'PIN'
def off(self):
self.send(0x00)
+4 -3
View File
@@ -4,8 +4,9 @@ import gex
client = gex.Client()
s = client.ini_read()
client.ini_write(s)
if False:
s = client.ini_read()
client.ini_write(s)
if False:
buf = client.bulk_read(None, gex.MSG_INI_READ)
@@ -13,7 +14,7 @@ if False:
client.bulk_write(None, gex.MSG_INI_WRITE, buf)
if False:
if True:
led = gex.Pin(client, 'LED')
for i in range(0,10):