├── .gitignore ├── CANpi-cache.lib ├── CANpi.cmp ├── CANpi.kicad_pcb ├── CANpi.pro ├── CANpi.sch ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.000 2 | *bak 3 | *.net 4 | *~ 5 | *.pdf 6 | gerber/ 7 | -------------------------------------------------------------------------------- /CANpi-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasmusB/CANPi/HEAD/CANpi-cache.lib -------------------------------------------------------------------------------- /CANpi.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasmusB/CANPi/HEAD/CANpi.cmp -------------------------------------------------------------------------------- /CANpi.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasmusB/CANPi/HEAD/CANpi.kicad_pcb -------------------------------------------------------------------------------- /CANpi.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasmusB/CANPi/HEAD/CANpi.pro -------------------------------------------------------------------------------- /CANpi.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasmusB/CANPi/HEAD/CANpi.sch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasmusB/CANPi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasmusB/CANPi/HEAD/README.md --------------------------------------------------------------------------------