#!/usr/bin/env python3 """ Controls power button and BIOS-disable signal on the CP2102 Mini-EVK board connected to an arbitray board. """ __copyright__ = 'Copyright (C) 2019 Theobroma Systems Design und Consulting GmbH' __license__ = 'MIT' import cp2102_simple PRODUCT_STRING = "CP2102 Mini-EVK" if __name__ == '__main__': cp2102_simple.main(PRODUCT_STRING)