aboutsummaryrefslogtreecommitdiff
path: root/usb-control/haikou.py
diff options
context:
space:
mode:
Diffstat (limited to 'usb-control/haikou.py')
-rwxr-xr-xusb-control/haikou.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/usb-control/haikou.py b/usb-control/haikou.py
index ef9f401..a91ca18 100755
--- a/usb-control/haikou.py
+++ b/usb-control/haikou.py
@@ -1,15 +1,17 @@
#!/usr/bin/env python
-"""Controls power button and BIOS Disable of the Haikou Baseboard
+"""
+Controls power button and BIOS-disable signal on the
+Haikou baseboard.
"""
__copyright__ = 'Copyright (C) 2019 Theobroma Systems Design und Consulting GmbH'
__license__ = 'MIT'
-import cp210x_controller
+import cp2102_haikou
-PRODUCT_STRING = "Haikou Baseboard"
+PRODUCT_STRING = "Haikou Baseboard"
if __name__ == '__main__':
- cp210x_controller.cp210x_controller(PRODUCT_STRING)
+ cp2102_haikou.main(PRODUCT_STRING)