├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── SignalRGBPlugin ├── KrakenLCDBridge.js └── KrakenLCDBridge.qml ├── driver.py ├── fonts ├── Rubik-Bold.ttf └── Rubik-LICENSE.md ├── icon.ico ├── images ├── 2023.png ├── 2023elite.png ├── plugin.png └── z3.png ├── pyproject.toml ├── q565.py ├── q565cli.py ├── requirements.txt ├── rotating.py ├── rust └── lib.rs ├── screencap.py ├── signalrgb.py ├── utils.py ├── workers.py └── writeGif.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/README.md -------------------------------------------------------------------------------- /SignalRGBPlugin/KrakenLCDBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/SignalRGBPlugin/KrakenLCDBridge.js -------------------------------------------------------------------------------- /SignalRGBPlugin/KrakenLCDBridge.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/SignalRGBPlugin/KrakenLCDBridge.qml -------------------------------------------------------------------------------- /driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/driver.py -------------------------------------------------------------------------------- /fonts/Rubik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/fonts/Rubik-Bold.ttf -------------------------------------------------------------------------------- /fonts/Rubik-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/fonts/Rubik-LICENSE.md -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/icon.ico -------------------------------------------------------------------------------- /images/2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/images/2023.png -------------------------------------------------------------------------------- /images/2023elite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/images/2023elite.png -------------------------------------------------------------------------------- /images/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/images/plugin.png -------------------------------------------------------------------------------- /images/z3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/images/z3.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/pyproject.toml -------------------------------------------------------------------------------- /q565.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/q565.py -------------------------------------------------------------------------------- /q565cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/q565cli.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/requirements.txt -------------------------------------------------------------------------------- /rotating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/rotating.py -------------------------------------------------------------------------------- /rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/rust/lib.rs -------------------------------------------------------------------------------- /screencap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/screencap.py -------------------------------------------------------------------------------- /signalrgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/signalrgb.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/utils.py -------------------------------------------------------------------------------- /workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/workers.py -------------------------------------------------------------------------------- /writeGif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenmass/AIOLCDUnchained/HEAD/writeGif.py --------------------------------------------------------------------------------