├── README.md ├── firmware ├── README └── stepper_nano_zero │ ├── A1333.cpp │ ├── A1333.h │ ├── A4954.cpp │ ├── A4954.h │ ├── A5995.cpp │ ├── A5995.h │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── Adafruit_SSD1306.cpp │ ├── Adafruit_SSD1306.h │ ├── Flash.cpp │ ├── Flash.h │ ├── angle.h │ ├── board.h │ ├── calibration.cpp │ ├── calibration.h │ ├── command.cpp │ ├── command.h │ ├── commands.cpp │ ├── commands.h │ ├── eeprom.cpp │ ├── eeprom.h │ ├── fet_driver.cpp │ ├── fet_driver.h │ ├── ftoa.cpp │ ├── ftoa.h │ ├── gfxfont.h │ ├── glcdfont.c │ ├── nonvolatile.cpp │ ├── nonvolatile.h │ ├── nzs.cpp │ ├── nzs.h │ ├── nzs_lcd.cpp │ ├── nzs_lcd.h │ ├── planner.cpp │ ├── planner.h │ ├── sine.cpp │ ├── sine.h │ ├── stepper_controller.cpp │ ├── stepper_controller.h │ ├── stepper_nano_zero.ino │ ├── steppin.cpp │ ├── steppin.h │ ├── syslog.cpp │ ├── syslog.h │ ├── utils.cpp │ └── utils.h └── hardware ├── MKS SERVO57A_V1.0_001 ├── MKS SERVO57A_V1.0_001 BOM.pdf ├── MKS SERVO57A_V1.0_001 PCB_BOTTOM.pdf ├── MKS SERVO57A_V1.0_001 PCB_TOP.pdf └── MKS SERVO57A_V1.0_001 SCH.pdf └── README /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/README.md -------------------------------------------------------------------------------- /firmware/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/A1333.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/A1333.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/A1333.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/A1333.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/A4954.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/A4954.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/A4954.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/A4954.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/A5995.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/A5995.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/A5995.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/A5995.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/Adafruit_GFX.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/Adafruit_SSD1306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/Adafruit_SSD1306.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/Adafruit_SSD1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/Adafruit_SSD1306.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/Flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/Flash.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/Flash.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/angle.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/board.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/calibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/calibration.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/calibration.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/command.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/command.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/commands.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/commands.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/eeprom.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/eeprom.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/fet_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/fet_driver.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/fet_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/fet_driver.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/ftoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/ftoa.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/ftoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/ftoa.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/gfxfont.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/glcdfont.c -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/nonvolatile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/nonvolatile.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/nonvolatile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/nonvolatile.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/nzs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/nzs.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/nzs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/nzs.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/nzs_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/nzs_lcd.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/nzs_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/nzs_lcd.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/planner.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/planner.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/sine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/sine.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/sine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/sine.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/stepper_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/stepper_controller.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/stepper_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/stepper_controller.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/stepper_nano_zero.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/stepper_nano_zero.ino -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/steppin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/steppin.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/steppin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/steppin.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/syslog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/syslog.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/syslog.h -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/utils.cpp -------------------------------------------------------------------------------- /firmware/stepper_nano_zero/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/firmware/stepper_nano_zero/utils.h -------------------------------------------------------------------------------- /hardware/MKS SERVO57A_V1.0_001/MKS SERVO57A_V1.0_001 BOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/hardware/MKS SERVO57A_V1.0_001/MKS SERVO57A_V1.0_001 BOM.pdf -------------------------------------------------------------------------------- /hardware/MKS SERVO57A_V1.0_001/MKS SERVO57A_V1.0_001 PCB_BOTTOM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/hardware/MKS SERVO57A_V1.0_001/MKS SERVO57A_V1.0_001 PCB_BOTTOM.pdf -------------------------------------------------------------------------------- /hardware/MKS SERVO57A_V1.0_001/MKS SERVO57A_V1.0_001 PCB_TOP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/hardware/MKS SERVO57A_V1.0_001/MKS SERVO57A_V1.0_001 PCB_TOP.pdf -------------------------------------------------------------------------------- /hardware/MKS SERVO57A_V1.0_001/MKS SERVO57A_V1.0_001 SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerbase-mks/MKS-SERVO57A/HEAD/hardware/MKS SERVO57A_V1.0_001/MKS SERVO57A_V1.0_001 SCH.pdf -------------------------------------------------------------------------------- /hardware/README: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------