Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. Perseveranze
    • Profile
    • Following 0
    • Followers 0
    • Topics 9
    • Posts 20
    • Best 1
    • Controversial 0
    • Groups 0

    Perseveranze

    @Perseveranze

    1
    Reputation
    4
    Profile views
    20
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Perseveranze Unfollow Follow

    Best posts made by Perseveranze

    • RE: Question about M564

      @Danal I'm gonna test this since I never done that before

      test line 1
      test line 2
      

      That is cool! Okay, I'll be back in a few hours with the routines. I'll tag you. Thanks.

      posted in Duet Web Control
      Perseveranzeundefined
      Perseveranze

    Latest posts made by Perseveranze

    • RE: Duet 2 Wifi power supply requirements

      @Veti said in Duet 2 Wifi power supply requirements:

      see
      https://duet3d.dozuki.com/Wiki/Choosing_the_power_supply#Section_Total_power_needed

      Yeah, I found that page after I asked the question lol. Thanks though! Turns out I could size down but the cost for a good DINrail PSU is so cost prohibitive, I'll just stick with what I have now.

      @bearer said in Duet 2 Wifi power supply requirements:

      should be fine, a good way to test is to pop the enclosure in a microwave, if it gets hot then it'll likely attenuate the wifi signal.

      I can't tell if this is a joke or serious. This sounds like the "Charge your phone with a microwave" prank. Now I have to google if a microwave blocks WiFi signal lol.

      posted in CNC
      Perseveranzeundefined
      Perseveranze
    • Duet 2 Wifi power supply requirements

      Hello Hive Mind.

      I plan on building an enclosure for my CNC machine controls (Duet, VFD, relays, and PSU) and was curious what the power requirements for the Duet are while running? Currently, I'm using a 24v/15a 3D printer PSU to run my Duet and in the interest of saving space, I'd like to go with a slimmer DIN-rail mounted PSU that can handle the load.

      On an alternate note, does anyone think that a plastic enclosure with hinder my WiFi signal badly or should I get a booster or swap to an ethernet Duet?

      posted in CNC
      Perseveranzeundefined
      Perseveranze
    • RE: Question about M564

      @Danal Everything works as intended now!

      Thank you so much guys!

      posted in Duet Web Control
      Perseveranzeundefined
      Perseveranze
    • RE: Question about M564

      @Danal I'll start working at editing my files right away, and yes, I home at max

      posted in Duet Web Control
      Perseveranzeundefined
      Perseveranze
    • RE: Question about M564

      @Danal I'm giving you my config.g, customconfig.g, homex.g, homey.g, homez.g, and homeall.g.

      config.g

      ; Configure Drives
      M569 P0 S0 ; Drive 0 goes forwards
      M569 P1 S1 ; Drive 1 goes forwards
      M569 P2 S0 ; Drive 2 goes forwards
      M569 P3 S1 ; Drive 3 goes forwards                        
      M584 X0 Y1:3 Z2 ; Apply drive mapping to axes
      
      
      ; Configure Axes
      M92 X400 Y400 Z400 ; Set steps per mm
      M350 X16 Y16 Z16 I1 ; Configure microstepping
      M566 X500 Y500 Z500 ; Set maximum instantaneous speed changes (mm/min)
      M203 X2500 Y2500 Z2500 ; Set maximum speeds (mm/min)
      M201 X150 Y150 Z150 ; Set accelerations (mm/s^2)
      M906 X2400 Y2400 Z2400 I100 ; Set motor currents (mA)
      
      
      ; Configure Axis Limits
      M208 X0 Y0 Z0 S1 ; Set axis minima
      M208 X800 Y770 Z94 S0 ; Set axis maxima
      
      
      ; Configure Endstops
      M574 X2 Y2 Z2 S0 ; Set active low endstops
      
      
      ; Other Settings
      M140 H-1 ; Disable heated bed
      M564 S1 H1 ; Disable jog commands when not homed
      M911 S21.0 R23 P"G91 G1 Z3 F1000" ; Configure power loss resume
      M501 ; Load Stored Parameters 
      M98 Pcustomconfig.g ; Execute custom config settings
      

      customconfig.g

      ; ADD ANY CUSTOM SETTINGS BELOW
      
      ; Configure Drives
      M569 P0 S0 ; Drive 0 (X) goes forwards
      M569 P1 S1 ; Drive 1 (Y1) goes forwards
      M569 P2 S0 ; Drive 2 (Z) goes forwards
      M569 P3 S1 ; Drive 3 (Y2) goes forwards        
      
      ; Configure Axis
      M906 X1000 Y1000 Z1000 I100 ; Set motor currents (mA)
      
      ; Configure Endstops
      M574 X2 Y2 Z1 S1 ; Set active high endstops
      

      homex.g

      ; homex.g
      ; called to home the X axis
      
      G91 ; relative positioning
      G21 ; Set units to mm
      G1 H1 Z94 F900 ; move quickly to Z axis endstop and stop there (first pass)
      G1 Z-3 F2400 ; go back a few mm
      G1 H1 Z94 F300 ; move slowly to z axis endstop once more (second pass)
      G1 H1 X1500 F2400 ; move quickly to X and Y axis endstops and stop there (first pass)
      G92 X800 Z94 ; Set Home Position please - to your machine size.
      G1 X-3 F2400 ; go back a few mm
      G1 H1 X1500 F300 ; move slowly to X and Y axis endstops once more (second pass)
      G92 X800 Z94 ; Set Home Position please - to your machine size.
      G90 ; absolute positioning
      

      homey.g

      ; homey.g
      ; called to home the Y axis
      
      G91 ; relative positioning
      G21 ; Set units to mm
      G1 H1 Z94 F900 ; move quickly to Z axis endstop and stop there (first pass)
      G1 Z-3 F2400 ; go back a few mm
      G1 H1 Z94 F300 ; move slowly to z axis endstop once more (second pass)
      G1 H1 Y1500 F2400 ; move quickly to X and Y axis endstops and stop there (first pass)
      G92 Y770 Z94 ; Set Home Position - change to your machine size.
      G1 Y-3 F2400 ; go back a few mm
      G1 H1 Y1500 F300 ; move slowly to X and Y axis endstops once more (second pass)
      G92 Y770 Z94 ; Set Home Position - change to your machine size.
      G90 ; absolute positioning
      

      homez.g

      ; homez.g
      ; called to home the Z axis
      
      G91 ; relative positioning
      G21 ; Set units to mm
      G1 H1 Z94 F1500 ; move quickly to Z axis endstop and stop there (first pass)
      G92 Z94 ; Set Home Position - change to your machine size.
      G1 Z-3 F2400 ; go back a few mm
      G1 H1 Z94 F300 ; move slowly to X axis endstop once more (second pass)
      G92 Z94 ; Set Home Position - change to your machine size.
      G90 ; absolute positioning
      

      homeall.g

      ; homeall.g
      ; called to home all axes
      
      G91 ; relative positioning
      G21 ; Set units to mm
      G1 H1 Z94 F900 ; move quickly to Z axis endstop and stop there (first pass)
      G1 Z-3 F2400 ; go back a few mm
      G1 H1 Z94 F300 ; move slowly to z axis endstop once more (second pass)
      G1 H1 X1500 Y1500 F2400 ; move quickly to X and Y axis endstops and stop there (first pass)
      G92 X800 Y770 Z94 ; Set Home Position - change to your machine size.
      G1 X-3 Y-3 F2400 ; go back a few mm
      G1 H1 X1500 Y1500 F300 ; move slowly to X and Y axis endstops once more (second pass)
      G92 X800 Y770 Z94 ; Set Home Position please change to your machine size.
      G90 ; absolute positioning
      
      posted in Duet Web Control
      Perseveranzeundefined
      Perseveranze
    • RE: Question about M564

      @Danal I'm gonna test this since I never done that before

      test line 1
      test line 2
      

      That is cool! Okay, I'll be back in a few hours with the routines. I'll tag you. Thanks.

      posted in Duet Web Control
      Perseveranzeundefined
      Perseveranze
    • RE: Question about M564

      @Danal I'm at work so give me a few hours to provide them. Do you want me to give the files or is copy/paste enough?

      posted in Duet Web Control
      Perseveranzeundefined
      Perseveranze
    • Question about M564

      My duet is driving a 1000x1000 workbee cnc and I'm having some issues with homing. I had an M564 command in my config file which allowed me to drive the machine without having to home it to allow me to home the machine earlier but since taken the command out. Before taking M564 S0 H0 out of config, I was able to home everything individually and home all successfully. No, my machine will home Z, but not X, Y, or All. Additionally, it will not home all even if I have everything commented out except for the Z moves (which was proven to work with homing Z alone).

      The machine's max area is X770 Y800 Y94. The errors I'm getting is a "G28 G0/G1 target position outside machine limits". I'm wondering if I were to put an M564 S0 H0 command at the beginning of homeall.g and M564 S1 H1 command at the end of homeall.g, will it turn off soft limits during homing sequence then turn soft limits back on when its finished? Does anyone have any other possible solutions to my issue?

      posted in Duet Web Control
      Perseveranzeundefined
      Perseveranze
    • RE: Duet 3 0-10v support?

      @elmoret I've been trying but my Fan PWM ports will not respond to any command, all they display is the V_IN. I'm not too sure what else to do in my config.g file to grt them to work properly. You have any ideas?

      posted in Duet Hardware and wiring
      Perseveranzeundefined
      Perseveranze
    • Duet 3 0-10v support?

      I was looking through all the information for the new Duet 3 board and I didnt see if it carries any 0-10v signal support. Is there any support for this feature or will there be in the future? I know a few people have asked in the forums about something like this for CNC spindle control.

      posted in Duet Hardware and wiring
      Perseveranzeundefined
      Perseveranze