├── .gitmodules ├── LICENSE ├── README.md ├── doc ├── generate_svg.py ├── pcb_util.py ├── placement_back.png ├── placement_back.svg ├── placement_front.png ├── placement_front.svg └── svg_processor.py ├── fp-lib-table ├── single_esc.sch ├── tinyPEPPER2.cmp ├── tinyPEPPER2.kicad_pcb ├── tinyPEPPER2.pro └── tinyPEPPER2.sch /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/README.md -------------------------------------------------------------------------------- /doc/generate_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/doc/generate_svg.py -------------------------------------------------------------------------------- /doc/pcb_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/doc/pcb_util.py -------------------------------------------------------------------------------- /doc/placement_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/doc/placement_back.png -------------------------------------------------------------------------------- /doc/placement_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/doc/placement_back.svg -------------------------------------------------------------------------------- /doc/placement_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/doc/placement_front.png -------------------------------------------------------------------------------- /doc/placement_front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/doc/placement_front.svg -------------------------------------------------------------------------------- /doc/svg_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/doc/svg_processor.py -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/fp-lib-table -------------------------------------------------------------------------------- /single_esc.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/single_esc.sch -------------------------------------------------------------------------------- /tinyPEPPER2.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/tinyPEPPER2.cmp -------------------------------------------------------------------------------- /tinyPEPPER2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/tinyPEPPER2.kicad_pcb -------------------------------------------------------------------------------- /tinyPEPPER2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/tinyPEPPER2.pro -------------------------------------------------------------------------------- /tinyPEPPER2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishpepper/tinyPEPPER2/HEAD/tinyPEPPER2.sch --------------------------------------------------------------------------------