├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── aball_v15.f3d ├── case ├── laser_cut_plate │ ├── bottom.dxf │ ├── middle.dxf │ └── top.dxf ├── laser_cut_stacked │ ├── bottom.dxf │ ├── middle_a.dxf │ ├── middle_b.dxf │ ├── top_a.dxf │ ├── top_b.dxf │ └── top_c.dxf └── printed │ ├── bottom.stl │ ├── middle_top_a.stl │ ├── top_b.stl │ └── top_c.stl ├── docs ├── bg_case_acrylic.md ├── bg_case_plate.md ├── bg_case_printed.md ├── bg_electronics.md ├── bg_getting_started.md ├── bg_structure.md └── bom.md ├── handwired_aball_default.hex ├── photos ├── aball_min.jpeg ├── build_guide │ ├── aball_build_guide_1.jpeg │ ├── aball_build_guide_10.jpeg │ ├── aball_build_guide_11.jpeg │ ├── aball_build_guide_12.jpeg │ ├── aball_build_guide_13.jpeg │ ├── aball_build_guide_14.jpeg │ ├── aball_build_guide_15.jpeg │ ├── aball_build_guide_16.jpeg │ ├── aball_build_guide_17.jpeg │ ├── aball_build_guide_18.jpeg │ ├── aball_build_guide_19.jpeg │ ├── aball_build_guide_2.jpeg │ ├── aball_build_guide_20.jpeg │ ├── aball_build_guide_21.jpeg │ ├── aball_build_guide_22.jpeg │ ├── aball_build_guide_23.jpeg │ ├── aball_build_guide_24.jpeg │ ├── aball_build_guide_25.jpeg │ ├── aball_build_guide_3.jpeg │ ├── aball_build_guide_4.jpeg │ ├── aball_build_guide_5.jpeg │ ├── aball_build_guide_6.jpeg │ ├── aball_build_guide_7.jpeg │ ├── aball_build_guide_8.jpeg │ └── aball_build_guide_9.jpeg ├── finished_double.jpeg ├── finished_single.jpeg ├── kyria_fit.jpeg ├── kyria_mid.jpeg ├── kyria_wide.jpeg └── plate_case.jpeg ├── vertical_frame_rev3_38mm.stl ├── vertical_frame_rev4_34mm.stl └── vertical_frame_rev4_38mm.stl /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: brickbots 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/README.md -------------------------------------------------------------------------------- /aball_v15.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/aball_v15.f3d -------------------------------------------------------------------------------- /case/laser_cut_plate/bottom.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_plate/bottom.dxf -------------------------------------------------------------------------------- /case/laser_cut_plate/middle.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_plate/middle.dxf -------------------------------------------------------------------------------- /case/laser_cut_plate/top.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_plate/top.dxf -------------------------------------------------------------------------------- /case/laser_cut_stacked/bottom.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_stacked/bottom.dxf -------------------------------------------------------------------------------- /case/laser_cut_stacked/middle_a.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_stacked/middle_a.dxf -------------------------------------------------------------------------------- /case/laser_cut_stacked/middle_b.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_stacked/middle_b.dxf -------------------------------------------------------------------------------- /case/laser_cut_stacked/top_a.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_stacked/top_a.dxf -------------------------------------------------------------------------------- /case/laser_cut_stacked/top_b.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_stacked/top_b.dxf -------------------------------------------------------------------------------- /case/laser_cut_stacked/top_c.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/laser_cut_stacked/top_c.dxf -------------------------------------------------------------------------------- /case/printed/bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/printed/bottom.stl -------------------------------------------------------------------------------- /case/printed/middle_top_a.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/printed/middle_top_a.stl -------------------------------------------------------------------------------- /case/printed/top_b.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/printed/top_b.stl -------------------------------------------------------------------------------- /case/printed/top_c.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/case/printed/top_c.stl -------------------------------------------------------------------------------- /docs/bg_case_acrylic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/docs/bg_case_acrylic.md -------------------------------------------------------------------------------- /docs/bg_case_plate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/docs/bg_case_plate.md -------------------------------------------------------------------------------- /docs/bg_case_printed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/docs/bg_case_printed.md -------------------------------------------------------------------------------- /docs/bg_electronics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/docs/bg_electronics.md -------------------------------------------------------------------------------- /docs/bg_getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/docs/bg_getting_started.md -------------------------------------------------------------------------------- /docs/bg_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/docs/bg_structure.md -------------------------------------------------------------------------------- /docs/bom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/docs/bom.md -------------------------------------------------------------------------------- /handwired_aball_default.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/handwired_aball_default.hex -------------------------------------------------------------------------------- /photos/aball_min.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/aball_min.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_1.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_10.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_11.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_12.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_13.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_14.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_15.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_16.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_16.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_17.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_17.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_18.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_19.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_2.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_20.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_20.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_21.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_21.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_22.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_22.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_23.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_24.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_24.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_25.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_25.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_3.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_4.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_5.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_6.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_7.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_8.jpeg -------------------------------------------------------------------------------- /photos/build_guide/aball_build_guide_9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/build_guide/aball_build_guide_9.jpeg -------------------------------------------------------------------------------- /photos/finished_double.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/finished_double.jpeg -------------------------------------------------------------------------------- /photos/finished_single.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/finished_single.jpeg -------------------------------------------------------------------------------- /photos/kyria_fit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/kyria_fit.jpeg -------------------------------------------------------------------------------- /photos/kyria_mid.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/kyria_mid.jpeg -------------------------------------------------------------------------------- /photos/kyria_wide.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/kyria_wide.jpeg -------------------------------------------------------------------------------- /photos/plate_case.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/photos/plate_case.jpeg -------------------------------------------------------------------------------- /vertical_frame_rev3_38mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/vertical_frame_rev3_38mm.stl -------------------------------------------------------------------------------- /vertical_frame_rev4_34mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/vertical_frame_rev4_34mm.stl -------------------------------------------------------------------------------- /vertical_frame_rev4_38mm.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brickbots/aball/HEAD/vertical_frame_rev4_38mm.stl --------------------------------------------------------------------------------