makerbase-mks / MKS-Robin

MKS Robin is a powerful 32-bit 3D printer control board with STM32F103ZET6 . Support Marlin2.0. Support MKS Robin TFT24/28/32... Screens. The motherboard integrates 5 AXIS interface, hot bed, 2 heating heads, 3 NTC100K, 2 MAX31855.Support MKS Robin WIFI for cloud printing.Supports firmware update by SD card…
https://es.aliexpress.com/item/32757129463.html?spm=a219c.12010612.8148356.9.5fc165f4oDUfFM
130 stars 129 forks source link

help do not recognize the dimensions of my printer #72

Open nilose2014 opened 5 years ago

nilose2014 commented 5 years ago

Hello I have a problem and it is that I do not recognize the dimensions of my printe robin_config.txt r and I think I have it properly configured is an e12 anet whose dimensions are 300x300x400, someone can help me upload the config.txt

X_MAX_LENGTH 300 #the MAX X-axis distance Y_MAX_LENGTH 300 #the MAX Y-axis distance Z_MAX_LENGTH 400 #the MAX Z-axis distance X_MIN_POS -5 #the MIN X-axis distance Y_MIN_POS -26 #the MIN Y-axis distance Z_MIN_POS 0 #the MIN Z-axis distance

makerbase-mks commented 5 years ago

what is type of your machine? The XYZ machine need to set: X_MIN_POS 0 #the MIN X-axis distance Y_MIN_POS 0 #the MIN Y-axis distance Z_MIN_POS 0 #the MIN Z-axis distance The delta machine need to change below settings: ################ Delta Settings ##############################

DELTA_MAX_RADIUS 135 #the radius of Delta annulus PRINTER_RADIUS 197 #the distance from machine center to vertical top DELTA_DIAGONAL_ROD 346.75 #the length of Delta pole DELTA_FLOOR_SAFETY_MARGIN_MM 15 #the safe distance of leveling edge END_EFFECTOR_HORIZONTAL_OFFSET 28.0 # CARRIAGE_HORIZONTAL_OFFSET 14.5 # ROD_RADIUS 169 # You can

nilose2014 commented 5 years ago

Hello Muy machine is XYZ model Anet e12

El sáb., 29 dic. 2018 3:42, makerbase notifications@github.com escribió:

what is type of your machine? The XYZ machine need to set: X_MIN_POS 0 #the MIN X-axis distance Y_MIN_POS 0 #the MIN Y-axis distance Z_MIN_POS 0 #the MIN Z-axis distance The delta machine need to change below settings: ################ Delta Settings ##############################

DELTA_MAX_RADIUS 135 #the radius of Delta annulus PRINTER_RADIUS 197 #the distance from machine center to vertical top DELTA_DIAGONAL_ROD 346.75 #the length of Delta pole DELTA_FLOOR_SAFETY_MARGIN_MM 15 #the safe distance of leveling edge END_EFFECTOR_HORIZONTAL_OFFSET 28.0 # CARRIAGE_HORIZONTAL_OFFSET 14.5 # ROD_RADIUS 169 # You can

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/makerbase-mks/MKS-Robin/issues/72#issuecomment-450459128, or mute the thread https://github.com/notifications/unsubscribe-auth/AsEJkIg9Tti__CuYQk50hCyaeIqzXX6Kks5u9tapgaJpZM4ZjVAQ .

nilose2014 commented 5 years ago

Hello

I have it on

X_MIN_POS -25 #the MIN X-axis distance Y_MIN_POS -6 #the MIN Y-axis distance Z_MIN_POS 0 #

El sáb., 29 dic. 2018 3:42, makerbase notifications@github.com escribió:

what is type of your machine? The XYZ machine need to set: X_MIN_POS 0 #the MIN X-axis distance Y_MIN_POS 0 #the MIN Y-axis distance Z_MIN_POS 0 #the MIN Z-axis distance The delta machine need to change below settings: ################ Delta Settings ##############################

DELTA_MAX_RADIUS 135 #the radius of Delta annulus PRINTER_RADIUS 197 #the distance from machine center to vertical top DELTA_DIAGONAL_ROD 346.75 #the length of Delta pole DELTA_FLOOR_SAFETY_MARGIN_MM 15 #the safe distance of leveling edge END_EFFECTOR_HORIZONTAL_OFFSET 28.0 # CARRIAGE_HORIZONTAL_OFFSET 14.5 # ROD_RADIUS 169 # You can

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/makerbase-mks/MKS-Robin/issues/72#issuecomment-450459128, or mute the thread https://github.com/notifications/unsubscribe-auth/AsEJkIg9Tti__CuYQk50hCyaeIqzXX6Kks5u9tapgaJpZM4ZjVAQ .

mattdog01 commented 5 years ago

Hello nilose2014, Just type in your numbers as below and make sure you are using a "fresh" copy of your config file and save it to your sd card don't try to modify the file on the SD card. The Robin changes the file extension after it has uploaded the new config. Make sure you tell your slicer the size of your print area as well.

This is how you would define your print area in your firmware. (as shown by makerbase-mks)

X_MAX_LENGTH 300 #the MAX X-axis distance Y_MAX_LENGTH 300 #the MAX Y-axis distance Z_MAX_LENGTH 400 #the MAX Z-axis distance X_MIN_POS 0 #the MIN X-axis distance Y_MIN_POS 0 #the MIN Y-axis distance Z_MIN_POS 0 #the MIN Z-axis distance

If you just want to move you print head over to x-25 y-6 then you could use custom gcode in your slicer but your endstops will need to be able to let the print head move that far.

custom gcode G1 X-25.0 Y-6.0 ; go outside print area to (-25,-6)

You could just move your endstops so that the print head will go over to the x=-25 and y=-6 but these will be considered X_MIN_POS 0 and Y_MIN_POS 0 positions. You may be able to define your print area in your slicer as starting at x=25 and y=6

This is how you could define your print area in your firmware if you started at -25 and -6 and wanted to get all 300 mm travel.

X_MAX_LENGTH 325 #the MAX X-axis distance Y_MAX_LENGTH 306 #the MAX Y-axis distance Z_MAX_LENGTH 400 #the MAX Z-axis distance X_MIN_POS 0 #the MIN X-axis distance Y_MIN_POS 0 #the MIN Y-axis distance Z_MIN_POS 0 #the MIN Z-axis distance