Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. carlitototo
    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 30
    • Best 0
    • Controversial 0
    • Groups 0

    carlitototo

    @carlitototo

    0
    Reputation
    2
    Profile views
    30
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    carlitototo Unfollow Follow

    Latest posts made by carlitototo

    • RE: heater off when homing

      sorry for the late response !
      Removing B1 worked perfectly !

      Well that's a problem...I read this thread https://forum.duet3d.com/topic/8690/keep-hotend-off-until-after-bltouch-finishes-bed-leveling/6 and read a little more on the subject, I'm going to stick with B1 🙂

      posted in Tuning and tweaking
      carlitototoundefined
      carlitototo
    • RE: heater off when homing

      Indeed it has B1 at the end of the line. I removed it, I'll try tomorow but if it is supposed to turn of the heater when probing, now it should be working properly 🙂

      Thanks !

      posted in Tuning and tweaking
      carlitototoundefined
      carlitototo
    • heater off when homing

      Hello,
      I believe this is a quite simple problem but I can't seem to find a solution on my own...

      When I'm homing an axis with my hotend heated, the temperature starts to drop until the homing is done, it looks like while the homing macro is running, the heater turns off. But it's not showing as off in the WebControl !

      Any idea on what to do ?

      Thanks

      posted in Tuning and tweaking
      carlitototoundefined
      carlitototo
    • RE: move the Y/X axis "automatically" when the Z axis moves

      Forgot to ask... Can the firmware account for belt elongation ? I saw this : Belt_Compliance_Measurement and it seems long belts can be an issue with precision, is there a way to compensate for such a thing ?

      posted in General Discussion
      carlitototoundefined
      carlitototo
    • RE: move the Y/X axis "automatically" when the Z axis moves

      Thanks for the M669 @Veti ! It's amazing all the thing you can do with the RepRapFirmware !
      But now that @droftarts/Ian talked about CoreXYZ, I want to try this out rather than doing my idea ! It makes more sens and may be easier to implement
      But will the CoreXYZ be possible with RepRapFirmware ?

      posted in General Discussion
      carlitototoundefined
      carlitototo
    • move the Y/X axis "automatically" when the Z axis moves

      Hello,
      Let me elaborate the title... I'm thinking of a coreXY printer where the movement of the XY axis would be directly related to the movement of the Z axis. ie, if the Z axis goes up, the X and Y axis would move forward, if the Z axis goes down, the X and Y axis would move backwards... So the question is : is there a way to make the XY axis move "automatically" so that if the Z axis moves, the XY motor axis turns and the X and Y axis doesn't physically move.

      I'm pretty shure my explanation is very unclear but I can't think of a better way to explain it for now 😞

      Thanks !

      posted in General Discussion
      carlitototoundefined
      carlitototo
    • RE: Z axis "blocked"

      Well that must be the most convenient thing that exist in the 3D printing world, works perfectly ! Thanks

      posted in Tuning and tweaking
      carlitototoundefined
      carlitototo
    • RE: Z axis "blocked"

      Oh ! Didn't know I could do that... this is a nice feature, going to try and implement it right now !

      Thansk @Phaedrux

      posted in Tuning and tweaking
      carlitototoundefined
      carlitototo
    • RE: Z axis "blocked"

      Well that's embarrassing... exchange the Z value between Z max and min and it worked... thanks @deckingman and @Phaedrux !

      Well I guess that's a good thing I don't have this file @bearer

      here are the homming files :

      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Tue Dec 25 2018 10:06:03 GMT+0100 (heure normale d’Europe centrale)
      G91 ; relative positioning
      G1 Z-5 F6000 S2 ; lift Z relative to current position
      G1 S1 X-585 Y-585 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
      G1 X5 Y5 F6000 ; go back a few mm
      G1 S1 X-585 Y-585 F360 ; move slowly to X and Y axis endstops once more (second pass)
      G1 S1 Z-585 F1800 ; move Z down stopping at the endstop
      G90 ; absolute positioning
      G92 Z0 ; set Z to axis minimum (you may want to adjust this)

      ; Uncomment the following lines to lift Z after probing
      ;G91 ; relative positioning
      ;G1 S2 Z5 F100 ; lift Z relative to current position
      ;G90 ; absolute positioning

      ; homex.g
      ; called to home the X axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Tue Dec 25 2018 10:06:03 GMT+0100 (heure normale d’Europe centrale)
      G91 ; relative positioning
      G1 Z-5 F6000 S2 ; lift Z relative to current position
      G1 S1 X-585 F1800 ; move quickly to X axis endstop and stop there (first pass)
      G1 X5 F6000 ; go back a few mm
      G1 S1 X-585 F360 ; move slowly to X axis endstop once more (second pass)
      G1 Z5 F6000 S2 ; lower Z again
      G90 ; absolute positioning

      ; homey.g
      ; called to home the Y axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Tue Dec 25 2018 10:06:03 GMT+0100 (heure normale d’Europe centrale)
      G91 ; relative positioning
      G1 Z-5 F6000 S2 ; lift Z relative to current position
      G1 S1 Y-585 F1800 ; move quickly to Y axis endstop and stop there (first pass)
      G1 Y5 F6000 ; go back a few mm
      G1 S1 Y-585 F360 ; move slowly to Y axis endstop once more (second pass)
      G1 Z5 F6000 S2 ; lower Z again
      G90 ; absolute positioning

      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2 on Tue Dec 25 2018 10:06:03 GMT+0100 (heure normale d’Europe centrale)
      G91 ; relative positioning
      G1 Z-5 F600 S2
      G1 S1 Z-585 F1800 ; move Z down until the endstop is triggered
      G92 Z0 ; set Z position to axis minimum (you may want to adjust this)

      ; Uncomment the following lines to lift Z after probing
      ;G91 ; relative positioning
      ;G1 S2 Z5 F100 ; lift Z relative to current position
      ;G90 ; absolute positioning

      posted in Tuning and tweaking
      carlitototoundefined
      carlitototo
    • RE: Z axis "blocked"

      And I don't have a config-override.g file... is it a problem ?

      posted in Tuning and tweaking
      carlitototoundefined
      carlitototo