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

    Duet Web Control wishlist notes and priorities

    Scheduled Pinned Locked Moved
    Duet Web Control wishlist
    32
    116
    19.1k
    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.
    • chrishammundefined
      chrishamm administrators @dc42
      last edited by

      @dc42 Dang, good to know, I wasn't aware this is already supported. I'll change the corresponding parts in the web interface so we don't need to worry about too long file lists any more. Thanks for the note!

      Duet software engineer

      1 Reply Last reply Reply Quote 0
      • sigxcpuundefined
        sigxcpu
        last edited by sigxcpu

        I have two issues with DWC:

        • an old one, that controls for extrusion multiplier and speed multiplier are not working on iPhone (maybe iOS in general). If you click, sometimes the slider jumps to max, sometimes jumps to the position you clicked. Dragging does not work.
        • the down arrow history in G-code console was very handy for portable devices. The question mark for help, not so much 🙂

        LE: removed the rememberedGcodes.indexOf issue because I've read above about the wrong settings.

        1 Reply Last reply Reply Quote 0
        • resamundefined
          resam
          last edited by

          @chrishamm the webcam rotation is still not working properly...
          When I change it, it is rotated correctly.
          But once I close the browser tab or reload the page, the rotation setting is lost.

          1 Reply Last reply Reply Quote 0
          • Sir printsalotundefined
            Sir printsalot @chrishamm
            last edited by

            @chrishamm
            can't get around java script gcode is not a function/disconnect. Any entry in gcode field sets it off. I have performed a fresh boot load install 2.01 rtos and dwc 1.22. I erased gcode folder and am using a desktop that hasn't uploaded or connected to board in the past. It persist. I have separated every variable that could cause it on my end. It is something I can't figure out. My bl touch probe works some of the time, but not all and board will start a print via upload ignoring g28 altogether. I have no m code in my config.g to allow movement before printer is homed. Homing button indicate machine not homed but it just start run print. reset factory default,apply setting reflects not diff.

            RepRapFirmware for Duet 2 WiFi/Ethernet
            

            Firmware Electronics: Duet Ethernet 1.02 or later
            Firmware Version: 2.01(RTOS) (2018-07-26b2)
            Web Interface Version: 1.22

            ; General preferences
            M111 S0 ; Debugging off
            G21 ; Work in millimetres
            G90 ; Send absolute coordinates...
            M83 ; ...but relative extruder moves
            M555 P1 ; Set firmware compatibility to look like RepRapFirmare
            G31 X-52 Y50 Z.9 P25
            M208 X0 Y-21 Z0 S1 ; Set axis minima
            M208 X305 Y291 Z247 ; Set axis maxima

            ; Endstops
            M574 X1 Y1 S1 ; Set active low endstops
            M574 Z0
            M558 P9 X0 Y0 Z1 H5 F100 T2000 ; Set Z probe type to switch, the axes for which it is used and the dive height + speeds
            G31 P600 X0 Y12 Z.96; Set Z probe trigger value, offset and trigger height
            M557 X52:300 Y60:335 S40 ; Define mesh grid

            M550 Pfamily's printer ; Set machine name
            M540 PBE:EF:DE:AD:FE:ED ; Set MAC address
            M552 P192.168.1.10 S1 ; Enable network and set IP address
            M553 P255.255.254.0 ; Set netmask
            M554 P73.214.152.1 ; Set gateway
            M586 P0 S1 ; Enable HTTP
            M586 P1 S0 ; Disable FTP
            M586 P2 S0 ; Disable Telnet

            I use netgear nighthawk 7800r router
            with ethernet connection speed 431 mb/sec speed test
            firefox61.0.2/64bit
            win 10/64 bit version 1709 build 16299.431
            amd fx 8320 8 core 3.5ghz

            no usb connection 24 v psu

            1 Reply Last reply Reply Quote 0
            • chrishammundefined
              chrishamm administrators
              last edited by

              Do the same problems persist in DWC 1.22.1? It is part of David's latest firmware release.

              Duet software engineer

              1 Reply Last reply Reply Quote 0
              • resamundefined
                resam
                last edited by

                @chrishamm I just tested your latest 1.22.2 release from an hour ago.
                Still the same issue. The webcam rotation gets reset to 0° after a page reload.

                kuhnikuehnastundefined 1 Reply Last reply Reply Quote 0
                • resamundefined
                  resam
                  last edited by resam

                  @chrishamm actually, I just checked the browser local storage, and it still shows the correct setting. But it seems it doesn't get loaded or applied to the iframe properly.

                  0_1534324865710_Screen Shot 2018-08-15 at 11.19.42.png

                  When I set the rotation to 180, and click "Apply Settings", the img tag gets a new class="rotate-180" option.
                  When I reload the page, this is missing, although the localStorage contains a valid json setting.

                  edit:
                  When I load the page, and use the dev tools in my browser at https://github.com/chrishamm/DuetWebControl/blob/a5a74e5335ff6a15279247dedf276ab2694a5d56/core/js/settings.js#L217
                  settings.webcamRotation is 0,

                  getLocalSetting("settings", null); returns the correct rotation setting.

                  I think the issue is here: https://github.com/chrishamm/DuetWebControl/blob/a5a74e5335ff6a15279247dedf276ab2694a5d56/core/js/settings.js#L121

                  >  settings["webcamRotation"].constructor
                  <- Æ’ Number() { [native code] }
                  >  loadedSettings["webcamRotation"].constructor
                  <- Æ’ String() { [native code] }
                  

                  string vs. integer

                  edit again:

                  YES! I manually changed my localStorage settings from webcamRotation: "180" to "webcamRotation:180` and now it works.

                  1 Reply Last reply Reply Quote 0
                  • kuhnikuehnastundefined
                    kuhnikuehnast @resam
                    last edited by

                    @resam said in Duet Web Control wishlist notes and priorities:

                    @chrishamm I just tested your latest 1.22.2 release from an hour ago.
                    Still the same issue. The webcam rotation gets reset to 0° after a page reload.

                    Where did you get the 1.22.2 release from? Could only find the 1.22.1?

                    resamundefined 1 Reply Last reply Reply Quote 0
                    • resamundefined
                      resam @kuhnikuehnast
                      last edited by

                      @kuhnikuehnast on the dev branch: https://github.com/chrishamm/DuetWebControl/blob/dev/DuetWebControl-1.22.2.zip

                      1 Reply Last reply Reply Quote 0
                      • Agniusmundefined
                        Agniusm
                        last edited by

                        @chrishamm
                        I see new DWC but no download/upload button on mobile devices still.
                        Is it that hard to get them enabled on mobile version as this is turning out to be major pain in the a..
                        Anyway, any plans?

                        1 Reply Last reply Reply Quote 0
                        • r123undefined
                          r123
                          last edited by

                          I can never remember the appropriate github page to check for new firmware.

                          It would be great if in Webcontrol Settings/General/Software_Information there was a direct link to this page.

                          (The page linked to would of course adapt according to the Firmware Electronics detected.)

                          Thanks!!

                          1 Reply Last reply Reply Quote 2
                          • chrishammundefined
                            chrishamm administrators
                            last edited by

                            @Agniusm It's fixed now, please try out https://github.com/chrishamm/DuetWebControl/blob/dev/DuetWebControl-1.22.4-b1.zip To everyone else: This is still a BETA version so there may be some bugs in it! Use at your own risk!

                            @resam Thanks for tracking it down. AFAIR I introduced a comparison of the constructors when the settings are loaded a while back, so could you check if this issue is resolved now? At least when testing on my machine it seems to be alright.

                            @r123 Usually dc42 includes my latest stable DWC version in his firmware releases and in case you wish to get it from my own repository, I suggest you check the "Releases" tab. I publish my stable releases there, too. Clicking on my name on the Settings page of DWC will lead you to my GitHub page where you can find my DuetWebControl repo.

                            Duet software engineer

                            1 Reply Last reply Reply Quote 1
                            • genghisnico13undefined
                              genghisnico13
                              last edited by genghisnico13

                              Would it be possible to add the possibility to select multiple files and move them? Right now you can achieve the same functionality by downloading to the PC, deleting the files on the duet and uploading to the desired folder. Since there is a workaround it's not a priority, but I think it would be a nice feature to have.

                              And perhaps showing the free space of the SD card somewhere in the G-Code Files section? I know you can see it with M39.

                              One small detail I found, in the Machine Properties section if you have a type 9 probe (BLTouch) it shows as Type "Unknown (9)", I am running version 1.22.3, in case you have already fixed it in a newer release.

                              wilrikerundefined 1 Reply Last reply Reply Quote 0
                              • wilrikerundefined
                                wilriker @genghisnico13
                                last edited by

                                @genghisnico13 said in Duet Web Control wishlist notes and priorities:

                                Would it be possible to add the possibility to select multiple files and move them?

                                That's already possible. Select them via the checkboxes and then drag'n'drop them to the folder you want to move them. To go up you can use the location above the file list.

                                Manuel
                                Duet 3 6HC (v0.6) with RPi 4B on a custom Cartesian
                                with probably always latest firmware/DWC (incl. betas or self-compiled)
                                My Tool Collection

                                genghisnico13undefined 1 Reply Last reply Reply Quote 1
                                • genghisnico13undefined
                                  genghisnico13 @wilriker
                                  last edited by

                                  @wilriker Thanks, didn't realize that.

                                  1 Reply Last reply Reply Quote 0
                                  • Agniusmundefined
                                    Agniusm
                                    last edited by Agniusm

                                    Would be nice to have a print button on upload completion dialog box:
                                    Upload complete! and then <<Print>> <<Close>>

                                    Just found a button for that :D. Dismiss

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