Delta rostock mini g2s

Post Reply
vmishev
Posts: 3
Joined: Sat Jul 18, 2015 8:48 pm

Delta rostock mini g2s

Post by vmishev » Thu Jul 23, 2015 3:52 am

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 :)

Sherry
Posts: 362
Joined: Wed Jul 01, 2015 12:52 pm

Re: Delta rostock mini g2s

Post by Sherry » Tue Jul 28, 2015 3:19 pm

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 :)
hi,Auto-leveling probe is controlled by G29 command,Verify Homing Send G28.so when sending G28,printer will home.
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

a.davidshaw
Posts: 4
Joined: Tue Sep 08, 2015 3:49 am

Re: Delta rostock mini g2s

Post by a.davidshaw » Sat Sep 19, 2015 9:13 am

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?

Mark
Posts: 1553
Joined: Thu Aug 06, 2015 9:19 am

Re: Delta rostock mini g2s

Post by Mark » Sat Sep 19, 2015 3:33 pm

"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.

a.davidshaw
Posts: 4
Joined: Tue Sep 08, 2015 3:49 am

Re: Delta rostock mini g2s

Post by a.davidshaw » Sun Sep 20, 2015 7:50 am

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
Attachments
Screen Shot 2015-09-19 at 7.44.14 PM.png
Screen Shot 2015-09-19 at 7.44.14 PM.png (304.22 KiB) Viewed 14528 times

Mark
Posts: 1553
Joined: Thu Aug 06, 2015 9:19 am

Re: Delta rostock mini g2s

Post by Mark » Mon Sep 21, 2015 5:20 pm

Did you add all the files in the marlin folder into the arduino ? If you did, how about using arduino version 1.0.1?

a.davidshaw
Posts: 4
Joined: Tue Sep 08, 2015 3:49 am

Re: Delta rostock mini g2s

Post by a.davidshaw » Mon Sep 21, 2015 7:26 pm

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

Mark
Posts: 1553
Joined: Thu Aug 06, 2015 9:19 am

Re: Delta rostock mini g2s

Post by Mark » Tue Sep 22, 2015 5:46 pm

Maybe you need a new firmware, download it here.
Attachments
RKMA_GT2560_G2s.zip
(283.25 KiB) Downloaded 547 times

a.davidshaw
Posts: 4
Joined: Tue Sep 08, 2015 3:49 am

Re: Delta rostock mini g2s

Post by a.davidshaw » Tue Sep 22, 2015 7:20 pm

I'm getting the same error. Thanks for the upload.

RusKZ
Posts: 7
Joined: Fri Sep 25, 2015 7:34 pm

Re: Delta rostock mini g2s

Post by RusKZ » Fri Sep 25, 2015 10:06 pm

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?

Post Reply