Joined
·
4 Posts
Hi folks, I built my first grbl engraver today, from a kit on Amazon. Its firmware is 1.1. Working with the gcode below, which looks ok on ncviewer.com, I can't get Candle to run the lines correctly. If I copy and paste each line into TeraTerm one at a time, and wait for one command to complete before pasting the next one, everything is fine. But that is not a good long term plan.
When I open the gcode file in Candle, all the lines show "In queue". When I click Send, all lines immediately go to "processed" and the spindle comes on, but the axes don't move. Because the spindle came on, I think the lines were all executed as soon as they came in to the control board. But there was no wait for any of the commands to complete. In TeraTerm, I didn't see any feedback from grbl saying that any of the commands were complete.
It feels like I'm missing some kind of secret handshake. Anybody got a hint? Thank you.
When I open the gcode file in Candle, all the lines show "In queue". When I click Send, all lines immediately go to "processed" and the spindle comes on, but the axes don't move. Because the spindle came on, I think the lines were all executed as soon as they came in to the control board. But there was no wait for any of the commands to complete. In TeraTerm, I didn't see any feedback from grbl saying that any of the commands were complete.
It feels like I'm missing some kind of secret handshake. Anybody got a hint? Thank you.
Code:
;seems to be calibrated in mm, but sometimes the controller acts like it read a number twice
;send via TeraTerm one line at a time. Candle will not wait for a command to end before sending the next one.
;G90 ;set to absolute position: G91 is relative
G91 ;START at design top left
;G28 ;Move to Absolute Origin
G1 F50 ;You must set the speed before G1 works. mm/min
M03 S1000 ; Spindle ON, speed "1000": OFF is M05
G1 Z-1 ;plunge
G1 X45
G1 Y-33
G1 X-45
G1 Y33
G1 Z1 ;withdraw
G0 X13 Y-20
G1 Z-1 ;plunge
G1 Z1 ;withdraw
G0 X6.1
G1 Z-1 ;plunge
G1 Z1 ;withdraw
G0 X-7 Y4
G1 Z-1 ;plunge
G1 Z1
M05