No Axis Movement
-
Just tried M564 G92 directly - same message and still no movement. Should I put this in config?
-
@1d1 said in No Axis Movement:
M92 X80.02 Y79.94 Z80.07 E2650.00 ; set steps per mm
on a delta x y and z should be the same.
your e steps look very high. what kind of extruder do you have?; Z-Probe
;M558 P4 H5 F600 T9000 I1 ; set Z probe type to switch and the dive height + speeds
;G31 P25 X-2 Y-2 Z20 ; set Z probe trigger value, offset and trigger height
;M557 R100 S40 ; define mesh gridif you have no probe you need to define a P0 probe
M305 P0 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 0
M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1B4138 is incorrect. you need to find out which thermistor you are using and set the value for it.
M579 X1.012 Y0.9871
why have you set this?
for you movement. have you correctly identified the motor phases and connected them accordingly?
-
I'm using someone else's config, however, modified. E steps are for Zesty Nimble V1 and correct (30:1 gearing). Individual towers are calculated by the imported config - I'll change them to 80. I have a probe, but was trying to eliminate extra stuff until movement happens. B4138 matches room temp and has been working fine on another printer.
I have no idea why M579 is there. -
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?