├── .gitattributes ├── .gitignore ├── 001 ├── agb.OutJob ├── gbpp.PrjPcb ├── gbpp.pdf ├── main.PcbDoc └── main.SchDoc ├── BOM.csv ├── LICENSE ├── README.md ├── bom.xlsx ├── complete.jpg ├── complete2.jpg ├── gbpp-001_rev0_20210808_gerber.zip ├── pcb.jpg ├── pcb_3d_1.png └── pcb_3d_2.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/.gitignore -------------------------------------------------------------------------------- /001/agb.OutJob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/001/agb.OutJob -------------------------------------------------------------------------------- /001/gbpp.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/001/gbpp.PrjPcb -------------------------------------------------------------------------------- /001/gbpp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/001/gbpp.pdf -------------------------------------------------------------------------------- /001/main.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/001/main.PcbDoc -------------------------------------------------------------------------------- /001/main.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/001/main.SchDoc -------------------------------------------------------------------------------- /BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/BOM.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/README.md -------------------------------------------------------------------------------- /bom.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/bom.xlsx -------------------------------------------------------------------------------- /complete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/complete.jpg -------------------------------------------------------------------------------- /complete2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/complete2.jpg -------------------------------------------------------------------------------- /gbpp-001_rev0_20210808_gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/gbpp-001_rev0_20210808_gerber.zip -------------------------------------------------------------------------------- /pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/pcb.jpg -------------------------------------------------------------------------------- /pcb_3d_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/pcb_3d_1.png -------------------------------------------------------------------------------- /pcb_3d_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshallh/gbpp/HEAD/pcb_3d_2.png --------------------------------------------------------------------------------