Delta rostock mini g2s
Delta rostock mini g2s
I have assembled the printer, tested the endstops, the extruder and bed if they are heating, the sensors. The one and only thing that is not working properly is the command G28 or so called auto-leveling. When i send it to the printer the extruder hits the heating bed. The endstop is like switched off when i run this command. This costed damage to the printed extruder holder. What am i supposed to do to fix this? Thank you in advance
Re: Delta rostock mini g2s
hi,Auto-leveling probe is controlled by G29 command,Verify Homing Send G28.so when sending G28,printer will home.vmishev wrote:I have assembled the printer, tested the endstops, the extruder and bed if they are heating, the sensors. The one and only thing that is not working properly is the command G28 or so called auto-leveling. When i send it to the printer the extruder hits the heating bed. The endstop is like switched off when i run this command. This costed damage to the printed extruder holder. What am i supposed to do to fix this? Thank you in advance
some people said that the extruder will crash to hot bed,it 's because they did not set up well befor printing.here is the link for setting ,plese readjust your printer according to the link.
http://www.geeetech.com/wiki/index.php/ ... _preparing
-
- Posts: 4
- Joined: Tue Sep 08, 2015 3:49 am
Re: Delta rostock mini g2s
I have my printer assembled but am having issues loading the firmware on the G2S. I've been using this link http://www.geeetech.com/wiki/index.php/ ... ck_mini_G2 and http://www.geeetech.com/Documents/Rosto ... 282%29.pdf
It doesn't say what parameters in the configuration file need to be changed, also has anyone installed the firmware with a Mac?
It doesn't say what parameters in the configuration file need to be changed, also has anyone installed the firmware with a Mac?
Re: Delta rostock mini g2s
"It doesn't say what parameters in the configuration file need to be changed"
Indeed the link you post here has already told you the settings need to be changed, they are in define the initial Z axis height and the rest lines, be patient and read it again you'll find the results.
Indeed the link you post here has already told you the settings need to be changed, they are in define the initial Z axis height and the rest lines, be patient and read it again you'll find the results.
-
- Posts: 4
- Joined: Tue Sep 08, 2015 3:49 am
Re: Delta rostock mini g2s
I already have the proper motherboard selected. I tried to compile it but I get this error. Any suggestions?
Marlin_main.cpp:279: error: 'E1_STEP_PIN' was not declared in this scope
Marlin_main.cpp:279: error: 'E1_DIR_PIN' was not declared in this scope
Marlin_main.cpp:279: error: 'E1_ENABLE_PIN' was not declared in this scope
Marlin_main.cpp:279: error: 'E1_STEP_PIN' was not declared in this scope
Marlin_main.cpp:279: error: 'E1_DIR_PIN' was not declared in this scope
Marlin_main.cpp:279: error: 'E1_ENABLE_PIN' was not declared in this scope
- Attachments
-
- Screen Shot 2015-09-19 at 7.44.14 PM.png (304.22 KiB) Viewed 14841 times
Re: Delta rostock mini g2s
Did you add all the files in the marlin folder into the arduino ? If you did, how about using arduino version 1.0.1?
-
- Posts: 4
- Joined: Tue Sep 08, 2015 3:49 am
Re: Delta rostock mini g2s
I installed Arduino 1.0.1 and I received the same errors. I went as far as to install 1.6 and here is what it says, below this is the code in Marlin that is incorrect.
THIS IS THE ERROR
In file included from Marlin.h:23:0,
from Marlin_main.cpp:30:
pins.h:2678: error: 'E1_STEP_PIN' was not declared in this scope
#define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, HEATER_1_PIN,
^
pins.h:2732:34: note: in expansion of macro '_E1_PINS'
_E0_PINS _E1_PINS _E2_PINS \
^
Marlin_main.cpp:279:30: note: in expansion of macro 'SENSITIVE_PINS'
const int sensitive_pins[] = SENSITIVE_PINS; // Sensitive pin list for M42
^
pins.h:2678: error: 'E1_DIR_PIN' was not declared in this scope
#define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, HEATER_1_PIN,
^
pins.h:2732:34: note: in expansion of macro '_E1_PINS'
_E0_PINS _E1_PINS _E2_PINS \
^
Marlin_main.cpp:279:30: note: in expansion of macro 'SENSITIVE_PINS'
const int sensitive_pins[] = SENSITIVE_PINS; // Sensitive pin list for M42
^
pins.h:2678: error: 'E1_ENABLE_PIN' was not declared in this scope
#define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, HEATER_1_PIN,
^
pins.h:2732:34: note: in expansion of macro '_E1_PINS'
_E0_PINS _E1_PINS _E2_PINS \
^
Marlin_main.cpp:279:30: note: in expansion of macro 'SENSITIVE_PINS'
const int sensitive_pins[] = SENSITIVE_PINS; // Sensitive pin list for M42
^
Multiple libraries were found for "Servo.h"
Used: /Applications/Arduino1.6.app/Contents/Java/libraries/Servo
Not used: /Users/allenshaw/Documents/Arduino/libraries/RKMA_GT2560_G2s
'E1_STEP_PIN' was not declared in this scope
MARLIN CODE:
//List of pins which to ignore when asked to change by gcode, 0 and 1 are RX and TX, do not mess with those!
#define _E0_PINS E0_STEP_PIN, E0_DIR_PIN, E0_ENABLE_PIN, HEATER_0_PIN,
#if EXTRUDERS > 1
#define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, HEATER_1_PIN,
#else
#define _E1_PINS
#endif
#if EXTRUDERS > 2
#define _E2_PINS E2_STEP_PIN, E2_DIR_PIN, E2_ENABLE_PIN, HEATER_2_PIN,
#else
#define _E2_PINS
#endif
#ifdef X_STOP_PIN
#if X_HOME_DIR < 0
#define X_MIN_PIN X_STOP_PIN
#define X_MAX_PIN -1
#else
#define X_MIN_PIN -1
#define X_MAX_PIN X_STOP_PIN
#endif
#endif
THIS IS THE ERROR
In file included from Marlin.h:23:0,
from Marlin_main.cpp:30:
pins.h:2678: error: 'E1_STEP_PIN' was not declared in this scope
#define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, HEATER_1_PIN,
^
pins.h:2732:34: note: in expansion of macro '_E1_PINS'
_E0_PINS _E1_PINS _E2_PINS \
^
Marlin_main.cpp:279:30: note: in expansion of macro 'SENSITIVE_PINS'
const int sensitive_pins[] = SENSITIVE_PINS; // Sensitive pin list for M42
^
pins.h:2678: error: 'E1_DIR_PIN' was not declared in this scope
#define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, HEATER_1_PIN,
^
pins.h:2732:34: note: in expansion of macro '_E1_PINS'
_E0_PINS _E1_PINS _E2_PINS \
^
Marlin_main.cpp:279:30: note: in expansion of macro 'SENSITIVE_PINS'
const int sensitive_pins[] = SENSITIVE_PINS; // Sensitive pin list for M42
^
pins.h:2678: error: 'E1_ENABLE_PIN' was not declared in this scope
#define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, HEATER_1_PIN,
^
pins.h:2732:34: note: in expansion of macro '_E1_PINS'
_E0_PINS _E1_PINS _E2_PINS \
^
Marlin_main.cpp:279:30: note: in expansion of macro 'SENSITIVE_PINS'
const int sensitive_pins[] = SENSITIVE_PINS; // Sensitive pin list for M42
^
Multiple libraries were found for "Servo.h"
Used: /Applications/Arduino1.6.app/Contents/Java/libraries/Servo
Not used: /Users/allenshaw/Documents/Arduino/libraries/RKMA_GT2560_G2s
'E1_STEP_PIN' was not declared in this scope
MARLIN CODE:
//List of pins which to ignore when asked to change by gcode, 0 and 1 are RX and TX, do not mess with those!
#define _E0_PINS E0_STEP_PIN, E0_DIR_PIN, E0_ENABLE_PIN, HEATER_0_PIN,
#if EXTRUDERS > 1
#define _E1_PINS E1_STEP_PIN, E1_DIR_PIN, E1_ENABLE_PIN, HEATER_1_PIN,
#else
#define _E1_PINS
#endif
#if EXTRUDERS > 2
#define _E2_PINS E2_STEP_PIN, E2_DIR_PIN, E2_ENABLE_PIN, HEATER_2_PIN,
#else
#define _E2_PINS
#endif
#ifdef X_STOP_PIN
#if X_HOME_DIR < 0
#define X_MIN_PIN X_STOP_PIN
#define X_MAX_PIN -1
#else
#define X_MIN_PIN -1
#define X_MAX_PIN X_STOP_PIN
#endif
#endif
Re: Delta rostock mini g2s
Maybe you need a new firmware, download it here.
- Attachments
-
- RKMA_GT2560_G2s.zip
- (283.25 KiB) Downloaded 565 times
-
- Posts: 4
- Joined: Tue Sep 08, 2015 3:49 am
Re: Delta rostock mini g2s
I'm getting the same error. Thanks for the upload.
Re: Delta rostock mini g2s
Hello! Help solve the problem .....
When I run the print object to the printer Rostok G2S. Calibrating the car level , after calibration begins printing facility and extruder in some places rises from the table to 0.5-3.0mm . Why is this happening?
When I run the print object to the printer Rostok G2S. Calibrating the car level , after calibration begins printing facility and extruder in some places rises from the table to 0.5-3.0mm . Why is this happening?