├── .gitignore ├── LICENSE.md ├── README.md ├── cantact-bom.gnumeric ├── cantact.cmp ├── cantact.kicad_pcb ├── cantact.lib ├── cantact.net ├── cantact.pdf ├── cantact.pretty ├── 0015912040.kicad_mod └── DB9MC.kicad_mod ├── cantact.pro ├── cantact.sch └── v1.0 ├── cantact-B_Cu.gbl ├── cantact-B_Mask.gbs ├── cantact-B_SilkS.gbo ├── cantact-Edge_Cuts.gbr ├── cantact-F_Cu.gtl ├── cantact-F_Mask.gts ├── cantact-F_SilkS.gto ├── cantact-bom-v1_0.gnumeric ├── cantact-bom-v1_0.xls └── cantact.drl /.gitignore: -------------------------------------------------------------------------------- 1 | gerbers/ 2 | *.kicad_pcb-bak 3 | *.zip 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/README.md -------------------------------------------------------------------------------- /cantact-bom.gnumeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact-bom.gnumeric -------------------------------------------------------------------------------- /cantact.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.cmp -------------------------------------------------------------------------------- /cantact.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.kicad_pcb -------------------------------------------------------------------------------- /cantact.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.lib -------------------------------------------------------------------------------- /cantact.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.net -------------------------------------------------------------------------------- /cantact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.pdf -------------------------------------------------------------------------------- /cantact.pretty/0015912040.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.pretty/0015912040.kicad_mod -------------------------------------------------------------------------------- /cantact.pretty/DB9MC.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.pretty/DB9MC.kicad_mod -------------------------------------------------------------------------------- /cantact.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.pro -------------------------------------------------------------------------------- /cantact.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/cantact.sch -------------------------------------------------------------------------------- /v1.0/cantact-B_Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-B_Cu.gbl -------------------------------------------------------------------------------- /v1.0/cantact-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-B_Mask.gbs -------------------------------------------------------------------------------- /v1.0/cantact-B_SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-B_SilkS.gbo -------------------------------------------------------------------------------- /v1.0/cantact-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-Edge_Cuts.gbr -------------------------------------------------------------------------------- /v1.0/cantact-F_Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-F_Cu.gtl -------------------------------------------------------------------------------- /v1.0/cantact-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-F_Mask.gts -------------------------------------------------------------------------------- /v1.0/cantact-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-F_SilkS.gto -------------------------------------------------------------------------------- /v1.0/cantact-bom-v1_0.gnumeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-bom-v1_0.gnumeric -------------------------------------------------------------------------------- /v1.0/cantact-bom-v1_0.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact-bom-v1_0.xls -------------------------------------------------------------------------------- /v1.0/cantact.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/cantact-hw/HEAD/v1.0/cantact.drl --------------------------------------------------------------------------------