├── .clangd ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── i2c.cpp ├── i2c.h ├── ugreen_leds.cpp ├── ugreen_leds.h ├── ugreen_leds_cli.cpp └── update-leds.sh /.clangd: -------------------------------------------------------------------------------- 1 | CompileFlags: 2 | Add: [-std=c++17] 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/README.md -------------------------------------------------------------------------------- /i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/i2c.cpp -------------------------------------------------------------------------------- /i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/i2c.h -------------------------------------------------------------------------------- /ugreen_leds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/ugreen_leds.cpp -------------------------------------------------------------------------------- /ugreen_leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/ugreen_leds.h -------------------------------------------------------------------------------- /ugreen_leds_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/ugreen_leds_cli.cpp -------------------------------------------------------------------------------- /update-leds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyergru/ugreen_dxp8800_leds_controller/HEAD/update-leds.sh --------------------------------------------------------------------------------