Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    Trouble with the Duet 2 on a Monoprice Maker Ultimate

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    monopricemakerultimate wanhaoduplicator6 wanhaod6
    4
    41
    1.4k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • thejmatherundefined
      thejmather @A Former User
      last edited by

      @bearer Yep, it just needed the ol' "turn it off and then on again" treatment. Let's see where I'm at functionality wise with 3.1.1 now that I'm not trying to run a v3 config on v2 firmware LOL...

      1 Reply Last reply Reply Quote 0
      • thejmatherundefined
        thejmather
        last edited by

        Neat! It mostly seems to be working. Endstops are good. BLTouch is good.

        I was warming things up to do a bed probe though, and got:

        Error: Heater 0 fault: temperature rising much more slowly than the expected 1.7°C/sec

        I don't see much for options in the config editor to counter this, though...

        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 Fri Oct 09 2020 21:30:59 GMT-0400 (Eastern Daylight Time)
        
        ; General preferences
        G90                                                    ; send absolute coordinates...
        M83                                                    ; ...but relative extruder moves
        M550 P"MPUltimate"                                     ; set printer name
        
        ; Network
        M552 S1                                                ; enable network
        M586 P0 S1                                             ; enable HTTP
        M586 P1 S0                                             ; disable FTP
        M586 P2 S1                                             ; enable 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 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 Z800.00 E94.30                       ; set steps per mm
        M566 X600.00 Y600.00 Z24.00 E60.00                     ; set maximum instantaneous speed changes (mm/min)
        M203 X7200.00 Y7200.00 Z300.00 E300.00                 ; set maximum speeds (mm/min)
        M201 X800.00 Y800.00 Z100.00 E500.00                   ; set accelerations (mm/s^2)
        M906 X1000 Y1000 Z1000 E1000 I50                       ; 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 X200 Y200 Z175 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 Z1 S2                                             ; configure Z-probe endstop for low end on Z
        
        ; Z-Probe
        M950 S0 C"exp.heater3"                                 ; 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 X31 Y-20 Z1                                   ; set Z probe trigger value, offset and trigger height
        M557 X31:200 Y0:180 S10                                ; 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
        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
        
        ; 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
        M501                                                   ; load saved parameters from non-volatile memory
        T0                                                     ; select first tool
        
        Phaedruxundefined 2 Replies Last reply Reply Quote 0
        • Phaedruxundefined
          Phaedrux Moderator @thejmather
          last edited by

          @thejmather said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

          Error: Heater 0 fault: temperature rising much more slowly than the expected 1.7°C/sec

          You'll need to PID tune your heaters.

          Info: https://duet3d.dozuki.com/Wiki/Tuning_the_heater_temperature_control
          Guide: https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+4:+Calibration/40#s161

          Z-Bot CoreXY Build | Thingiverse Profile

          thejmatherundefined 1 Reply Last reply Reply Quote 0
          • Phaedruxundefined
            Phaedrux Moderator @thejmather
            last edited by

            @thejmather said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

            ; 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

            It looks like you're missing a hotend heatsink fan, which would normally be on fan1.

            Z-Bot CoreXY Build | Thingiverse Profile

            thejmatherundefined 1 Reply Last reply Reply Quote 0
            • thejmatherundefined
              thejmather @Phaedrux
              last edited by

              @Phaedrux said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

              https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+4:+Calibration/40#s161

              Cool - I wasn't sure if that still applied when using the "bang-bang" control method.

              Phaedruxundefined 1 Reply Last reply Reply Quote 0
              • Phaedruxundefined
                Phaedrux Moderator @thejmather
                last edited by

                @thejmather Bang-bang isn't recommended at all. Once the heaters are tuned with M303, you can send M500 to save the results to config-override.g. Your config.g already has M501 at the end to load them at boot.

                Z-Bot CoreXY Build | Thingiverse Profile

                thejmatherundefined 1 Reply Last reply Reply Quote 0
                • thejmatherundefined
                  thejmather @Phaedrux
                  last edited by

                  @Phaedrux said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

                  @thejmather said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

                  ; 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

                  It looks like you're missing a hotend heatsink fan, which would normally be on fan1.

                  I'm lazy and have it plugged into one of the always-on fan spots.

                  I've read that I can hook up the built-in LED lights to one of the PWM fan connections too... might give that a try.

                  Phaedruxundefined 1 Reply Last reply Reply Quote 0
                  • thejmatherundefined
                    thejmather @Phaedrux
                    last edited by

                    @Phaedrux said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

                    @thejmather Bang-bang isn't recommended at all. Once the heaters are tuned with M303, you can send M500 to save the results to config-override.g. Your config.g already has M501 at the end to load them at boot.

                    Ah, good to know bang-bang isn't recommended. I'll get the pid tuning done in a jiffy here...

                    1 Reply Last reply Reply Quote 0
                    • Phaedruxundefined
                      Phaedrux Moderator @thejmather
                      last edited by Phaedrux

                      Fan2 would be a good candidate for LEDs. Fan1 is intended for the hotend because it will power on automatically briefly at power up in case the hotend was hot during a reboot.

                      You'd need this in your config to add a thermostatically controlled fan for the hotend.

                      ; Fans
                      M950 F1 C"fan1" Q500                                   ; create fan 1 on pin fan1 and set its frequency
                      M106 P1 S1 H1 T45                                        ; set fan 1 value. Thermostatic control is turned on when hotend is 45c
                      

                      For fan 2 and the leds it would be the same as your fan0, except F2 and P2

                      ; Fans
                      M950 F2 C"fan2" Q500                                   ; create fan 2 on pin fan1 and set its frequency
                      M106 P2 S1 H-1                                        ; set fan 2 for LED controlled by slider. on by default.
                      

                      The Q value is the PID frequency and you can adjust it needed for fans or LEDs. Different fans and leds will work differently sometimes.

                      Z-Bot CoreXY Build | Thingiverse Profile

                      thejmatherundefined 2 Replies Last reply Reply Quote 0
                      • thejmatherundefined
                        thejmather @Phaedrux
                        last edited by

                        @Phaedrux said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

                        Fan2 would be a good candidate for LEDs. Fan1 is intended for the hotend because it will power on automatically briefly at power up in case the hotend was hot during a reboot.

                        You'd need this in your config to add a thermostatically controlled fan for the hotend.

                        ; Fans
                        M950 F1 C"fan1" Q500                                   ; create fan 1 on pin fan1 and set its frequency
                        M106 P1 S1 H1 T45                                        ; set fan 1 value. Thermostatic control is turned on when hotend is 45c
                        

                        Awesome, after I'm pid-tuned I'll put the patient back on the operating table and flip things around a bit.

                        1 Reply Last reply Reply Quote 0
                        • thejmatherundefined
                          thejmather @Phaedrux
                          last edited by

                          @Phaedrux Thank you so much for the tips. The 500 seems to be working good for the fans I have in place at the moment, but I could totally see the LEDs being more fickle, and it's great to know what lever to start with.

                          1 Reply Last reply Reply Quote 0
                          • Phaedruxundefined
                            Phaedrux Moderator
                            last edited by

                            https://duet3d.dozuki.com/Wiki/Connecting_and_configuring_fans

                            You're well on your way now that you have the right firmware and config paired.

                            When in doubt there's the gcode wiki. https://duet3d.dozuki.com/Wiki/Gcode

                            Z-Bot CoreXY Build | Thingiverse Profile

                            thejmatherundefined 1 Reply Last reply Reply Quote 0
                            • thejmatherundefined
                              thejmather @Phaedrux
                              last edited by

                              @Phaedrux said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

                              https://duet3d.dozuki.com/Wiki/Connecting_and_configuring_fans

                              You're well on your way now that you have the right firmware and config paired.

                              When in doubt there's the gcode wiki. https://duet3d.dozuki.com/Wiki/Gcode

                              I'll be curious to see what the calibration cube looks like once this is all set.

                              The one on the v2 firmware looked pretty good, aside from some weirdness around the edge corners of the X, even after doing an extruder calibration.

                              Any recommendation on the best balance for auto bed leveling? Is there a such thing as "too many points of data" if I'm willing to wait for it to take tons of measurements?

                              On the Wanhao controller, there was only enough memory (or something) for Marlin to handle 9 points of data, but it seemed to still work fairly well.

                              This printer was a super cheap open-box-special, and I'm fairly certain it was open box because whoever got it realized the bed was ... we'll say "special".

                              1 Reply Last reply Reply Quote 0
                              • thejmatherundefined
                                thejmather
                                last edited by thejmather

                                My lovely build bed, btw... lol...
                                My lovely build bed...
                                another shot...

                                1 Reply Last reply Reply Quote 0
                                • Phaedruxundefined
                                  Phaedrux Moderator
                                  last edited by

                                  That PID calibration guide I linked also goes into extruder calibration so check that part out too.

                                  That bed map could indicate a sagging X gantry as well.

                                  You can use up to 441 points and save the results. So as long as your bed is fairly stable you can do it once and then load it before the print in the slicer start gcode with G29 S1.

                                  Z-Bot CoreXY Build | Thingiverse Profile

                                  thejmatherundefined 1 Reply Last reply Reply Quote 0
                                  • thejmatherundefined
                                    thejmather @Phaedrux
                                    last edited by

                                    @Phaedrux said in Trouble with the Duet 2 on a Monoprice Maker Ultimate:

                                    G29 S1

                                    So without the G29 S1 in the print start code it doesn't use any bed leveling?

                                    That could explain some of the other issues I've been having trying to use more of the build bed...

                                    1 Reply Last reply Reply Quote 0
                                    • Phaedruxundefined
                                      Phaedrux Moderator
                                      last edited by

                                      If you run G29 and create a map it will save it and apply it right then and there but it won't persist across power cycles or if given a command to disable it. G29 S1 loads a previously saved heightmap.

                                      https://duet3d.dozuki.com/Wiki/Using_mesh_bed_compensation

                                      Z-Bot CoreXY Build | Thingiverse Profile

                                      thejmatherundefined 1 Reply Last reply Reply Quote 0
                                      • thejmatherundefined
                                        thejmather @Phaedrux
                                        last edited by

                                        @Phaedrux Duly noted. Added to the slicer's pre-print gcode.

                                        Latest print seems to be coming out fine.

                                        Next up is the controller mount for the Duet 2...

                                        Thanks to everyone for all the help!

                                        1 Reply Last reply Reply Quote 0
                                        • First post
                                          Last post
                                        Unless otherwise noted, all forum content is licensed under CC-BY-SA