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

    Sqwuid

    @Sqwuid

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

    Sqwuid Unfollow Follow

    Best posts made by Sqwuid

    • RE: [Newbie] IR Mini Z Probe Install and Calibration Issues

      I was using that and DC42's instructions for the IR Mini, my original post was about an error I was receiving about the IR Probe stopping.

      "Z probe was not triggered during probing move
      Stopped at height -0.000 mm"

      Except that the reading from the head I am getting is -3.50...

      posted in IR Height Sensor
      Sqwuidundefined
      Sqwuid

    Latest posts made by Sqwuid

    • RE: Updated to V3, now nothing works!

      Nope! We just fixed it xD and I berated my husband for it lol.

      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      EDIT: We are stupid. I just counted the pins again. My husband is blind. I am blaming him for this one!

      It's deploying now. Love you guys, thanks so much!

      alt text

      ~~Pretty sure, according to the diagram.

      I used to have it on heater3 with v2 and it worked fine. When it stopped working after trying to update, we went back to basics and followed the tutorial to the letter. That included moving it to heater7.

      We changed that in the config, however. We're just not sure if any of it is right now because of the update.~~

      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      You're a dream, thank you!

      M280 P0 S10 ; deploy BLTouch

      M280 P0 S90 ; retract BLTouch

      We just tried using M401/M402 and it didn't respond either.

      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Sat Sep 05 2020 05:42:29 GMT-0500 (Central Daylight Time)
      G91                     ; relative positioning
      G1 H2 Z5 F6000          ; lift Z relative to current position
      G1 H1 X-725 Y-355 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
      G1 H2 X5 Y5 F6000       ; go back a few mm
      G1 H1 X-725 Y-355 F360  ; move slowly to X and Y axis endstops once more (second pass)
      G90                     ; absolute positioning
      G1 X350 Y150 F6000        ; go to first bed probe point and home Z
      G30                     ; home Z by probing the bed
      
      ; Uncomment the following lines to lift Z after probing
      ;G91                    ; relative positioning
      ;G1 Z5 F100             ; lift Z relative to current position
      ;G90                    ; absolute positioning
      
      ; homex.g
      ; called to home the X axis
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Sat Sep 05 2020 05:42:29 GMT-0500 (Central Daylight Time)
      G91               ; relative positioning
      G1 H2 Z5 F6000    ; lift Z relative to current position
      G1 H1 X-725 F1800 ; move quickly to X axis endstop and stop there (first pass)
      G1 H2 X5 F6000    ; go back a few mm
      G1 H1 X-7255 F360  ; move slowly to X axis endstop once more (second pass)
      G1 H2 Z-5 F6000   ; lower Z again
      G90               ; absolute positioning
      
      ; homey.g
      ; called to home the Y axis
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Sat Sep 05 2020 05:42:29 GMT-0500 (Central Daylight Time)
      G91               ; relative positioning
      G1 H2 Z5 F6000    ; lift Z relative to current position
      G1 H1 Y-355 F1800 ; move quickly to Y axis endstop and stop there (first pass)
      G1 H2 Y5 F6000    ; go back a few mm
      G1 H1 Y-355 F360  ; move slowly to Y axis endstop once more (second pass)
      G1 H2 Z-5 F6000   ; lower Z again
      G90               ; absolute positioning
      
      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Sat Sep 05 2020 05:42:29 GMT-0500 (Central Daylight Time)
      G91              ; relative positioning
      G1 H2 Z5 F6000   ; lift Z relative to current position
      G90              ; absolute positioning
      G1 X350 Y150 F6000 ; go to first probe point
      G30              ; home Z by probing the bed
      
      ; Uncomment the following lines to lift Z after probing
      ;G91             ; relative positioning
      ;G1 Z5 F100      ; lift Z relative to current position
      ;G90             ; absolute positioning
      
      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      We don't technically have a z endstop, just the probe. Not sure if that counts.

      We've run through a bunch of stuff, updated, edited, auto-tuned (cause that's a thing now, that's cool 🙂 ), but we're running into bl touch deploying issues. Shocking, one more bl touch question.

      Probe tests itself upon startup. M280 commands are not working, however.

      Below is our current config.g.

      ; Configuration file for Duet WiFi (firmware version 3)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Sat Sep 05 2020 05:42:29 GMT-0500 (Central Daylight Time)
      
      ; General preferences
      G90                                                    ; send absolute coordinates...
      M83                                                    ; ...but relative extruder moves
      M550 P"Folgertech FT6"                                 ; set printer name
      
      ; Network
      M552 S1                                                ; enable network
      M586 P0 S1                                             ; enable HTTP
      M586 P1 S0                                             ; disable FTP
      M586 P2 S0                                             ; disable Telnet
      
      ; Drives
      M569 P0 S0                                             ; physical drive 0 goes backwards
      M569 P1 S1                                             ; physical drive 1 goes forwards
      M569 P2 S0                                             ; physical drive 2 goes backwards
      M569 P3 S0                                             ; physical drive 3 goes backwards
      M584 X0 Y1 Z2 E3                                       ; set drive mapping
      M350 X16 Y16 Z16 E16 I1                                ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z721.92 E88.32                       ; set steps per mm
      M566 X900.00 Y900.00 Z12.00 E120.00                    ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E1200.00                ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z20.00 E250.00                    ; set accelerations (mm/s^2)
      M906 X1500 Y1500 Z1500 E1500 I30                       ; set motor currents (mA) and motor idle factor in per cent
      M84 S30                                                ; Set idle timeout
      
      ; Axis Limits
      M208 X0 Y0 Z0 S1                                       ; set axis minima
      M208 X670 Y320 Z384 S0                                 ; set axis maxima
      
      ; Endstops
      M574 X1 S1 P"xstop"                                    ; configure active-high endstop for low end on X via pin xstop
      M574 Y1 S1 P"ystop"                                    ; configure active-high endstop for low end on Y via pin ystop
      M574 Z2 S2                                             ; configure Z-probe endstop for high end on Z
      
      ; Z-Probe
      M950 S0 C"exp.heater7"                                 ; create servo pin 0 for BLTouch
      M558 P9 C"^zprobe.in" H5 F120 T6000                    ; set Z probe type to bltouch and the dive height + speeds
      G31 P500 X8 Y22 Z1.089                                 ; set Z probe trigger value, offset and trigger height
      M557 X20:670 Y20:320 S200                              ; define mesh grid
      
      ; Heaters
      M308 S0 P"bedtemp" Y"thermistor" T100000 B4138         ; configure sensor 0 as thermistor on pin bedtemp
      M950 H0 C"bedheat" T0                                  ; create bed heater output on bedheat and map it to sensor 0
      M307 H0 B1 S1.00                                       ; enable bang-bang mode for the bed heater and set PWM limit
      M140 H0                                                ; map heated bed to heater 0
      M143 H0 S120                                           ; set temperature limit for heater 0 to 120C
      M307 H0 A129.6 C719.5 D0.9 V24.2 B0                    ; autotune for PID bedheat
      M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8 ; configure sensor 1 as thermistor on pin e0temp
      M950 H1 C"e0heat" T1                                   ; create nozzle heater output on e0heat and map it to sensor 1
      M307 H1 B0 S1.00                                       ; disable bang-bang mode for heater  and set PWM limit
      
      ; Fans
      M950 F0 C"fan0" Q500                                   ; create fan 0 on pin fan0 and set its frequency
      M106 P0 S0 H-1                                         ; set fan 0 value. Thermostatic control is turned off
      M950 F1 C"fan1" Q500                                   ; create fan 1 on pin fan1 and set its frequency
      M106 P1 S1 H-1                                         ; set fan 1 value. Thermostatic control is turned off
      
      ; Tools
      M563 P0 S"Nozzle" D0 H1 F-1                            ; 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
      M575 P1 S1 B57600                                      ; enable support for PanelDue
      
      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      Ok! Thanks so much for your help so far. We're redoing the config file now because all of our troubleshooting got it all mixed up!

      We had a question about the i/o mapping since we have the bl touch. Will the endstop pin just be zstop?

      When we do that, the M574 command for Z disappears from config and the only thing left is Z-Probe stuff.

      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      Got it squared away, had to take out sd card and all that. Alright, we are updated completely and I can now see my tools. Got some issues with the heater I guess and some warning messages.

      m98 P"Config.g"

      Warning: Heater 1 appears to be over-powered. If left on at full power, its temperature is predicted to reach 365C

      Current config

      ; Configuration file for Duet WiFi (firmware version 3)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Sat Sep 05 2020 05:42:29 GMT-0500 (Central Daylight Time)
      
      ; General preferences
      G90                                                    ; send absolute coordinates...
      M83                                                    ; ...but relative extruder moves
      M550 P"Folgertech FT6"                                 ; set printer name
      
      ; Network
      M552 S1                                                ; enable network
      M586 P0 S1                                             ; enable HTTP
      M586 P1 S0                                             ; disable FTP
      M586 P2 S0                                             ; disable Telnet
      
      ; Drives
      M569 P0 S0                                             ; physical drive 0 goes backwards
      M569 P1 S1                                             ; physical drive 1 goes forwards
      M569 P2 S0                                             ; physical drive 2 goes backwards
      M569 P3 S0                                             ; physical drive 3 goes backwards
      M584 X0 Y1 Z2 E3                                       ; set drive mapping
      M350 X16 Y16 Z16 E16 I1                                ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z721.92 E88.32                       ; set steps per mm
      M566 X900.00 Y900.00 Z12.00 E120.00                    ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E1200.00                ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z20.00 E250.00                    ; set accelerations (mm/s^2)
      M906 X1500 Y1500 Z1500 E1500 I30                       ; set motor currents (mA) and motor idle factor in per cent
      M84 S30                                                ; Set idle timeout
      
      ; Axis Limits
      M208 X0 Y0 Z0 S1                                       ; set axis minima
      M208 X670 Y320 Z384 S0                                 ; set axis maxima
      
      ; Endstops
      M574 X1 S1 P"xstop"                                    ; configure active-high endstop for low end on X via pin xstop
      M574 Y1 S1 P"ystop"                                    ; configure active-high endstop for low end on Y via pin ystop
      M574 Z2 S2                                             ; configure Z-probe endstop for high end on Z
      
      ; Z-Probe
      M950 S0 C"exp.heater7"                                 ; create servo pin 0 for BLTouch
      M558 P9 C"^zprobe.in" H5 F120 T6000                    ; set Z probe type to bltouch and the dive height + speeds
      G31 P500 X8 Y22 Z1.089                                 ; set Z probe trigger value, offset and trigger height
      M557 X20:670 Y20:320 S200                              ; define mesh grid
      
      ; Heaters
      M308 S0 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8 ; configure sensor 0 as thermistor on pin e0temp
      M950 H0 C"e0heat" T0                                   ; create nozzle heater output on e0heat and map it to sensor 0
      M307 H0 B0 S1.00                                       ; disable bang-bang mode for heater  and set PWM limit
      M308 S1 P"bedtemp" Y"thermistor" T100000 B4138         ; configure sensor 1 as thermistor on pin bedtemp
      M950 H1 C"bedheat" T1                                  ; create bed heater output on bedheat and map it to sensor 1
      M307 H1 B1 S1.00                                       ; enable bang-bang mode for the bed heater and set PWM limit
      M140 H1                                                ; map heated bed to heater 1
      M143 H1 S120                                           ; set temperature limit for heater 1 to 120C
      
      ; Fans
      M950 F0 C"fan0" Q500                                   ; create fan 0 on pin fan0 and set its frequency
      M106 P0 S0 H-1                                         ; set fan 0 value. Thermostatic control is turned off
      M950 F1 C"fan1" Q500                                   ; create fan 1 on pin fan1 and set its frequency
      M106 P1 S1 H-1                                         ; set fan 1 value. Thermostatic control is turned off
      
      ; Tools
      M563 P0 S"Nozzle" D0 H1 F-1                            ; 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
      M575 P1 S1 B57600                                      ; enable support for PanelDue
      
      
      
      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      I am now, for some reason the wifi module stopped working during the install. I am attempting to get it to reconnect.

      I've gotten the wifi module to idle, but after giving it the m587 command with my ssid and password it simply says "OK", and doesn't do anything. I can't access the web control.

      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      === Diagnostics ===<LF>RepRapFirmware for Duet 2 WiFi/Ethernet version 3.1.1 running on Duet WiFi 1.02 or later<LF>Board ID: 08DGM-917DA-G4MSJ-6J9FG-3S46K-1SP3B<LF>Used output buffers: 1 of 24 (2 max)<LF>=== RTOS ===<LF>Static ram: 27980<LF>Dynamic ram: 93692 of which 20 recycled<LF>Exception stack ram used: 256<LF>Never used ram: 9124<LF>Tasks: NETWORK(ready,1892) HEAT(blocked,1224) MAIN(running,1912) IDLE(ready,80)<LF>Owned mutexes:<LF>=== Platform ===<LF>Last reset 00:01:31 ago, cause: power up<LF>Last software reset at 2020-09-05 05:43, reason: User, spinning module GCodes, available RAM 12428 bytes (slot 1)<LF>Software reset code 0x0003 HFSR 0x00000000 CFSR 0x00000000 ICSR 0x0441f000 BFAR 0xe000ed38 SP 0xffffffff Task MAIN<LF>Error status: 0<LF>MCU temperature: min 27.2, current 31.2, max 31.4<LF>Supply voltage: min 0.4, current 1.6, max 1.6, under voltage events: 0, over voltage events: 0, power good: no<LF>Driver 0: ok, SG min/max not available<LF>Driver 1: ok, SG min/max not available<LF>Driver 2: ok, SG min/max not available<LF>Driver 3: o[Warning: Maximal number of bytes per line exceeded! Check the EOL (end-of-line) settings or increase the limit in the advanced terminal settings.]

      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      I did it again, it's moving up to 3.1.1 but it's been saying "please wait for the updates to be installed" for about 10 mins. The console on the paneldue says "Error: Failed to add SSID to remembered list"

      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid
    • RE: Updated to V3, now nothing works!

      alt text

      alt text

      alt text

      alt text

      I am not sure of anything anymore lol.

      posted in Duet Web Control
      Sqwuidundefined
      Sqwuid