├── .gitignore ├── LICENSE ├── README.md ├── examples ├── Dockerfile ├── compass.py ├── gpio_blinking_led.py ├── gpio_dimming_led.py ├── led_clear.py ├── led_flashlight.py ├── led_multi_image.py ├── led_rotate.py ├── led_snakes.py ├── mcu_fpga_info.py ├── read_humidity.py ├── read_imu.py ├── read_pressure.py ├── read_uv.py └── requirements.txt ├── matrixio_hal ├── GPIO.py ├── __init__.py ├── bus.py ├── everloop.py ├── matrixio_cpp_hal.pyx └── sensors.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/README.md -------------------------------------------------------------------------------- /examples/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/Dockerfile -------------------------------------------------------------------------------- /examples/compass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/compass.py -------------------------------------------------------------------------------- /examples/gpio_blinking_led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/gpio_blinking_led.py -------------------------------------------------------------------------------- /examples/gpio_dimming_led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/gpio_dimming_led.py -------------------------------------------------------------------------------- /examples/led_clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/led_clear.py -------------------------------------------------------------------------------- /examples/led_flashlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/led_flashlight.py -------------------------------------------------------------------------------- /examples/led_multi_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/led_multi_image.py -------------------------------------------------------------------------------- /examples/led_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/led_rotate.py -------------------------------------------------------------------------------- /examples/led_snakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/led_snakes.py -------------------------------------------------------------------------------- /examples/mcu_fpga_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/mcu_fpga_info.py -------------------------------------------------------------------------------- /examples/read_humidity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/read_humidity.py -------------------------------------------------------------------------------- /examples/read_imu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/read_imu.py -------------------------------------------------------------------------------- /examples/read_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/read_pressure.py -------------------------------------------------------------------------------- /examples/read_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/examples/read_uv.py -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- 1 | python-matrixio-hal 2 | -------------------------------------------------------------------------------- /matrixio_hal/GPIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/matrixio_hal/GPIO.py -------------------------------------------------------------------------------- /matrixio_hal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/matrixio_hal/__init__.py -------------------------------------------------------------------------------- /matrixio_hal/bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/matrixio_hal/bus.py -------------------------------------------------------------------------------- /matrixio_hal/everloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/matrixio_hal/everloop.py -------------------------------------------------------------------------------- /matrixio_hal/matrixio_cpp_hal.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/matrixio_hal/matrixio_cpp_hal.pyx -------------------------------------------------------------------------------- /matrixio_hal/sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/matrixio_hal/sensors.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmetz/python-matrixio-hal/HEAD/setup.py --------------------------------------------------------------------------------