├── .gitattributes ├── Docs ├── images │ ├── 20181128_160700.jpg │ ├── 20181128_160716.jpg │ ├── 20181128_160737.jpg │ ├── 20190721_091821.jpg │ ├── 20190721_091840.jpg │ ├── 20190721_091938.jpg │ ├── 20190721_091948.jpg │ ├── 20190721_092003.jpg │ ├── 20190721_092013.jpg │ ├── 20190721_092027.jpg │ ├── 20190721_092040.jpg │ ├── 20190721_092048.jpg │ ├── 20190721_092056.jpg │ ├── 20190721_092227.jpg │ ├── 20190722_144810.jpg │ ├── 20190828_152350.jpg │ ├── 20190828_161339.jpg │ ├── 20190829_085413.jpg │ ├── 20190829_085515.jpg │ ├── 20190829_085643.jpg │ ├── Photos.md │ └── grabcad_model.png ├── mechanical_BOM.md └── samples │ ├── midthead.c2d │ └── midthead.gcode ├── PCB ├── BOM.md ├── Schematic_V1.pdf ├── Schematic_V2.pdf ├── V1 │ ├── Gerbers │ │ ├── BoardOutline.gbr │ │ ├── Bottom.gbr │ │ ├── BottomMask.gbr │ │ ├── BottomSilk.gbr │ │ ├── Top.gbr │ │ ├── TopMask.gbr │ │ ├── TopPaste.gbr │ │ ├── TopSilk.gbr │ │ └── drill.drl │ └── Source_Diptrace │ │ ├── MidTBot_ESP32_PCB_V1.dch │ │ └── MidTbot_ESP32_V1.dip └── V2 │ ├── Gerbers │ ├── BoardOutline.gbr │ ├── Bottom.gbr │ ├── BottomMask.gbr │ ├── BottomSilk.gbr │ ├── Top.gbr │ ├── TopMask.gbr │ ├── TopPaste.gbr │ ├── TopSilk.gbr │ └── drill.drl │ └── Source_Diptrace │ ├── MidTBot_ESP32_PCB_V2.dch │ └── MidTbot_ESP32_V2.dip ├── README.md ├── STEP └── midtbot_esp32_assy.stp └── STL ├── midt_esp32_carriage_block.stl ├── midt_esp32_cover_V2.stl ├── midt_esp32_cover_v1.stl ├── midt_esp32_head_block.stl ├── midt_esp32_left_foot.stl ├── midt_esp32_pen_mnt.stl ├── midt_esp32_right_foot.stl └── midt_tailblock.stl /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/.gitattributes -------------------------------------------------------------------------------- /Docs/images/20181128_160700.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20181128_160700.jpg -------------------------------------------------------------------------------- /Docs/images/20181128_160716.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20181128_160716.jpg -------------------------------------------------------------------------------- /Docs/images/20181128_160737.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20181128_160737.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_091821.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_091821.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_091840.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_091840.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_091938.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_091938.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_091948.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_091948.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_092003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_092003.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_092013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_092013.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_092027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_092027.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_092040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_092040.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_092048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_092048.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_092056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_092056.jpg -------------------------------------------------------------------------------- /Docs/images/20190721_092227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190721_092227.jpg -------------------------------------------------------------------------------- /Docs/images/20190722_144810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190722_144810.jpg -------------------------------------------------------------------------------- /Docs/images/20190828_152350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190828_152350.jpg -------------------------------------------------------------------------------- /Docs/images/20190828_161339.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190828_161339.jpg -------------------------------------------------------------------------------- /Docs/images/20190829_085413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190829_085413.jpg -------------------------------------------------------------------------------- /Docs/images/20190829_085515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190829_085515.jpg -------------------------------------------------------------------------------- /Docs/images/20190829_085643.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/20190829_085643.jpg -------------------------------------------------------------------------------- /Docs/images/Photos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/Photos.md -------------------------------------------------------------------------------- /Docs/images/grabcad_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/images/grabcad_model.png -------------------------------------------------------------------------------- /Docs/mechanical_BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/mechanical_BOM.md -------------------------------------------------------------------------------- /Docs/samples/midthead.c2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/samples/midthead.c2d -------------------------------------------------------------------------------- /Docs/samples/midthead.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/Docs/samples/midthead.gcode -------------------------------------------------------------------------------- /PCB/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/BOM.md -------------------------------------------------------------------------------- /PCB/Schematic_V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/Schematic_V1.pdf -------------------------------------------------------------------------------- /PCB/Schematic_V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/Schematic_V2.pdf -------------------------------------------------------------------------------- /PCB/V1/Gerbers/BoardOutline.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/BoardOutline.gbr -------------------------------------------------------------------------------- /PCB/V1/Gerbers/Bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/Bottom.gbr -------------------------------------------------------------------------------- /PCB/V1/Gerbers/BottomMask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/BottomMask.gbr -------------------------------------------------------------------------------- /PCB/V1/Gerbers/BottomSilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/BottomSilk.gbr -------------------------------------------------------------------------------- /PCB/V1/Gerbers/Top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/Top.gbr -------------------------------------------------------------------------------- /PCB/V1/Gerbers/TopMask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/TopMask.gbr -------------------------------------------------------------------------------- /PCB/V1/Gerbers/TopPaste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/TopPaste.gbr -------------------------------------------------------------------------------- /PCB/V1/Gerbers/TopSilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/TopSilk.gbr -------------------------------------------------------------------------------- /PCB/V1/Gerbers/drill.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Gerbers/drill.drl -------------------------------------------------------------------------------- /PCB/V1/Source_Diptrace/MidTBot_ESP32_PCB_V1.dch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Source_Diptrace/MidTBot_ESP32_PCB_V1.dch -------------------------------------------------------------------------------- /PCB/V1/Source_Diptrace/MidTbot_ESP32_V1.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V1/Source_Diptrace/MidTbot_ESP32_V1.dip -------------------------------------------------------------------------------- /PCB/V2/Gerbers/BoardOutline.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/BoardOutline.gbr -------------------------------------------------------------------------------- /PCB/V2/Gerbers/Bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/Bottom.gbr -------------------------------------------------------------------------------- /PCB/V2/Gerbers/BottomMask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/BottomMask.gbr -------------------------------------------------------------------------------- /PCB/V2/Gerbers/BottomSilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/BottomSilk.gbr -------------------------------------------------------------------------------- /PCB/V2/Gerbers/Top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/Top.gbr -------------------------------------------------------------------------------- /PCB/V2/Gerbers/TopMask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/TopMask.gbr -------------------------------------------------------------------------------- /PCB/V2/Gerbers/TopPaste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/TopPaste.gbr -------------------------------------------------------------------------------- /PCB/V2/Gerbers/TopSilk.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/TopSilk.gbr -------------------------------------------------------------------------------- /PCB/V2/Gerbers/drill.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Gerbers/drill.drl -------------------------------------------------------------------------------- /PCB/V2/Source_Diptrace/MidTBot_ESP32_PCB_V2.dch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Source_Diptrace/MidTBot_ESP32_PCB_V2.dch -------------------------------------------------------------------------------- /PCB/V2/Source_Diptrace/MidTbot_ESP32_V2.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/PCB/V2/Source_Diptrace/MidTbot_ESP32_V2.dip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/README.md -------------------------------------------------------------------------------- /STEP/midtbot_esp32_assy.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STEP/midtbot_esp32_assy.stp -------------------------------------------------------------------------------- /STL/midt_esp32_carriage_block.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STL/midt_esp32_carriage_block.stl -------------------------------------------------------------------------------- /STL/midt_esp32_cover_V2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STL/midt_esp32_cover_V2.stl -------------------------------------------------------------------------------- /STL/midt_esp32_cover_v1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STL/midt_esp32_cover_v1.stl -------------------------------------------------------------------------------- /STL/midt_esp32_head_block.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STL/midt_esp32_head_block.stl -------------------------------------------------------------------------------- /STL/midt_esp32_left_foot.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STL/midt_esp32_left_foot.stl -------------------------------------------------------------------------------- /STL/midt_esp32_pen_mnt.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STL/midt_esp32_pen_mnt.stl -------------------------------------------------------------------------------- /STL/midt_esp32_right_foot.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STL/midt_esp32_right_foot.stl -------------------------------------------------------------------------------- /STL/midt_tailblock.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdring/midTbot_esp32/HEAD/STL/midt_tailblock.stl --------------------------------------------------------------------------------