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

    Posts made by aidar

    • RE: PanelDue start print

      On PanelDue, there is icon with SD card image. Click on it, and you will see everithing you have in "jobs". Click on filename and there are buttons "Simulate", "Print" and something else also, cant remember right now. So Click on "Print" and there you go...

      posted in PanelDue
      aidarundefined
      aidar
    • RE: Output Step and Direction

      Does this help? https://duet3d.dozuki.com/Wiki/Using_external_stepper_motor_drivers

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: Driver temperature display

      Hi.
      Drivers does not show temperature. They gives warning if temperature of driver is about 100 C and shut down when temperature is about 150 C. So until that is always shows 0.

      posted in General Discussion
      aidarundefined
      aidar
    • RE: Heater fault on heater 0

      Your temp limit for bed heater is 80. So when you set its temp to 80, its probably overshoots it by 1-2c and gives you fault or at leat warning message. If you want to heat your bed to 80, rise max limit of it by lets say 10C and all should be fine.
      Also let as know what firmware version are you using, from console send M115 and post result here.

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: Jumper? Where are you?

      Those two you marked on picture are not jumpers, they are fuses. To have 24v fans working, your PSU must be 24v, then you select jumpers witch ones are above outputs 4-6 and/or 7-9 to connect V-fused and VOUTLC1. Assuming your fans are connected to out 4-9 somewhere

      posted in Firmware installation
      aidarundefined
      aidar
    • RE: Jumper? Where are you?

      First of all, what board are you talking about?

      posted in Firmware installation
      aidarundefined
      aidar
    • RE: Pt100 sensor settings Problem

      @Inno-3D said in Pt100 sensor settings Problem:

      M308 S0 P"spi.cs1" Y"rtd-max31865"

      Also try spi.cs0 instead of cs1, assuming your PT100 sensor is connected to first port of daughterboard.

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: Duet 3 pt100 daughter board and thermistor not sensing temp

      @1997alex said in Duet 3 pt100 daughter board and thermistor not sensing temp:

      E3d thermistor

      By thermistor you mean thermistor or PT100 sensor? Regular thermistor will not work with PT100 daughterboard, you need PT100 sensor, like this one https://e3d-online.com/collections/printer-parts-electrical/products/pt100-temperature-sensor

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: Z probe already triggered (with I0 and I1)

      You welcome, but for future reference the icon that looks like book on top of your screen (Duet3d documentation) makes you a wizard as well, if you read it. ๐Ÿ™‚

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: Z probe already triggered (with I0 and I1)

      From wiki - Invert the input by prefixing the input pin (C parameter) with ! character, when using an NPN output inductive or capacitive sensor or using an NO switch (not recommended, use a NC switch instead).

      I1 parameter does not work for firmware 3.x, so try M558 P5 C"!zprobe.in" H5 F120 T6000

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: bltouch 3.1duet 2 wifi duex5 firmware version v3.1.3

      Just check that all is in that order https://duet3d.dozuki.com/Wiki/Connecting_a_Z_probe#Section_Software_setup_RepRapFirmware_Num_3
      Also be sure you dont have any M307 H7 command in config.override.g file.

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: bltouch 3.1duet 2 wifi duex5 firmware version v3.1.3

      Dont use P parameter with M401. It is probe index, you have only one probe, so you dont have to specify probe index. M401 runs macro deployprobe.g and thats it. So as you deployprobe.g already exists with right parameters, M401 will just deploy your probe if all is connected correctly.

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: homing problems after the upgrade

      @kostasbmw said in homing problems after the upgrade:

      ; Endstops
      M574 X1 S1 P"null" ; configure active-high endstop for low end on X via pin null
      M574 Y2 S1 P"null" ; configure active-high endstop for high end on Y via pin null
      M574 Z1 S2 ; configure Z-probe endstop for low end on Z
      ; Z-Probe
      M950 S0 C"duex.pwm5" ; create servo pin 0 for BLTouch
      M558 P9 C"zprobe.in+zstop" H5 F120 T6000 ; set Z probe type to bltouch and the dive height + speeds
      G31 P25 X28.5 Y-5 Z0 ; set Z probe trigger value, offset and trigger height
      M557 X15:285 Y15:285 S20 ; define mesh grid

      Quick look at endstops and probe section tells me that you didnt configure them correctly. Where are you X and Y endstops connected to? Normal way to do this is to connect them to Xstop and Ystop pins, so
      M574 X1 S1 P"xstop" and
      M574 Y1 S1 P"ystop"
      For probe delete +zstop part , assuming your probe is connected to zprobe connection. So that will be M558 P9 C"zprobe.in" H5 F120 T6000

      posted in Firmware installation
      aidarundefined
      aidar
    • RE: bltouch 3.1duet 2 wifi duex5 firmware version v3.1.3

      Well you dont have Z endstop defined, you have probe for homing z. So you should use G30 for homing Z, but i think you have some G1 moves in your homing files for that. Please post your homing files here.
      Also, have you done that yet? https://duet3d.dozuki.com/Wiki/Test_and_calibrate_the_Z_probe#Section_Static_test_of_the_Z_probe

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: Turning on fan on temperature reached

      @knoker Try M106 P0 S1 H1 T45

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: bltouch 3.1duet 2 wifi duex5 firmware version v3.1.3

      @konte1978 said in bltouch 3.1duet 2 wifi duex5 firmware version v3.1.3:

      ; Z-Probe
      M307 H7 A-1 C-1 D-1 ; disabilita uscita del riscaldatore estrusore 7 che รจ in comune con pwm5
      M950 S0 C"duex.pwm5" ; create servo pin 0 for BLTouch
      M558 P9 C"^zprobe.in" H5 F120 T6000 ; set Z probe type to bltouch and the dive height + speeds
      G31 P500 X0 Y0 Z2.5 ; set Z probe trigger value, offset and trigger height
      M557 X15:215 Y15:195 S20 ; define mesh grid

      M307 - you dont need to use it as you didnt define heater on those pins
      G31 P500 - it is recommended to use P25 with BLTouch, instead of 500
      What is in your deployprobe.g and extractprobe.g files ?

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: Homing advice

      Hey. For start please post your config.g file as well as all homing files. Also would help if we know what board it is and what firmware version are you running on it.

      posted in Tuning and tweaking
      aidarundefined
      aidar
    • RE: Dual Y-axis endstop homing

      I think (I dont use firmware 3.x, so maybe wrong), you have to split Y for homing and after homing you can join them together again. Like this for homing:
      M584 Y1 V9
      M574 Y2 S1 P"ystop"
      M574 V2 S1 P"Zstop"
      After homing you join them again with config you have in your post.

      posted in General Discussion
      aidarundefined
      aidar
    • RE: BL Touch Don't Stop Z

      How is it connected? What wires go to where? Check and doublecheck connections of your probe signal wires (usually black and white, should go to probe connector, black to ground and white to IN on duet board).

      posted in Duet Hardware and wiring
      aidarundefined
      aidar
    • RE: duet 2 wifi bl touch trouble..plz help?

      You have to invert probe signal, so add I1 to M558 command

      posted in Tuning and tweaking
      aidarundefined
      aidar