├── .gitattributes ├── README.md ├── adapter pcb ├── CAMOutputs │ ├── Assembly │ │ ├── PnP_adapter_back.txt │ │ ├── PnP_adapter_front.txt │ │ └── adapter.txt │ ├── DrillFiles │ │ └── drill_1_16.xln │ └── GerberFiles │ │ ├── copper_bottom.gbr │ │ ├── copper_top.gbr │ │ ├── gerber_job.gbrjob │ │ ├── profile.gbr │ │ ├── silkscreen_bottom.gbr │ │ ├── silkscreen_top.gbr │ │ ├── soldermask_bottom.gbr │ │ ├── soldermask_top.gbr │ │ ├── solderpaste_bottom.gbr │ │ └── solderpaste_top.gbr ├── CNC │ ├── copper_top.gbr_iso_combined_cnc.nc │ ├── drill_1_16.xln_cnc_1.nc │ └── profile.gbr_cutout_cnc.nc ├── adapter.brd ├── adapter.sch └── adapter_2021-11-27.zip ├── arduino code ├── python_benchtop_controller │ └── python_benchtop_controller.ino ├── python_rc_robot │ └── python_rc_robot.ino ├── python_rc_robot_transmitter │ └── python_rc_robot_transmitter.ino └── simple_robot │ └── simple_robot.ino ├── benchtop motor holder ├── Body1.3mf ├── Body2.3mf └── arm.3mf ├── chassis ├── AK80 Holder.3mf ├── Arduino holder.3mf ├── CAN Module holder.3mf ├── adapters&holders │ ├── arduino mkr holder.3mf │ ├── battery strip holder.3mf │ ├── lidar holder.3mf │ └── powerbank holder.3mf ├── connector.3mf ├── lipoholder.3mf ├── nrf24l01 holder.3mf ├── plate1.3mf ├── plate2.3mf ├── small wheel │ ├── arm.3mf │ ├── plate1.3mf │ ├── plate2.3mf │ ├── support.3mf │ └── tire.3mf ├── tire.3mf └── wheel.3mf ├── docs └── mini1.jpg └── python code ├── benchtop_controller.py └── python_rc_controller.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/README.md -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/Assembly/PnP_adapter_back.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/Assembly/PnP_adapter_front.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/Assembly/adapter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/Assembly/adapter.txt -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/DrillFiles/drill_1_16.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/DrillFiles/drill_1_16.xln -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/copper_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/copper_bottom.gbr -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/copper_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/copper_top.gbr -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/gerber_job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/gerber_job.gbrjob -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/profile.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/profile.gbr -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/silkscreen_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/silkscreen_bottom.gbr -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/silkscreen_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/silkscreen_top.gbr -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/soldermask_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/soldermask_bottom.gbr -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/soldermask_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/soldermask_top.gbr -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/solderpaste_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/solderpaste_bottom.gbr -------------------------------------------------------------------------------- /adapter pcb/CAMOutputs/GerberFiles/solderpaste_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CAMOutputs/GerberFiles/solderpaste_top.gbr -------------------------------------------------------------------------------- /adapter pcb/CNC/copper_top.gbr_iso_combined_cnc.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CNC/copper_top.gbr_iso_combined_cnc.nc -------------------------------------------------------------------------------- /adapter pcb/CNC/drill_1_16.xln_cnc_1.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CNC/drill_1_16.xln_cnc_1.nc -------------------------------------------------------------------------------- /adapter pcb/CNC/profile.gbr_cutout_cnc.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/CNC/profile.gbr_cutout_cnc.nc -------------------------------------------------------------------------------- /adapter pcb/adapter.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/adapter.brd -------------------------------------------------------------------------------- /adapter pcb/adapter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/adapter.sch -------------------------------------------------------------------------------- /adapter pcb/adapter_2021-11-27.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/adapter pcb/adapter_2021-11-27.zip -------------------------------------------------------------------------------- /arduino code/python_benchtop_controller/python_benchtop_controller.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/arduino code/python_benchtop_controller/python_benchtop_controller.ino -------------------------------------------------------------------------------- /arduino code/python_rc_robot/python_rc_robot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/arduino code/python_rc_robot/python_rc_robot.ino -------------------------------------------------------------------------------- /arduino code/python_rc_robot_transmitter/python_rc_robot_transmitter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/arduino code/python_rc_robot_transmitter/python_rc_robot_transmitter.ino -------------------------------------------------------------------------------- /arduino code/simple_robot/simple_robot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/arduino code/simple_robot/simple_robot.ino -------------------------------------------------------------------------------- /benchtop motor holder/Body1.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/benchtop motor holder/Body1.3mf -------------------------------------------------------------------------------- /benchtop motor holder/Body2.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/benchtop motor holder/Body2.3mf -------------------------------------------------------------------------------- /benchtop motor holder/arm.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/benchtop motor holder/arm.3mf -------------------------------------------------------------------------------- /chassis/AK80 Holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/AK80 Holder.3mf -------------------------------------------------------------------------------- /chassis/Arduino holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/Arduino holder.3mf -------------------------------------------------------------------------------- /chassis/CAN Module holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/CAN Module holder.3mf -------------------------------------------------------------------------------- /chassis/adapters&holders/arduino mkr holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/adapters&holders/arduino mkr holder.3mf -------------------------------------------------------------------------------- /chassis/adapters&holders/battery strip holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/adapters&holders/battery strip holder.3mf -------------------------------------------------------------------------------- /chassis/adapters&holders/lidar holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/adapters&holders/lidar holder.3mf -------------------------------------------------------------------------------- /chassis/adapters&holders/powerbank holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/adapters&holders/powerbank holder.3mf -------------------------------------------------------------------------------- /chassis/connector.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/connector.3mf -------------------------------------------------------------------------------- /chassis/lipoholder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/lipoholder.3mf -------------------------------------------------------------------------------- /chassis/nrf24l01 holder.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/nrf24l01 holder.3mf -------------------------------------------------------------------------------- /chassis/plate1.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/plate1.3mf -------------------------------------------------------------------------------- /chassis/plate2.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/plate2.3mf -------------------------------------------------------------------------------- /chassis/small wheel/arm.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/small wheel/arm.3mf -------------------------------------------------------------------------------- /chassis/small wheel/plate1.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/small wheel/plate1.3mf -------------------------------------------------------------------------------- /chassis/small wheel/plate2.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/small wheel/plate2.3mf -------------------------------------------------------------------------------- /chassis/small wheel/support.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/small wheel/support.3mf -------------------------------------------------------------------------------- /chassis/small wheel/tire.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/small wheel/tire.3mf -------------------------------------------------------------------------------- /chassis/tire.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/tire.3mf -------------------------------------------------------------------------------- /chassis/wheel.3mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/chassis/wheel.3mf -------------------------------------------------------------------------------- /docs/mini1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/docs/mini1.jpg -------------------------------------------------------------------------------- /python code/benchtop_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/python code/benchtop_controller.py -------------------------------------------------------------------------------- /python code/python_rc_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikodemBartnik/Overpowered-Robotic-Chassis/HEAD/python code/python_rc_controller.py --------------------------------------------------------------------------------