Refactored to new naming scheme. Implemented KISS interface.

This commit is contained in:
Mark Qvist
2018-04-04 14:14:22 +02:00
parent cfb1ed84d2
commit 0196c94672
16 changed files with 476 additions and 205 deletions
+9
View File
@@ -0,0 +1,9 @@
class Interface:
IN = False
OUT = False
FWD = False
RPT = False
name = None
def __init__(self):
pass