├── .drone.yml ├── .gitignore ├── LICENSE ├── README.md ├── binding.gyp ├── hal_wrapper ├── drivers │ ├── everloop.cpp │ ├── everloop.h │ ├── gpio.cpp │ ├── gpio.h │ ├── info.cpp │ ├── info.h │ └── sensors │ │ ├── humidity.cpp │ │ ├── imu.cpp │ │ ├── pressure.cpp │ │ ├── sensors.h │ │ └── uv.cpp ├── matrix.cpp └── matrix.h ├── index.js ├── lib ├── alsa.js ├── gpio.js └── led.js └── package.json /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/binding.gyp -------------------------------------------------------------------------------- /hal_wrapper/drivers/everloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/everloop.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/everloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/everloop.h -------------------------------------------------------------------------------- /hal_wrapper/drivers/gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/gpio.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/gpio.h -------------------------------------------------------------------------------- /hal_wrapper/drivers/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/info.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/info.h -------------------------------------------------------------------------------- /hal_wrapper/drivers/sensors/humidity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/sensors/humidity.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/sensors/imu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/sensors/imu.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/sensors/pressure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/sensors/pressure.cpp -------------------------------------------------------------------------------- /hal_wrapper/drivers/sensors/sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/sensors/sensors.h -------------------------------------------------------------------------------- /hal_wrapper/drivers/sensors/uv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/drivers/sensors/uv.cpp -------------------------------------------------------------------------------- /hal_wrapper/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/matrix.cpp -------------------------------------------------------------------------------- /hal_wrapper/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/hal_wrapper/matrix.h -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/index.js -------------------------------------------------------------------------------- /lib/alsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/lib/alsa.js -------------------------------------------------------------------------------- /lib/gpio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/lib/gpio.js -------------------------------------------------------------------------------- /lib/led.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/lib/led.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-io/matrix-lite-js/HEAD/package.json --------------------------------------------------------------------------------