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

    Connecting to web control

    Scheduled Pinned Locked Moved
    Duet Web Control
    4
    25
    1.0k
    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.
    • Yarundefined
      Yar
      last edited by

      The new config
      ; Configuration file for Duet WiFi (firmware version 2.00)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.2.3 on Fri Mar 12 2021 17:38:06 GMT-0600 (Central Standard Time)

      ; General preferences
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"Pierce - Ender 3" ; set printer name

      ; Network
      M551 P"Glur2005!" ; set password
      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 S0 ; physical drive 1 goes backwards
      M569 P2 S1 ; physical drive 2 goes forwards
      M569 P3 S0 ; physical drive 3 goes backwards
      M584 X0 Y1 Z2 E3 ; set drive mapping
      M350 E128 I0 ; configure microstepping without interpolation
      M350 X16 Y16 Z16 I1 ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z400.00 E93.00 ; set steps per mm
      M566 X600.00 Y600.00 Z60.00 E300.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X9000.00 Y9000.00 Z600.00 E6000.00 ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z120.00 E5000.00 ; set accelerations (mm/s^2)
      M906 X800 Y800 Z800 E900 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 X235 Y235 Z260 S0 ; set axis maxima

      ; Endstops
      M574 X1 Y1 S1 ; set active high endstops
      M574 Z1 S2 ; set endstops controlled by probe

      ; Z-Probe
      M558 P1 H5 F120 T6000 ; set Z probe type to unmodulated and the dive height + speeds
      G31 P500 X-45 Y-10 Z2.5 ; set Z probe trigger value, offset and trigger height
      M557 X10:220 Y10:220 S20 ; define mesh grid

      ; Heaters
      M305 P0 T9880 B4185 R4700 ; set thermistor + ADC parameters for heater 0
      M143 H0 S80 ; set temperature limit for heater 0 to 80C
      M305 P1 T9880 B4185 R4700 ; set thermistor + ADC parameters for heater 1
      M143 H1 S250 ; set temperature limit for heater 1 to 250C

      ; Fans
      M106 P0 S0 I0 F20 H-1 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
      M106 P1 S0 I0 F20 H1 T45 ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
      M106 P2 S0 I0 F20 H1:0 T45 ; set fan 2 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
      m918 p1 e4 ; enable 12864 LCD with 1 menu item per encoder click

      ; Miscellaneous
      M575 P1 S1 B57600 ; enable support for PanelDue
      T0 ; select first tool

      1 Reply Last reply Reply Quote 0
      • Yarundefined
        Yar
        last edited by

        Another thing I've noticed is the LCD lights and has info displayed but the knob/button doesn't do anything

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

          @Yar Is that the stock ender 3 screen and encoder wheel?

          Does M115 show 2.05.1 and Is the DWC version also 2.x?

          https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+1:+Wiring/37

          Check out this series of guides on getting the Ender 3 an Maestro setup.

          Z-Bot CoreXY Build | Thingiverse Profile

          1 Reply Last reply Reply Quote 0
          • Yarundefined
            Yar
            last edited by

            Yes, stock screen and encoder. I figured out the display and encoder, they function now.
            Yes, Reprap 2.05.1. DWC 2.0.4
            That's is the instruction set I've been following since the start.

            Going through the tests both heaters are showing fault. I double checked the wiring based on the instructions. Suggestions?

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

              What exactly does the fault error message say?

              M305 P0 T9880 B4185 R4700 ; set thermistor + ADC parameters for heater 0
              M143 H0 S80 ; set temperature limit for heater 0 to 80C
              M305 P1 T9880 B4185 R4700 ; set thermistor + ADC parameters for heater 1
              

              I think your T values may be missing a digit.

              Should be 98801

              The screenshots in that guide cut off the last character of that value but it's basically close to 100000.

              Z-Bot CoreXY Build | Thingiverse Profile

              1 Reply Last reply Reply Quote 0
              • Yarundefined
                Yar
                last edited by

                Based on your suggestion I changed the value by adding a "1", so 98801. That fixed both the hot end and the bed! Thanks for that! My bad for looking at the image, not the text!

                My next issue is setting up for a EZABL. I've looked at the install text from TX3D. At this point I don't want to mess up what has been done, but the printer clearly isn't recognizing the sensor isn't funtioning properly without its code. The instructions say to install config.h (appropriately adjusted) but I don't find a config.h in the sys file. Should I simply add it?

                Really appreciate your patience and assistance with all this!!

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

                  @Yar said in Connecting to web control:

                  config.h

                  Probably means config.g which is the main configuration file for RepRapFirmware.

                  Z-Bot CoreXY Build | Thingiverse Profile

                  1 Reply Last reply Reply Quote 0
                  • ziggymanpopoundefined
                    ziggymanpopo
                    last edited by

                    Check M588 the type of sensor "might" be wrong for abl
                    Once thats set and it functions...calibrate height. Procedures There are complete instructoind on how to setneverything in The duet documentation portion of this site. Hope this helps. To get to that part hit the three bars at top left for site pulldown menus look for the z-probe section there is tables with all the sensor setting for any z probe sensor
                    (Just in case) 🙂 hope this help

                    1 Reply Last reply Reply Quote 0
                    • Yarundefined
                      Yar
                      last edited by

                      Found a post on your site
                      https://forum.duet3d.com/topic/8963/ezabl-z-probe-wiring-and-configuration/8
                      TH3D's suggested code is M558 P5 C"!zprobe.in" H3 F900 T1200. When I change the probe type as in the post to l1 for M558 the sensor seems to work fine. However, when I turn off the machine then turn it back on the sensor doesn't work, unless I put the M558 in again.

                      Thoughts?

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

                        @Yar P5 is from before P9 existed specifically for the BLtouch.

                        Z-Bot CoreXY Build | Thingiverse Profile

                        1 Reply Last reply Reply Quote 0
                        • Yarundefined
                          Yar
                          last edited by

                          Interesting. Like I said, as Duet's post showed, the l1 makes the sensor function. But when I cycle the power I have to reset the M558. Shouldn't that stay in memory?

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

                            @Yar No there is no "in memory" for the Duet. Everything is configured at boot up with config.g and can be configured manually by sending the command while it's running, but sending the command while it's running won't persist after a power cycle.

                            Z-Bot CoreXY Build | Thingiverse Profile

                            1 Reply Last reply Reply Quote 0
                            • Yarundefined
                              Yar
                              last edited by

                              Ah, I'm slow, but catching up . . . slowly. So if I make the change in YAT that would put it in memory?

                              Since I have you, the x and y home to the front left corner. The z probe is homing slightly right of that. Shouldn't it be in the center?

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

                                @Yar said in Connecting to web control:

                                So if I make the change in YAT that would put it in memory?

                                It will remain until the next reboot

                                @Yar said in Connecting to web control:

                                the x and y home to the front left corner. The z probe is homing slightly right of that. Shouldn't it be in the center?

                                Homing is controlled by the homeall, homex, homey, homez macros. It will do whatever the commands in those files tell it to do.

                                https://duet3d.dozuki.com/Wiki/ConfiguringRepRapFirmwareCartesianPrinter#Section_Homing_files

                                Z-Bot CoreXY Build | Thingiverse Profile

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