@dommilan Not sure what happened, bit M591 D0 now returns: Error: M591: Driver 2.2 has no filament monitor
Posts made by DomMilan
-
RE: Duet 3 "Extruder 0 has no filament sensor" after configuring.
-
RE: Duet 3 "Extruder 0 has no filament sensor" after configuring.
@jay_s_uk Unfortunately that had no effect of the issue. Here is my new pin assignment for my filament sensor.
M591 D0 P1 C"2.io0.in" S1 -
Duet 3 "Extruder 0 has no filament sensor" after configuring.
So I am trying to configure a simple switch sensor to a 6HC (that has a expansion board attached)
I have configured my sensor as such
; Filament Sensor
M591 D0 P1 C"io4.in" S1But the console returns this after sending M591 D0
M591 D0
Extruder 0 has no filament sensorNo M591 commands in my overide.g
Attached is my config.g
; Configuration file for Duet3 Mini5+ with Mini2+ expansion (firmware version 3.3 or newer)
; executed by the firmware on start-up; General preferences
M111 S0 ; Debugging off
G21 ; Work in millimetres
G90 ; Send absolute coordinates...
M83 ; ...but relative extruder movesM669 K1 ; Select CoreXY mode
M564 S1 H1 ; Forbid axis movements when not homed
M575 P1 S1 B57600;
;M564 H0 S0
; Network
M550 P"Ray's Voron" ; Set machine name
M552 S1 ; Enable network
M586 P0 S1 ; Enable HTTP (for DWC)
M586 P1 S1 ; Enable FTP (for remote backups)
M586 P2 S0 ; Disable Telnet; --- Z Drive map ---
; _______
; | 1 | 2 |
; | ----- |
; | 0 | 3 |
; -------
; front
;
; (looking at the printer from the top); Drive directions
M569 P2.0 S1 ; physical drive 1.0 goes forwards
M569 P2.1 S0 ; physical drive 1.1 goes forwards
M569 P0.0 S0 ; physical drive 0.0 goes forwards
M569 P0.1 S0 ; physical drive 0.0 goes forwards
M569 P0.2 S0 ; physical drive 0.0 goes forwards
M569 P0.3 S1 ; physical drive 0.0 goes forwards
M569 P2.2 S0 ; physical drive 1.2 goes forwards; Motor mapping and steps per mm
M584 X2.0 Y2.1 Z0.0:0.1:0.2:0.3 E2.2
M350 X16 Y16 I1
M350 Z16 E16 I1 ; Use 1/16 microstepping with interpolation everywhereM92 X80 Y80 Z400 ; Set XYZ steps per mm (1.8deg motors)
;M92 X160 Y160 Z400 ; Set XYZ steps per mm (0.9deg motors)
M92 425.13 ; Set Extruder steps per mm; Drive currents
M906 X1500 Y1500 Z1200 E800 ; XYZ and E current
M906 I30 ; Idle current percentage
M84 S120 ; Idle timeout; Accelerations and speed
M98 P"/macros/print_scripts/setup_printing.g"; Axis travel limits
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X350 Y357 Z325 S0 ; Set axis maxima; Endstops
M574 X2 S1 P"^io1.in" ; Xmax endstop on hall effect board
M574 Y2 S1 P"^io2.in" ; Ymax endstop on hall effect board
M574 Z0 S1 P"nil" ; No Z endstop; Filament Sensor
M591 D0 P1 C"io4.in" S1;M955 P0 C"spi.cs3+spi.cs4" I65
; Z probes
M558 K0 P8 C"^io5.in" T18000 F400 H5 A5 S0.01 R0.2
G31 K0 P500 X0 Y25 Z0 ; Don't really care about inductive probe Z offset
M558 K1 P8 C"^io3.in" T18000 F400:60 H2 A10 S0.005 R0.2
G31 K1 P500 X0 Y0 Z-0.21 ; Z switch offset (if positive, greater value = lower nozzle. if negative, more negative = higher nozzle); Bed leveling
M671 X-65:-65:365:365 Y0:395:395:0 S20 ; Define Z belts locations (Front_Left, Back_Left, Back_Right, Front_Right)
M557 X25:275 Y25:275 S25 ; Define bed mesh grid (inductive probe, positions include the Y offset!); Heaters
;HE0
M308 S1 P"temp0" Y"thermistor" T100000 B4725 C7.06e-8 ; configure sensor 0 as thermistor on pin temp0
M950 H1 C"out1" T1 ; create nozzle heater output on out1 and map it to sensor 0
M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
M143 H1 S280 ; set temperature limit for heater 0 to 280C; Bed heater
M308 S2 P"temp2" Y"thermistor" T100000 B3950 ; configure sensor 0 as thermistor on pin temp0 (heater sensor)
M950 H0 C"out2" T2 Q10 ; create bed heater output on out2 and map it to sensor 2 (mic6 sensor). Set PWM frequency to 10Hz
M140 P0 H0 ; Mark heater H0 as bed heater (for DWC)
M143 H0 S120 ; Set bed heater max temperature to 110°C, use implict monitor 0 which is implicitly configured for heater fault
M307 H0 B0 S0.6 ; disable bang-bang mode and set PWM to 60% to avoid warping
M570 H0 P400 T15;CHAMBER TEMP
M308 S3 P"temp1" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin e1temp
M950 H2 C"out8" T3 ; create chamber heater output on e1heat and map it to sensor 2
M307 H2 B0 S1.00 ; disable bang-bang mode for the chamber heater and set PWM limit
M141 H2 ; map chamber to heater 2
M143 H2 S100 ; set temperature limit for heater 2 to 100C; Fans
;HE FAN
M950 F0 C"out4" Q20 ; Create fan 0 (hotend) on pin out3 and set its frequency
M106 P0 S1 H1 T50 C"Hotend" ; Configure fan 0: Thermostatic control is turned on, based on sensor #1;PART FAN
M950 F1 C"out3" Q20 ; Create fan 1 (cooling) on pin out4 and set its frequency
M106 P1 S0 H-1 C"Cooling" ; Configure fan 1: Thermostatic control is turned off;E BAY FAN
M950 F2 C"out6" Q500 ; create fan 3 on pin out6 and set its frequency
M106 P2 C"E Bay" S1 H-1 ; set fan 3 name and value. Thermostatic control is turned off;CHAMBER FAN
M950 F4 C"out5" Q500 ; Create fan 3 (chamber) on pin out6 and set its frequency
M106 P4 S1 H3 T55 C"Chamber" ; (temporary manual setup); LEDs
M950 F5 C"2.out3" ; Create fan 4 (top leds) on pin out2
M106 P5 S255 B0 H-1 C"Top Lights"; Tools
M563 P0 D0 H1 F1 ; Define tool 0 using fan 1 for M106
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C; Misc
;M572 D0 S0.02 ; PLA PA
;M592 D0 A0.015 B0.0012 L0.2 ; Non-linear extrusion
M376 H3 ; Fade mesh out compensation over 10mm Z
;M912 P0 S-8.5 ; MCU temp calibration; DAA tuning (you will need to change this for your slicer)
;M593 F35. ; Cura 4.5 stock profile @ 40mm/s outer printing speed
;M593 F42.5 ; PrusaSlicer @ 40mm/s outer perimeterM80 ; turn on PSU & mains voltage
; set default LCD color
M150 X2 R100 U80 B255 P250 S3M501 ; load config-override.g
T0 ; select tool 0 -
RE: 6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
@alankilian I have it right before the extruder, I am trying to avoid placing it in line between the Hotend and Extruder as I have had issues with that with the BTT smart F sensor on my other machines. Changing the sensitivity seemed to do it. I was able to print with it. Sensitivity can be adjusted later should it be too weak. My esteps look good so I have my doubts about that being a root cause. I am happy with the progress made on this now. Took me a year to figure out what we did in these few days. Ill play with the settings but the root issue has been solved.
Thanks so much!
-
RE: 6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
@alankilian
M591 D0 returns:
Duet3D magnetic filament monitor on input 3, enabled, sensitivity 24.80mm/rev, allow 70% to 130%, check every 3.0mm, version 3, mag 132 agc 108, measured sensitivity 26.31mm/rev, min 53% max 106% over 100.2mmI am using this on a Tevo Little Monster with a real e3D Titan Extruder.
-
RE: 6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
@alankilian It works when I am printing but whenever I get retractions it goes into a pause state.
-
RE: 6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
@alankilian Thank you that picture. It seems at one point I reversed the direction of the idler. I am getting an short green flash with a long red flash now. When I move filament thru it it becomes green. I will try to test with it shortly and see if that does it.
-
RE: 6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
@alankilian That did not resolve the issue
-
RE: 6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
Long bolts are as tight as they will go.
-
RE: 6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
This came with the plastic housing. I did see this documentation but they do not go into detail on how to solve this.
-
RE: 6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
I do not have the two pin connector connected to anything. Could that be the issue? I am trying to avoid switching firmwares as it quite a challenge for me the first time.
-
6 Red flashes in the duet monitor sensor v1.7a. Duet 2 Wifi
I bought this rotary sensor a while back for my Duet 2 and could not get it to work for the life of me. I keep getting 6 red flashes even after running the trouble shooting steps. I have it on a Tevo Little Monster (Titan Extruder). I do not get any green LEDs when initializing. Printing with it returns the pause code.
M591 D0 retuns:
Duet3D magnetic filament monitor on input 3, enabled, sensitivity 24.80mm/rev, allow 70% to 130%, check every 3.0mm, no data receivedConfig is as follows:
; Configuration file for Duet WiFi (firmware version 2.03)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Thu Apr 30 2020 15:44:36 GMT-0400 (Eastern Daylight Time); General preferences
G90 ; send absolute coordinates...
M83 ; ...but relative extruder moves
M550 P"The Fortune Teller" ; set printer name
M665 R155 L397.19 B155 H520 ; Set delta radius, diagonal rod length, printable radius and homed height
M666 X0 Y0 Z0 ; put your endstop adjustments here, or let auto calibration find them; Network
M551 P"Turnip123!" ; set password
M552 S1 ; enable network
M586 P0 S1 ; enable HTTP
M586 P1 S1 ; enable FTP
M586 P2 S1 ; enable Telnet; Drives
M569 P0 S1 ; physical drive 0 goes forwards
M569 P1 S1 ; physical drive 1 goes forwards
M569 P2 S1 ; physical drive 2 goes forwards
M569 P3 S1 ; physical drive 3 goes forwards
M584 X0 Y1 Z2 E3 ; set drive mapping
M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
M92 X80.00 Y80.00 Z80.00 E420 ; set steps per mm
M566 X1200.00 Y1200.00 Z1200.00 E3000.00 ; set maximum instantaneous speed changes (mm/min)
M203 X40000.00 Y40000.00 Z40000.00 E3000.00 ; set maximum speeds (mm/min)
M201 X1000.00 Y1000.00 Z1000.00 E1500.00 ; set accelerations (mm/s^2)
M906 X1800 Y1800 Z1800 E1500 I30 ; set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout
M915 X Y Z S20 F1 R3; Axis Limits
M208 Z0 S1 ; set minimum Z; Endstops
M574 X2 Y2 Z2 S1 ; set active high endstops
M591 D0 P3 C3 S1 R70:130 L24.8 E3.0 ; Duet3D rotating magnet sensor for extruder drive 0 is connected to E0 endstop input, enabled, sensitivity 24.8mm.rev, 70% to 130% tolerance, 3mm detection lengthM591 D0 ; display filament sensor parameters for extruder drive 0
; Z-Probe
M307 H3 A-1 C-1 D-1 ; disable heater on PWM channel for BLTouch
M558 P9 H5 F120 T6000 R0.2 ; set Z probe type to bltouch and the dive height + speeds
G31 P500 X0 Y20 Z1.37 ; set Z probe trigger value, offset and trigger height
M557 R150 S45 ; define mesh grid; Heaters
M307 H0 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit
M305 P0 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 0
M143 H0 S120 ; set temperature limit for heater 0 to 120C
M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1
M143 H1 S280 ; set temperature limit for heater 1 to 280C; Fans
M106 P0 S0 I0 F500 H-1 X0.75 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
M106 P1 S1 I0 F500 H1 T45 ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on; Tools
M563 P0 D0 H1 F0 ; define tool 0
G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C; Custom settings are not defined
; Miscellaneous
M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss
M501Override is as follows:
; config-override.g file generated in response to M500 at 2020-09-15 14:08
; This is a system-generated file - do not edit
; Delta parameters
M665 L400.659:400.659:400.659 R157.354 H523.578 B155.0 X0.417 Y0.551 Z0.000
M666 X0.650 Y-1.210 Z0.560 A-0.25 B-0.21
; Heater model parameters
M307 H0 A90.0 C700.0 D10.0 S1.00 V0.0 B0
M307 H1 A286.1 C196.6 D4.9 S0.50 V23.8 B0
M307 H2 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H4 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H5 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H6 A340.0 C140.0 D5.5 S1.00 V0.0 B0
M307 H7 A340.0 C140.0 D5.5 S1.00 V0.0 B0
G10 L2 P1 X0.00 Y0.00 Z0.00
G10 L2 P2 X0.00 Y0.00 Z0.00
G10 L2 P3 X0.00 Y0.00 Z0.00
G10 L2 P4 X0.00 Y0.00 Z0.00
G10 L2 P5 X0.00 Y0.00 Z0.00
G10 L2 P6 X0.00 Y0.00 Z0.00
G10 L2 P7 X0.00 Y0.00 Z0.00
G10 L2 P8 X0.00 Y0.00 Z0.00
G10 L2 P9 X0.00 Y0.00 Z0.00I have gotten the Bigtree Smart sensor to run on Marlin boards without issue, so I am not sure what is going on here. Open to suggestions.
Thanks,
Dom -
RE: No Filament Sensor Feedback
@T3P3Tony Following up on this as I am still a bit confused with this setup. I am running Bigtrees smart F sensor on many of my marlin machines, which I believe follows the same concept of the duet one.
-
RE: No Filament Sensor Feedback
I had it without. Disabled because it was not working.
-
No Filament Sensor Feedback
Good day,
I have installed the IR Duet F sensor on my Duet 2. Can't seem to get feedback on the thing using M591 D0 or print functionally. It is installed right before a Titan extruder. I have extrusion but it does not seem to pick it up.
This is in my config
;M591 D0 P3 C3 S1 R70:130 L24.8 E8.0 ; Duet3D rotating magnet sensor for extruder drive 0 is connected to E0 endstop input, enabled, sensitivity 24.8mm.rev, 70% to 130% tolerance, 3mm detection length;M591 D0 ; display filament sensor parameters for extruder drive 0
Thank you!
-
RE: Tevo Little Monster delta endstopless homing
@Phaedrux Thank you for all your help on this. I bought the endstop and its coming in a few days so no need to waste both our time on this. Sorry for the inconvenience.
-
RE: Tevo Little Monster delta endstopless homing
Now it homes one axis every time I G28 but a different axis every time with a net downward movement still.
-
RE: Tevo Little Monster delta endstopless homing
Okay this one was odd.
Y and Z jumped down a good 50mm but then raised up about half that distance but is now lowering every time I run G28.
X just lowers to the same height that Y and Z end in one motion.
-
RE: Tevo Little Monster delta endstopless homing
My config
; Configuration file for Duet WiFi (firmware version 2.03)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Sat Apr 25 2020 21:37:52 GMT-0400 (Eastern Daylight Time); General preferences
G90 ; send absolute coordinates...
M83 ; ...but relative extruder moves
M550 P"The Fortune Teller" ; set printer name
M665 R155 L397.19 B155 H520 ; Set delta radius, diagonal rod length, printable radius and homed height
M666 X0 Y0 Z0 ; put your endstop adjustments here, or let auto calibration find them; Network
M551 P"Turnip123!" ; set password
M552 S1 ; enable network
M586 P0 S1 ; enable HTTP
M586 P1 S0 ; disable FTP
M586 P2 S0 ; disable Telnet; Drives
M569 P0 S1 ; physical drive 0 goes forwards
M569 P1 S1 ; physical drive 1 goes forwards
M569 P2 S1 ; physical drive 2 goes forwards
M569 P3 S1 ; physical drive 3 goes forwards
M584 X0 Y1 Z2 E3 ; set drive mapping
M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
M92 X80.00 Y80.00 Z80.00 E403.00 ; set steps per mm
M566 X1200.00 Y1200.00 Z1200.00 E1200.00 ; set maximum instantaneous speed changes (mm/min)
M203 X18000.00 Y18000.00 Z18000.00 E9000.00 ; set maximum speeds (mm/min)
M201 X5000.00 Y5000.00 Z5000.00 E1000.00 ; set accelerations (mm/s^2)
M906 X1000 Y1000 Z1000 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Axis Limits
M208 Z0 S1 ; set minimum Z; Endstops
M574 X2 Y2 Z2 S3 ; set endstops controlled by motor stall detection; Z-Probe
M307 H3 A-1 C-1 D-1 ; disable heater on PWM channel for BLTouch
M558 P9 H5 F120 T7200 ; set Z probe type to bltouch and the dive height + speeds
G31 P500 X0 Y20 Z1.3 ; set Z probe trigger value, offset and trigger height
M557 R150 S45 ; define mesh grid; Heaters
M307 H0 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit
M305 P0 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 0
M143 H0 S120 ; set temperature limit for heater 0 to 120C
M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1
M143 H1 S280 ; set temperature limit for heater 1 to 280C; Fans
M106 P0 S0 I0 F500 H1 T45 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P1 S1 I0 F500 H1 T45 ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on; Tools
M563 P0 S"Extruder" D0 H1 F0 ; define tool 0
G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C; Custom settings
M591 D0 C3 P2 E6.0My homedelta
; homedelta.g
; called to home all towers on a delta printer
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Sat Apr 25 2020 21:37:52 GMT-0400 (Eastern Daylight Time)
M400 ; make sure everything has stopped before we make changes
M915 P0:1:2 S2 F1 H400 R0
M574 X2 Y2 Z2 S3 ; set endstops to use motor stall
M913 X55 Y55 Z55 ; reduce motor current to 50% to prevent belts slipping
G91 ; relative positioning
G1 H1 X705 Y705 Z705 F4000 ; move all towers to the high end stopping at the endstops (first pass)
G1 H2 X-5 Y-5 Z-5 F7200 ; go down a few mm
G1 H1 X10 Y10 Z10 F360 ; move all towers up once more (second pass)
G1 Z-5 F7200 ; move down a few mm so that the nozzle can be centred
G90 ; absolute positioning
G1 X0 Y0 F7200 ; move X+Y to the centre
M400 ; make sure everything has stopped before we reset the motor currents
M913 X100 Y100 Z100 ; motor currents back to normal
G1 X0 Y0 F2000 ; centre the head and set a reasonable feed rateWhat currently happens with this specific homedelta.g is the effector rams itself into the endstop position and returns two errors, target position not reachable from current position and insufficient axis homed.
-
RE: Tevo Little Monster delta endstopless homing
@Phaedrux said in Tevo Little Monster delta endstopless homing:
I live near New York City and I have put my 14 3D printers to work printing 250 shields a day. I was running my SBase on the TLM until the board died. Turned out one of my endstops died too, which is why I am trying to run sensor less homing. My temp errors went away when I moved to Firmware 2.03-2.05 from 3, so that's taken care of. Guess ill buy the endstop and wait another week until I bring this thing back to life.