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

    Topics created by Algadz

    • Algadzundefined

      Setup Z-probe and endstop

      General Discussion
      • • • Algadz
      7
      0
      Votes
      7
      Posts
      1.1k
      Views

      Phaedruxundefined

      @Algadz said in Setup Z-probe and endstop:

      I would like to be able to move the Z axis toward Zmax until the probe is triggered.

      I think what's is confused here is that you are referring to it as a probe, however the application you're talking about using it in is using it as a endstop switch. In which case you won't use M558 and G31 and G30 anymore, as those moves are used for a probe that is able to move around in X and Y to map the bed surface.

      What you're describing sounds like the inductive sensor is fixed at the Z max position and you want it to stop bed movement when homing to zmax, which I believe should be possible. How is your inductive sensor wired currently? You'd need to use M574 to configure a Z max endstop before you want to use it. You can leave the current Z min endstop configuration active in config.g. Then you can reconfigure to zmax in your macro before homing.

      Something like described here: https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+5:+Upgrades/54#s213

    • Algadzundefined

      Pronterface & data collection

      General Discussion
      • • • Algadz
      7
      0
      Votes
      7
      Posts
      803
      Views

      Algadzundefined

      Ok if DC42 says so I will start to reconsider my usb interface 🙂

      I will not be able to use the web interface as the process is automated, is there a way to use this file transfer to the SD card without the web interface ?
      with HTML requests I suppose ?

      Also, the ethernet port of the RPI is already used for internet connexion, is it possible to use a dual ethernet port extension such as the ethernetberry to connect the Duet ?

      Thank you

    • Algadzundefined

      Write M114 Output to file/variable

      General Discussion
      • • • Algadz
      3
      0
      Votes
      3
      Posts
      672
      Views

      Algadzundefined

      Thank you for your answer,

      Initially, I was hopping to only connect the Duet through USB because the Ethernet port of the device hosting pronterface is already taken. But if I can't find any other solution I will probably search this way.

      I do agree, my initial idea was to have Pronterface reading the port and writing M114 command (+other gcode) and an other SW only reading the port and extrating M114 answers.
      But I think this boils down to the question of exclusivity on the COM port, once connected, does Pronterface allows other SW to use the same COM port.

      I realise now that my question is not really on the Duet side but mostly on pronterface and the host computer so it may not be the right forum to post. Anyway, if you have an idea on this I'll take it 🙂

      Thank you !

    • Algadzundefined

      Extrude until endstop triggered

      Filament Monitor
      • • • Algadz
      6
      0
      Votes
      6
      Posts
      1.1k
      Views

      dc42undefined

      You can reduce the motor current while loading filament to avoid bending it. See https://duet3d.dozuki.com/Wiki/Stall_detection_and_sensorless_homing#Section_Using_extruder_stall_detection_during_filament_loading.

    • Algadzundefined

      Interface with SX1509

      Duet Hardware and wiring
      • • • Algadz
      5
      0
      Votes
      5
      Posts
      1.0k
      Views

      dc42undefined

      Done.

    • Algadzundefined

      4 Axis machine - Feedrate calculation and movement planning

      General Discussion
      • • • Algadz
      10
      0
      Votes
      10
      Posts
      1.5k
      Views

      Algadzundefined

      Update :

      Working on Duet 0.8.5 with release 1.19alpha2

      The F parameter only takes into account XYZ movements, the U axis now adapts it's speed to be completed on time.

      (But if U max acceleration is too low, it will still slow down the overall movement, adjust it with M201 command)

      THANKS DC42 !

    • Algadzundefined

      Homing Extra Axis on XYZ+C printer - S1 Issue

      Duet Hardware and wiring
      • • • Algadz
      3
      0
      Votes
      3
      Posts
      631
      Views

      Algadzundefined

      Oh right,
      the U axis (wich was initially E0), had upper and lower software limit of 0 (checked with "M208" command).
      That was probably causing the trouble.

      Ok I didn't know that the "G1 U100 S1" command (once the endstop is activated) is acting just like the G92 command. Good to know !

      Thank you for your answer 🙂