├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── docker ├── README.md ├── armv6l.dockerfile ├── armv7l.dockerfile └── packageCompile.sh ├── hal_wrapper ├── drivers │ ├── everloop.cpp │ ├── everloop.h │ ├── gpio.cpp │ ├── gpio.h │ ├── info.cpp │ ├── info.h │ ├── sensors.cpp │ └── sensors.h ├── matrix.cpp └── matrix.h ├── matrix_lite ├── __init__.py ├── colour.py ├── led.py └── sensors.py └── setup.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/README.md -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/armv6l.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/docker/armv6l.dockerfile -------------------------------------------------------------------------------- /docker/armv7l.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/docker/armv7l.dockerfile -------------------------------------------------------------------------------- /docker/packageCompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/docker/packageCompile.sh -------------------------------------------------------------------------------- /hal_wrapper/drivers/everloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/drivers/everloop.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/everloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/drivers/everloop.h -------------------------------------------------------------------------------- /hal_wrapper/drivers/gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/drivers/gpio.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/drivers/gpio.h -------------------------------------------------------------------------------- /hal_wrapper/drivers/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/drivers/info.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/drivers/info.h -------------------------------------------------------------------------------- /hal_wrapper/drivers/sensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/drivers/sensors.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/drivers/sensors.h -------------------------------------------------------------------------------- /hal_wrapper/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/matrix.cpp -------------------------------------------------------------------------------- /hal_wrapper/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/hal_wrapper/matrix.h -------------------------------------------------------------------------------- /matrix_lite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/matrix_lite/__init__.py -------------------------------------------------------------------------------- /matrix_lite/colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/matrix_lite/colour.py -------------------------------------------------------------------------------- /matrix_lite/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/matrix_lite/led.py -------------------------------------------------------------------------------- /matrix_lite/sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/matrix_lite/sensors.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-py/HEAD/setup.py --------------------------------------------------------------------------------