No Axis Movement
-
Oh yes, motors wired properly.
-
@1d1 said in No Axis Movement:
B4138 matches room temp
that is because most thermistors used in 3d printer are 100k at room temperature. it does change at higher temperature and could easily result in temperatures being off by 40C
Just tried M564 G92 directly -
those are 2 different commands
-
Yes. I tried individually and separately. Not worried about thermistors right now. Thanks for your help. I appreciate your time and thoughts.
-
what parameter did you use for M564 ?
-
Perhaps my board is boinked?
-
For M 564 I just tried "home all"
-
@1d1 said in No Axis Movement:
For M 564 I just tried "home all"
i dont undestand what you mean
M564 requires a parameter. on its own it does nothing.
bearer posted a link to the documentation. if you had read that you would have seen that you need to issue
M564 S0 H0
edit: It states
On some types of printer (e.g. Delta and SCARA), movement before homing may be prohibited regardless of the H parameter. -
can you post your homedelta.g ?
-
I entered M564 in the UI Gcode console, then tried to home. After sending the M564 it told me that movement outside the bed not possible, but homing was.
As for documentation link, I didn't and still don't see one. I'll add the M564 S0 H0 to the config.
Home delta g: ; homedelta.g
; called to home all towers on a delta printer
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Thu Apr 23 2020 23:27:15 GMT-0700 (Pacific Daylight Time)
G91 ; relative positioning
G1 H1 X251 Y251 Z251 F3600 ; move all towers to the high end stopping at the endstops (first pass)
G1 H2 X-5 Y-5 Z-5 F3600 ; go down a few mm
G1 H1 X10 Y10 Z10 F360 ; move all towers up once more (second pass)
G1 Z-5 F9000 ; move down a few mm so that the nozzle can be centred
G90 ; absolute positioning
G1 X0 Y0 F9000 ; move X+Y to the centre -
look at bearer's post. the commands G92 and M564 are links.
is there a response when you send G28?
-
No action with the M564 S0 H0 in either config.g or homedelta g
-
no as i posted thats not allowed on a delta
-
I'll try it. Didn't realize those were links....
-
Movement! Not the correct movement, but all three axes moved From G92 X0 Y0 Z0 with the extruder at the bed, and centered.
-
@1d1 said in No Axis Movement:
M574 X2 Y2 Z2 S0 ; set active high endstops
Have you got active low (normally open, or NO), or active high endstops (normally closed, NC)? See https://duet3d.dozuki.com/Wiki/Connecting_endstop_switches#Section_Microswitch
If you send M117, and the endstop reports triggered already, it may explain lack of movement. Change S0 to S1.If you change anything in config.g, you need to reset the board, or send M98 P"config.g" to use those changes. Or input gcodes (temporarily, until the next reset) in the gcode console/command line.
Ian
-
I've verified the endstops as being NC (changed to S1) and both X and Y move normally. Z isn't moving at all and the endstops are not triggering the axis movements of X and Y. On the board, the endstop lights are on and go off when manually triggering each end stop switch. For M117, the endstops are not triggered until I push them and each one is registering on the proper tower.
I'm going to try Z on a different driver... -
OK. Z works fine on X driver, so I think the Z is bad. Can I run Z from E1 if I change the position in the config?
-
Can you post the results of M122 and send M98 P"config.g" and post any error messages that come up?
-
@1d1 said in No Axis Movement:
Can I run Z from E1 if I change the position in the config?
Yes, you'd change the M574 z to use the driver number you want.
-