├── .gitmodules ├── .idea └── .gitignore ├── LICENSE ├── README.md ├── docs └── images │ ├── efficiency_graph.png │ ├── promo_back.jpg │ ├── promo_front.jpg │ ├── promo_in_use.jpg │ ├── solder_bridge_back.jpg │ ├── solder_bridge_front.jpg │ └── voltage_regulation.png ├── hardware ├── bappr_bom.csv ├── bappr_easyeda_file_source.json ├── bappr_gerber.zip ├── bappr_pick_and_place.csv └── bappr_schematic.pdf └── scripts └── efficiency_test.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/efficiency_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/docs/images/efficiency_graph.png -------------------------------------------------------------------------------- /docs/images/promo_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/docs/images/promo_back.jpg -------------------------------------------------------------------------------- /docs/images/promo_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/docs/images/promo_front.jpg -------------------------------------------------------------------------------- /docs/images/promo_in_use.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/docs/images/promo_in_use.jpg -------------------------------------------------------------------------------- /docs/images/solder_bridge_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/docs/images/solder_bridge_back.jpg -------------------------------------------------------------------------------- /docs/images/solder_bridge_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/docs/images/solder_bridge_front.jpg -------------------------------------------------------------------------------- /docs/images/voltage_regulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/docs/images/voltage_regulation.png -------------------------------------------------------------------------------- /hardware/bappr_bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/hardware/bappr_bom.csv -------------------------------------------------------------------------------- /hardware/bappr_easyeda_file_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/hardware/bappr_easyeda_file_source.json -------------------------------------------------------------------------------- /hardware/bappr_gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/hardware/bappr_gerber.zip -------------------------------------------------------------------------------- /hardware/bappr_pick_and_place.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/hardware/bappr_pick_and_place.csv -------------------------------------------------------------------------------- /hardware/bappr_schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/hardware/bappr_schematic.pdf -------------------------------------------------------------------------------- /scripts/efficiency_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMariday/bappr/HEAD/scripts/efficiency_test.py --------------------------------------------------------------------------------