├── .gitignore ├── Gerber_PCB ├── BOM.csv ├── Gerber_BoardOutline.GKO ├── Gerber_Drill_PTH.DRL ├── Gerber_PCB.zip ├── Gerber_TopLayer.GTL ├── Gerber_TopPasteMaskLayer.GTP ├── Gerber_TopSilkLayer.GTO └── Gerber_TopSolderMaskLayer.GTS ├── Manual EN.pdf ├── Manual UA.pdf ├── README.md ├── circuit.png ├── firmwares ├── acc timer, cnl │ ├── firmware.hex │ ├── img.jpg │ └── img2.png ├── acc, cnl │ ├── firmware.hex │ └── img.png ├── acc, phone │ ├── firmware.hex │ └── img.jpg ├── acc, view │ ├── firmware.hex │ └── img.jpg ├── no acc, cnl │ ├── firmware.hex │ └── img.jpg ├── no acc, phone │ ├── firmware.hex │ └── img.jpg └── no acc, view │ ├── firmware.hex │ └── img.jpg ├── pcb.png ├── platformio.ini └── src ├── acc-handle.h ├── lin-bus-mqb.h ├── lin-bus-pq.h ├── lin-bus.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .idea 3 | .vscode -------------------------------------------------------------------------------- /Gerber_PCB/BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Gerber_PCB/BOM.csv -------------------------------------------------------------------------------- /Gerber_PCB/Gerber_BoardOutline.GKO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Gerber_PCB/Gerber_BoardOutline.GKO -------------------------------------------------------------------------------- /Gerber_PCB/Gerber_Drill_PTH.DRL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Gerber_PCB/Gerber_Drill_PTH.DRL -------------------------------------------------------------------------------- /Gerber_PCB/Gerber_PCB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Gerber_PCB/Gerber_PCB.zip -------------------------------------------------------------------------------- /Gerber_PCB/Gerber_TopLayer.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Gerber_PCB/Gerber_TopLayer.GTL -------------------------------------------------------------------------------- /Gerber_PCB/Gerber_TopPasteMaskLayer.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Gerber_PCB/Gerber_TopPasteMaskLayer.GTP -------------------------------------------------------------------------------- /Gerber_PCB/Gerber_TopSilkLayer.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Gerber_PCB/Gerber_TopSilkLayer.GTO -------------------------------------------------------------------------------- /Gerber_PCB/Gerber_TopSolderMaskLayer.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Gerber_PCB/Gerber_TopSolderMaskLayer.GTS -------------------------------------------------------------------------------- /Manual EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Manual EN.pdf -------------------------------------------------------------------------------- /Manual UA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/Manual UA.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/README.md -------------------------------------------------------------------------------- /circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/circuit.png -------------------------------------------------------------------------------- /firmwares/acc timer, cnl/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc timer, cnl/firmware.hex -------------------------------------------------------------------------------- /firmwares/acc timer, cnl/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc timer, cnl/img.jpg -------------------------------------------------------------------------------- /firmwares/acc timer, cnl/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc timer, cnl/img2.png -------------------------------------------------------------------------------- /firmwares/acc, cnl/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc, cnl/firmware.hex -------------------------------------------------------------------------------- /firmwares/acc, cnl/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc, cnl/img.png -------------------------------------------------------------------------------- /firmwares/acc, phone/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc, phone/firmware.hex -------------------------------------------------------------------------------- /firmwares/acc, phone/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc, phone/img.jpg -------------------------------------------------------------------------------- /firmwares/acc, view/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc, view/firmware.hex -------------------------------------------------------------------------------- /firmwares/acc, view/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/acc, view/img.jpg -------------------------------------------------------------------------------- /firmwares/no acc, cnl/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/no acc, cnl/firmware.hex -------------------------------------------------------------------------------- /firmwares/no acc, cnl/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/no acc, cnl/img.jpg -------------------------------------------------------------------------------- /firmwares/no acc, phone/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/no acc, phone/firmware.hex -------------------------------------------------------------------------------- /firmwares/no acc, phone/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/no acc, phone/img.jpg -------------------------------------------------------------------------------- /firmwares/no acc, view/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/no acc, view/firmware.hex -------------------------------------------------------------------------------- /firmwares/no acc, view/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/firmwares/no acc, view/img.jpg -------------------------------------------------------------------------------- /pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/pcb.png -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/acc-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/src/acc-handle.h -------------------------------------------------------------------------------- /src/lin-bus-mqb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/src/lin-bus-mqb.h -------------------------------------------------------------------------------- /src/lin-bus-pq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/src/lin-bus-pq.h -------------------------------------------------------------------------------- /src/lin-bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/src/lin-bus.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-ivanyshyn/mqb-steering-wheel-adapter/HEAD/src/main.cpp --------------------------------------------------------------------------------