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

    Topics created by ElmoC

    • ElmoCundefined

      Unable to send any files to my Duet Wifi

      General Discussion
      • • • ElmoC
      14
      0
      Votes
      14
      Posts
      631
      Views

      droftartsundefined

      @ElmoC Have you tried running the Duet in Access Point mode? Not as convenient as connecting it to your network, but might show if the issue is with the Duet or your network. See https://duet3d.dozuki.com/Wiki/Gcode#Section_M589_Configure_access_point_parameters

      Ian

    • ElmoCundefined

      WiFi Not Responding

      Duet Hardware and wiring
      • • • ElmoC
      3
      0
      Votes
      3
      Posts
      507
      Views

      ElmoCundefined

      I will look into that more, but it didn't seem to address the bigger problem of the Duet getting an IP address from the router, but not responding. I am wondering if it may be a heat issue. After leaving the printer off last night, I was able to connect up with it and get a print job started. The printer had been running several days doing some large jobs (10+ hours). I have been thinking of redoing the way the board is mounted so this incident might just move that to a higher priority.

    • ElmoCundefined

      Simplify3d 4.0.1 gcode causing Duet to mess up

      General Discussion
      • • • ElmoC
      12
      0
      Votes
      12
      Posts
      1.7k
      Views

      ElmoCundefined

      @demonio669 looked it up on the wiki gcode page and see it's not supported in Marlin. But will probably update my Duet scripts to use it.

    • ElmoCundefined

      Slicer Interfacing - Like OctoPrint's API

      Duet Web Control wishlist
      • • • ElmoC
      11
      0
      Votes
      11
      Posts
      1.7k
      Views

      Danalundefined

      Here is another interface to the DUET web service api. This one is designed to monitor multiple printers, and provide a few simple controls.

      https://github.com/DanalEstes/MultiDuetWebMonitor

    • ElmoCundefined

      Setting Z Height After Home - No Z Probe

      General Discussion
      • • • ElmoC
      4
      0
      Votes
      4
      Posts
      1.1k
      Views

      dc42undefined

      The two replies above are different solutions, and both should be workable. If you use the second one of treating your homing switch as a Z probe, you will need to connect it to the E0 endstop connector instead of the Z endstop connector.

    • ElmoCundefined

      Is It Possible To Run A Fan Off E1 Heater?

      General Discussion
      • • • ElmoC
      3
      0
      Votes
      3
      Posts
      792
      Views

      ElmoCundefined

      For E1, it was H2 and P2.

      (This comment is for anyone else searching on this subject)

    • ElmoCundefined

      Z height after homing

      Tuning and tweaking
      • • • ElmoC
      8
      0
      Votes
      8
      Posts
      2.3k
      Views

      AnukWolfundefined

      I'm sorry for bringing this topic up again, but since it helped me out with the same exact problem already, I felt like I don't need to make a whole new post for it. So thanks for that already!

      At least for me, this "z-probe configuration as a microswitch instead of a z-probe" was generated by the RRF configuration tool, and as I pretty much just got my board and didn't have a clue about how everything works, I absolute didn't suspect this tool to be the culprit here.

      The thing is, when you use the configuration tool, you have a few options for how the Z-probe is going to work, just like you have different modes to set with M558. But I couldn't see the direct connection between the modes and the options presented there.

      Since I have a NPN inductive sensor that outputs either 1 or 0 and since I basically used it as a "microswitch" in Marlin, on the Z endstop pins, I felt like setting it up as a "Switch" as the tool calls it would be the best idea. Turns out, the generated homez.g and homeall.g are both setup as if it was an actual switch, using G1 to home instead of G30.

      I don't know how much influence you guys have on the RRF config tool, but I think as a new Duet user it is a very handy tool to use and it should be cleared up somehow what the "Switch" option does, or an actual "inductive/capacitive probe" option should be added as well to make it clear.

      Just my 2 cents as a Duet newbie. Aside from that, this board is absolutely fantastic!

    • ElmoCundefined

      G30 S-1 Not Working

      General Discussion
      • • • ElmoC
      11
      0
      Votes
      11
      Posts
      2.7k
      Views

      dc42undefined

      I'm glad you worked it out.

    • ElmoCundefined

      Duet 0.8.5 GPIO Pins For Heaters

      Duet Hardware and wiring
      • • • ElmoC
      10
      0
      Votes
      10
      Posts
      2.0k
      Views

      lazy_mosquitoundefined

      Found it out for duet 0.85

      connected servo signal to pin 21 (pc23) of the extension header.
      red and ground to 5v signal of external ATX power supply (same power supply is used for powering the duet, so common ground)

      in code (config.g)
      M307 H3 A-1 C-1 D-1 is added to reserve pin 21 for M42 or servo use

      Deployprobe.g macro contains the line M280 P3 S10 I1 to deploy servo (S10 is 10 degrees and I1 is to reverse polarity of servo)
      Retractprobe.g macro contains the line M280 P3 S90 I1 to retract servo (S90 is 90 degrees)
      Deploy and Retract macros are added to bed.g and homing macros

      thanks to W3DRK: https://www.duet3d.com/forum/thread.php?id=459