Filament sensor switch in 4 axis Delta
-
@ander said in Filament sensor switch in 4 axis Delta:
now the screen shows "connecting" the whole time and it doesn´t work .
For the PanelDue you'll need to add
M575 P1 B57600 S1
to your config.ghttps://duet3d.dozuki.com/Wiki/Gcode#Section_M575_Set_serial_comms_parameters
@ander said in Filament sensor switch in 4 axis Delta:
Error: Z axis maximum must be greater than minimum
; Axis Limits
M208 Z-2 U1000 S0 ; set minimum ZM208 S0 sets the maximum. So Z max of -2 makes no sense.
https://duet3d.dozuki.com/Wiki/Gcode#Section_M208_Set_axis_max_travel
@ander said in Filament sensor switch in 4 axis Delta:
Error: in file macro line 76: M591: parameter 'D' too high
; Custom settings M591 D5 C3 P1 E6.0 ; filament monitor connected to E2 endstop
I guess it doesn't like your D value, which is for the extruder number. And you don't have 5 of them, so should probably change that to 0.https://duet3d.dozuki.com/Wiki/Gcode#Section_M591_RepRapFirmware_Num_3
@ander said in Filament sensor switch in 4 axis Delta:
Warning: Macro file config-override.g not found
That just means you haven't used M500 yet to create the config-override.g file, but you do have M501 at the end of config.g to load it if you did. If you do a PID tuning of your heaters and send M500 it will save the results to config-override.g and then M501 will load them at boot.
https://duet3d.dozuki.com/Wiki/Gcode#Section_M500_Store_parameters
@ander said in Filament sensor switch in 4 axis Delta:
i updated duet2and3firmware3.1.1.zip and worked.
Uploading the complete zip file as is without extracting it is the correct way to do it.
@ander said in Filament sensor switch in 4 axis Delta:
Warning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C
This is a warning. : https://duet3d.dozuki.com/Wiki/FAQ#Section_M307_Heater_1_appears_to_be_over_powered_If_left_on_at_full_power_its_temperature_is_predicted_to_reach_521C
-
Thanks for the help.
The screen now works thanks to your advice
the filament sensor value is changed to 0 and is not giving any error but i don´t know yet if works properly (how can i check that?)
the macro error....you were right, i didn´t send the m500 yet because i just put a new duet and i´m trying to put it to work.
I changed the z -2 to z0 and i still have the same error.
this is what i see now after sending M98 P"config.g"
M98 P"config.g"
HTTP is enabled on port 80
FTP is disabled
TELNET is disabled
Error: Z axis maximum must be greater than minimum
Endstop configuration:
X: high end switch connected to pin xstop
Y: high end switch connected to pin ystop
Z: high end switch connected to pin zstop
U: high end switch connected to pin e0stopWarning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C
Warning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C
Warning: Heater 1 appears to be over-powered. If left on at full power, its temperature is predicted to reach 1232CThis is my config file:
config(8).g -
you have no maximum defined for all axis
you have no minimum defined for x and y
your thermistor config is wrong. find the correct beta value in your thermistor documentation.
M591 D0 CE2_STOP P1 E6.0 ; filament monitor connected to E2 endstop
that command seems wrong the pin definition is wrong and does not exist
-
@Veti said in Filament sensor switch in 4 axis Delta:
you have no maximum defined for all axis
you have no minimum defined for x and yThat's normal when the printer is a delta.
M591 D0 CE2_STOP P1 E6.0 ; filament monitor connected to E2 endstop
that command seems wrong the pin definition is wrong and does not exist
yes indeed, the pin name needs to be enclosed in quotes like this:
M591 D0 C"E2_STOP" P1 E6.0 ; filament monitor connected to E2 endstop
-
@dc42 said in Filament sensor switch in 4 axis Delta:
That's normal when the printer is a delta.
missed that part. thx
but whats the error then?
Error: Z axis maximum must be greater than minimum
-
@Veti said in Filament sensor switch in 4 axis Delta:
but whats the error then?
Error: Z axis maximum must be greater than minimum
He's still using M208 S0, which is the maximum, but he went from -2 as the max height to 0 as the max height. Still makes no sense.
@ander Use
M208 S1 Z-2
That sets the low point of the z axis to -2mm below the surface. You'll need a separate line forM208 S0 U1000
to set the max travel for your U axis -
Thanks for the help, i tried what you (phaedrux) sayd and worked, i don´t have this error anymore.
Now, the filament sensor switch (it is a regular endstop switch)is connected to pin 4 (E2_stop)in the expansion board.
and is giving me an error:M98 P"config.g"
HTTP is enabled on port 80
FTP is disabled
TELNET is disabled
Endstop configuration:
X: high end switch connected to pin xstop
Y: high end switch connected to pin ystop
Z: high end switch connected to pin zstop
U: high end switch connected to pin e0stopWarning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C
Error: Unknown pin name 'e2stop'
Warning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C
Warning: Heater 1 appears to be over-powered. If left on at full power, its temperature is predicted to reach 1232CHow can i make it work?
here is my last config.g
thanks -
@ander said in Filament sensor switch in 4 axis Delta:
Error: Unknown pin name 'e2stop'
thats the wrong name. phaedrux posted a list of the pin names that are valid in this thread
-
@ander said in Filament sensor switch in 4 axis Delta:
Error: Unknown pin name 'e2stop'
Try
exp.e2stop
as the pin name. -
Hi there
i put exp.e2stop, and my endswitch´s signal wire goes to pin 4 on the expansion side, i see no error for now when i reset the duet. then i tested printing something and pushing and releasing the switch of the filament....the printing continues as normal....so it doesn´t work.
Also, something weird happens with the extruder that i realised. If i set manually for example 200 degrees for the extruder, seems to reach and mantain it very well. but when printing....first reaches 200 degres and then starts autoleveling...and when does it, temperature varies quite a bit, and sometimes gives me temp error due to those oscilations (i´m using a E3D)
thanks
config(10).gM98 P"config.g"
HTTP is enabled on port 80
FTP is disabled
TELNET is disabled
Endstop configuration:
X: high end switch connected to pin xstop
Y: high end switch connected to pin ystop
Z: high end switch connected to pin zstop
U: high end switch connected to pin e0stopWarning: Heater 0 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C
Warning: Heater 1 appears to be over-powered. If left on at full power, its temperature is predicted to reach 1305C -
Anyone can help me please?
-
Sorry I missed your last reply there.
M591 D0 C"exp.e2_stop" P1 E6.0
The underscore shouldn't matter, but try remove the
_
between e2 and stop.The E6 parameter would only be used with the laser monitor. This is a simple switch is it not? So remove the E6 entirely.
You're also missing S1 to enable filament monitoring.
Try this corrected line
M591 D0 C"exp.e2stop" P1 S1
The other alternative is to try enabling pullup resistor by adding a
^
in front of the pin name.M591 D0 C"^exp.e2stop" P1 S1
If that doesn't work, you can also try P2 instead of P1. I'm not sure what type of switch you have, so try both.
-
@ander said in Filament sensor switch in 4 axis Delta:
Also, something weird happens with the extruder that i realised. If i set manually for example 200 degrees for the extruder, seems to reach and mantain it very well. but when printing....first reaches 200 degres and then starts autoleveling...and when does it, temperature varies quite a bit, and sometimes gives me temp error due to those oscilations (i´m using a E3D)
Have you done a PID tuning of the hotend yet? Do you have a silicone sock on the nozzle? Does the part cooling fan blow on the heater block?
https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+4:+Calibration/40#s161
-
Hi there
Yes, i already did the PID tunning, i have an E3D with a sock, but the weird thing is that the malfunction happens only while autoleveling, if there is no temp error after autoleveling the printing goes perfect, the temperature is very stable.
referring to the filament monitoring, i tried like you said and looks like works