Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. fwny
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 7
    • Best 0
    • Controversial 0
    • Groups 0

    fwny

    @fwny

    0
    Reputation
    1
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    fwny Unfollow Follow

    Latest posts made by fwny

    • RE: Extruder 0 reports sensor not working

      @Phaedrux Just put a twist in the wiring with a drill and heatgun. Running a print now to see how reliable it is.

      I'd rather not place the monitor so far from the extruder but low accuracy is preferable to random pauses from comm errors.

      posted in Filament Monitor
      fwnyundefined
      fwny
    • RE: Extruder 0 reports sensor not working

      I had it mounted right before the extruder but wiring had to pass a long distance beside the extruder stepper motor's wires. Concerned it might have been interference I moved it to the end of the bowden tube. I have a Railcore 300ZL (https://www.filastruder.com/products/railcore-ii-300zl-kit)

      This new position keeps the monitor wiring away from stepper motor wiring.

      posted in Filament Monitor
      fwnyundefined
      fwny
    • RE: Extruder 0 reports sensor not working

      Seems to report fine. agc is much less than 105

      M591 D0
      Duet3D rotating magnet filament monitor v3 on pin e0stop, enabled, sensitivity 25.00mm/rev, allow 70% to 130%, check every 15.0mm, version 3, mag 133 agc 78, no calibration data

      posted in Filament Monitor
      fwnyundefined
      fwny
    • RE: Extruder 0 reports sensor not working

      Extra info requests from help guide:

      Duet 2 Wifi with a Duex (filament monitor is on e0stop on Duet)
      RepRepFirmware Version 3.1.1
      config.g attached
      config.g

      posted in Filament Monitor
      fwnyundefined
      fwny
    • Extruder 0 reports sensor not working

      I have the rotating magnet filament sensor and keep getting "Extruder 0 reports sensor not working" at seemingly random intervals and the print gets paused.

      In between those failures, the sensor works fine. I read elsewhere that it might be due to interference so I moved the wiring outside of the wire harness to be away from stepper wiring but the issue persists.

      In the meantime I've had to remove the sensor. I went through the troubleshooting page and nothing on it seems applicable to my situation. The agc is 74, other values are well within range and everything appears to be working normally outside of this intermittent issue.

      posted in Filament Monitor
      fwnyundefined
      fwny
    • RE: Can't run homex.g with M98

      I think I may have solved it. Missing S2 on the second last line. That'll teach me to work on this stuff so late at night and tired.

      posted in My Duet controlled machine
      fwnyundefined
      fwny
    • Can't run homex.g with M98

      I am trying to run homex.g via M98 and it seems to produce the following error:

      12:00:39 AM
      M98 P"homex.g"
      Error: G0/G1: insufficient axes homed

      The contents of the file are

      ; X axis homing file for dc42 Duet firmware
      G91
      G1 Z4 F200 S2
      G1 X-280 F3000 S1
      G1 X4 F600
      G1 X-10 S1
      G1 Z-4 F200
      G90

      I can run the contents myself with no issues at all. It is only when I try to invoke with M98 does this issue arise.

      Here is my config.g:

      ; Configuration file for My Printer
      ; Communication and general
      M111 S0 ; Debug off
      M550 PRailCore ; Machine name and Netbios name (can be anything you like)
      ;M551 Pmyrap ; Machine password (used for FTP)
      ;*** If you have more than one Duet on your network, they must all have different MAC addresses, so change the last digits
      M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0xEE ; MAC Address
      ;*** Wifi Networking
      M552 S1 ; Enable WiFi
      M555 P2 ; Set output to look like Marlin
      M575 P1 B57600 S1 ; Comms parameters for PanelDue

      G21 ; Work in millimetres
      G90 ; Send absolute coordinates...
      M83 ; ...but relative extruder moves

      ; Axis and motor configuration
      M669 K1 ; CoreXY mode

      M584 X0 Y1 Z5:6:7 E3:4:8:9 ; Map Z to drivers 5, 6, 7. Define unused drivers 3,4,8 and 9 as extruders
      M569 P0 S1 ; Drive 0 goes forwards (change to S0 to reverse it) X stepper (Rear)
      M569 P1 S0 ; Drive 1 goes backwards Y Stepper (Front)
      M569 P2 S1 ; Drive 2 goes forwards Unused
      M569 P3 S1 ; Drive 3 goes forwards Extruder
      M569 P4 S1 ; Drive 4 goes forwards Extruder (unused)
      M569 P5 S0 ; Drive 5 goes backwards Front Left Z
      M569 P6 S0 ; Drive 6 goes backwards Rear Left Z
      M569 P7 S1 ; Drive 7 goes backwards Right Z

      ;Leadscrew locations
      M671 X-10:-10:344 Y21:275:146 S7.5 ;Front left, Rear Left, Right S7.5 is the max correction - measure your own offsets, to the bolt for the yoke of each leadscrew

      M350 X16 Y16 Z16 E16 I1 ; set 16x microstepping for axes& extruder, with interpolation
      M574 X1 Y1 Z0 S1 ; set homing switch configuration (x,y at min, z at max) IF YOU NEED TO REVERSE YOUR HOMING SWITCHES CHANGE S1 to S0
      M906 X1400 Y1400 Z1000 E1250 I60 ; Set motor currents (mA)
      M201 X2500 Y2500 Z80 E1500 ; Accelerations (mm/s^2)
      M203 X24000 Y24000 Z900 E3600 ; Maximum speeds (mm/min)
      M566 X1000 Y1000 Z80 E1500 ; Maximum jerk speeds mm/minute
      M208 X295 Y300 Z330 ; set axis maxima and high homing switch positions (adjust to suit your machine)
      M208 X0 Y0 Z-0.5 S1 ; set axis minima and low homing switch positions (adjust to make X=0 and Y=0 the edges of the bed)
      M92 X200 Y200 Z1600 E837 ; steps/mm

      ; Thermistors
      M305 P0 T100000 B4240 R4700 H0 L0 ; Put your own H and/or L values here to set the bed thermistor ADC correction
      M305 P1 T100000 B4725 R4700 H0 L0 C7.06e-8 ; Put your own H and/or L values here to set the first nozzle thermistor ADC correction
      M305 P105 S"Keenovo" X5 T100000 B3950 R4700

      M307 H0 A276.1 C816.1 D11.9 S1.00 V24.3 B0 ; Bed Heaters
      M307 H1 A430.0 C241.4 D3.7 S1.00 V24.3 B0 ;Heater 1 model
      M570 S360 ; Hot end may be a little slow to heat up so allow it 180 seconds
      M143 S285

      ; Fans
      M106 P0 H-1 ; disable thermostatic mode for fan 0
      M106 P1 T45 H1 ; enable thermostatic mode for fan 1
      M106 P2 H-1
      M106 P0 S0 ; turn off fans
      M106 P2 S0

      ; Tool definitions
      M563 P0 D0 H1 ; Define tool 0
      G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures

      ;BLTouch - comment out the following 3 lines if using a IR Probe
      M307 H3 A-1 C-1 D-1
      M558 P9 X0 Y0 Z1 H5 F50 T6000 A5 S0.02
      G31 X2.3 Y41.6 Z2.73 P25 ; Customize your offsets appropriately - do a paper test, and put the probed value in the Z value here

      M208 S1 Z-0.2 ; set minimum Z
      T0 ; select first hot end
      M581 T1 E2 S0 C0 ;filament sentinel
      M557 X45:280 Y45:255 S210 ;configure mesh points

      I am running 2.02(RTOS) (2018-12-24b1)

      posted in My Duet controlled machine
      fwnyundefined
      fwny