summaryrefslogtreecommitdiff
path: root/examples/hwapi/hwconfig_console.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hwapi/hwconfig_console.py')
-rw-r--r--examples/hwapi/hwconfig_console.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/hwapi/hwconfig_console.py b/examples/hwapi/hwconfig_console.py
deleted file mode 100644
index bbcc0e816..000000000
--- a/examples/hwapi/hwconfig_console.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# This is hwconfig for "emulation" for cases when there's no real hardware.
-# It just prints information to console.
-class LEDClass:
-
- def __init__(self, id):
- self.id = "LED(%d):" % id
-
- def value(self, v):
- print(self.id, v)
-
- def on(self):
- self.value(1)
-
- def off(self):
- self.value(0)
-
-
-LED = LEDClass(1)
-LED2 = LEDClass(12)