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

    Topics created by AdamX

    • AdamXundefined

      HomeAll.G content cleanup

      General Discussion
      • • • AdamX
      7
      0
      Votes
      7
      Posts
      710
      Views

      AdamXundefined

      @dc42 Aha, perfect! Thanks! I always like to know and... understand, so to speak 🙂

    • AdamXundefined

      G29 Grid Questions

      General Discussion
      • • • AdamX
      5
      0
      Votes
      5
      Posts
      499
      Views

      Phaedruxundefined

      I think of it as m208 is where the nozzle can get to and m557 is where the probe can get to.

    • AdamXundefined

      Java errors

      Duet Web Control
      • • • AdamX
      8
      0
      Votes
      8
      Posts
      679
      Views

      dc42undefined

      I wasn't able to reproduce your issue, however I don't have exactly the same setup. But I did find a possible timing issue in DuetWebControl that may explain your issue. Please download upload file dwc.js.gz from https://www.dropbox.com/s/qlk90c2pa9z5sch/dwc.js.gz?dl=0 and upload it through the Settings/General page of Duet Web Control.

      [Note to self and chrishamm: the change is in line 1411 of jwc.js. Was:

      if (fileInfo.filament.length > 0) {

      Changed to:

      if (fileInfo.filament.length > 0 && status.extrRaw.length > 0) {

      ]