Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
29 lines (21 sloc)
949 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os, sys, inspect | |
import time | |
import logging | |
lib_folder = os.path.join(os.path.split(inspect.getfile( inspect.currentframe() ))[0], '..') | |
lib_load = os.path.realpath(os.path.abspath(lib_folder)) | |
if lib_load not in sys.path: | |
sys.path.insert(0, lib_load) | |
FORMAT = '%(levelname)-8s %(message)s' | |
logging.basicConfig(format=FORMAT) | |
logger = logging.getLogger('USB Hub Status') | |
logger.setLevel(logging.DEBUG) | |
import capablerobot_usbhub | |
hub = capablerobot_usbhub.USBHub() | |
hub.i2c.enable() | |
logger.info("Port Connections : {}".format(hub.connections())) | |
logger.info("Port Speeds : {}".format(hub.speeds())) | |
logger.info("Port Currents (mA)") | |
logger.info(" Measured : " + " ".join([("%.2f" % v).rjust(7) for v in hub.power.measurements()])) | |
logger.info(" Limit : {}".format(hub.power.limits())) | |
logger.info(" Alerts : {}".format(" ".join(hub.power.alerts()))) | |
logger.info(" State : {}".format(hub.power.state())) |