aboutsummaryrefslogtreecommitdiff
path: root/usb-control/telaviv.py
blob: b7576bd5ca990dad21d8fae3e90023e5347106d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

"""Controls power button and BIOS Disable of the Haikou Baseboard
"""

__copyright__ = 'Copyright (C) 2019 Theobroma Systems Design und Consulting GmbH'
__license__ = 'MIT'

import cp210x_controller

PRODUCT_STRING          = "Tel-Aviv"

if __name__ == '__main__':
    cp210x_controller.cp210x_controller(PRODUCT_STRING)