├── .gitignore ├── LICENSE ├── README.md ├── example-split-hhkb.dxf ├── images ├── adcplot.png ├── dxf-example.png ├── schematic.png └── topre-pad.png └── kicad ├── lib.pretty └── ToprePad.kicad_mod └── lib ├── TopreLib.dcm └── TopreLib.lib /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/README.md -------------------------------------------------------------------------------- /example-split-hhkb.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/example-split-hhkb.dxf -------------------------------------------------------------------------------- /images/adcplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/images/adcplot.png -------------------------------------------------------------------------------- /images/dxf-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/images/dxf-example.png -------------------------------------------------------------------------------- /images/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/images/schematic.png -------------------------------------------------------------------------------- /images/topre-pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/images/topre-pad.png -------------------------------------------------------------------------------- /kicad/lib.pretty/ToprePad.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/kicad/lib.pretty/ToprePad.kicad_mod -------------------------------------------------------------------------------- /kicad/lib/TopreLib.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /kicad/lib/TopreLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsmalley/custom-topre-guide/HEAD/kicad/lib/TopreLib.lib --------------------------------------------------------------------------------