CHIP_IO

A CHIP IO library for Python: IO+PWM+SPWM+ADC+Utilities

View the Project on GitHub

CHIP_IO.Utilities

Import the Utilities module as follows

  import CHIP_IO.Utilities as UT

toggle_debug()

Enable/Disable the Debug

unexport_all()

Function to force clean up all exported GPIO on the system

is_chip_pro()

Function to report to the calling script if the SBC is a CHIP or a CHIP Pro

enable_1v8_pin()

Enable the 1.8V pin on the CHIP as it is disabled by default. Also sets the output to 1.8V. This only works on the CHIP.

set_1v8_pin_voltage(voltage)

Change the voltage of the 1.8V Pin on the CHIP. This only works on the CHIP.

get_1v8_pin_voltage()

Get the current voltage of the 1.8V Pin on the CHIP. This only works on the CHIP.

disable_1v8_pin()

Disables the 1.8V pin on the CHIP. This only works on the CHIP.

home