├── KS ├── KlipperScreen.conf ├── acepro.py └── readme.md ├── LICENSE ├── LICENSE.md ├── PROTOCOL.md ├── README.md ├── ace.cfg ├── extras ├── __pycache__ │ └── ace.cpython-311.pyc └── ace.py ├── img ├── connector.jpg └── connector.png ├── requirements.txt └── saved_variables.cfg /KS/KlipperScreen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/KS/KlipperScreen.conf -------------------------------------------------------------------------------- /KS/acepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/KS/acepro.py -------------------------------------------------------------------------------- /KS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/KS/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PROTOCOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/PROTOCOL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/README.md -------------------------------------------------------------------------------- /ace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/ace.cfg -------------------------------------------------------------------------------- /extras/__pycache__/ace.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/extras/__pycache__/ace.cpython-311.pyc -------------------------------------------------------------------------------- /extras/ace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/extras/ace.py -------------------------------------------------------------------------------- /img/connector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/img/connector.jpg -------------------------------------------------------------------------------- /img/connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/img/connector.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyserial==3.5 2 | pyjson==1.4.1 -------------------------------------------------------------------------------- /saved_variables.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szkrisz/ACEPROSV08/HEAD/saved_variables.cfg --------------------------------------------------------------------------------