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

    Saroleve

    @Saroleve

    0
    Reputation
    1
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Saroleve Unfollow Follow

    Latest posts made by Saroleve

    • RE: Z probe

      @droftarts thanks Ian for your explanation, I’m completely new to the duet so your help is much appreciated I’ll get on to it and report back👍🏻

      posted in General Discussion
      Saroleveundefined
      Saroleve
    • Z probe

      Hi can anyone have a look at my config file for my Tronxy X5sa and duet2 WiFi please, I have most things working and homing except the Z probe isn’t stopping the z axis, it has been wired into permanently on fan connectors and the the signal to the first pin on the z probe connector and the signal wire has a bat 85 soldered into it as described on another post, the sensor lights up if I put something metal under it, also I need it to move over the bed from xy position to detect the bed.
      Thanks

      Configuration file for Duet WiFi (firmware version 2.03)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue May 05 2020 16:01:20 GMT+0100 (British Summer Time)

      ; General preferences
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"Tronxy Xsa" ; set printer name

      M667 S1 ; select CoreXY mode

      ; Network
      M552 S1 ; enable network
      M586 P0 S1 ; enable HTTP
      M586 P1 S0 ; disable FTP
      M586 P2 S0 ; disable Telnet

      ; Drives
      M569 P0 S0 ; physical drive 0 goes backwards
      M569 P1 S0 ; physical drive 1 goes backwards
      M569 P2 S0 ; physical drive 2 goes backwards
      M569 P3 S1 ; physical drive 3 goes forwards
      M584 X0 Y1 Z2 E3 ; set drive mapping
      M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z400.00 E93.00 ; set steps per mm
      M566 X600.00 Y600.00 Z12.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X18000.00 Y18000.00 Z180.00 E1500.00 ; set maximum speeds (mm/min)
      M201 X3000.00 Y3000.00 Z100.00 E10000.00 ; set accelerations (mm/s^2)
      M906 X950 Y950 Z950 E950 I30 ; set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      ; Axis Limits
      M208 X0 Y0 Z0 S1 ; set axis minima
      M208 X330 Y330 Z375 S0 ; set axis maxima

      ; Endstops
      M574 X1 Y1 S0 ; set active low and disabled endstops
      M574 Z1 S2 ; set endstops controlled by probe

      ; Z-Probe
      M558 P2 H5 F120 T6000 ; set Z probe type to modulated and the dive height + speeds
      M558 H30 ;*** Remove this line after delta calibration has been done and new delta parameters have been saved
      G31 P500 X100 Y100 Z4 ; set Z probe trigger value, offset and trigger height
      M557 X15:305 Y15:305 S20 ; define mesh grid

      ; Heaters
      M307 H0 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit
      M305 P0 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 0
      M143 H0 S120 ; set temperature limit for heater 0 to 120C
      M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1
      M143 H1 S280 ; set temperature limit for heater 1 to 280C

      ; Fans
      M106 P0 S0 I0 F500 H-1 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
      M106 P1 S1 I0 F500 H1 T45 ; set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on

      ; Tools
      M563 P0 D0 H1 F0 ; define tool 0
      G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
      G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C

      ; Custom settings are not defined

      ; Miscellaneous
      M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss

      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue May 05 2020 16:01:20 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G1 H1 X-335 Y-335 F1800 ; move quickly to X or Y endstop and stop there (first pass)
      G1 H1 X-335 ; home X axis
      G1 H1 Y-335 ; home Y axis
      G1 X5 Y5 F6000 ; go back a few mm
      G1 H1 X-335 F360 ; move slowly to X axis endstop once more (second pass)
      G1 H1 Y-335 ; then move slowly to Y axis endstop
      G90 ; absolute positioning
      G1 X-85 Y-85 F6000 ; go to first bed probe point and home Z
      G30 ; home Z by probing the bed

      ; Uncomment the following lines to lift Z after probing
      ;G91 ; relative positioning
      ;G1 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.1.8 on Tue May 05 2020 16:01:20 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G1 H1 X-335 F1800 ; move quickly to X axis endstop and stop there (first pass)
      G1 X5 F6000 ; go back a few mm
      G1 H1 X-335 F360 ; move slowly to X axis endstop once more (second pass)
      G1 H2 Z-5 F6000 ; lower Z again
      G90 ; absolute positioning

      ; homey.g
      ; called to home the Y axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue May 05 2020 16:01:20 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G1 H1 Y-335 F1800 ; move quickly to Y axis endstop and stop there (first pass)
      G1 Y5 F6000 ; go back a few mm
      G1 H1 Y-335 F360 ; move slowly to Y axis endstop once more (second pass)
      G1 H2 Z-5 F6000 ; lower Z again
      G90 ; absolute positioning

      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue May 05 2020 16:01:20 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G90 ; absolute positioning
      G1 X-85 Y-85 F6000 ; go to first probe point
      G30 ; home Z by probing the bed

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

      posted in General Discussion
      Saroleveundefined
      Saroleve
    • RE: Just connected

      @Saroleve said in Just connected:

      FIRMWARE_NAME: RepRapFirmware for Duet 2 WiFi/Ethernet FIRMWARE_VERSION: 2.05.1 ELECTRONICS: Duet WiFi 1.02 or later FIRMWARE_DATE: 2020-02-09b1
      Thanks

      posted in General Discussion
      Saroleveundefined
      Saroleve
    • RE: Just connected

      Sorry for the mess about a bit new to all this so please bear with me, as i said above only thing i have done is setup the wifi connection and gone to duet test and shows the faults. thanks

      ; Configuration file for factory testing Duet Ethernet and Wifi with V2.03 firmware


      FOR TESTING ONLY! USE https://configurator.reprapfirmware.org/ to generate configuration files for your printer!


      ; Communication and general
      M111 S0 ; Debug off
      M550 PDuetTest ; Machine name and Netbios name (can be anything you like)
      M551 Preprap ; Machine password (used for FTP)

      *** Ethernet networking: The following lines are used for factory testing - PLEASE REMOVE THEM
      M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0xED ; MAC Address
      M552 P0.0.0.0 ; IP address
      M554 P192.168.1.255 ; Gateway
      M553 P255.255.255.0 ; Netmask

      ;*** End of factory test lines to be removed

      ;*** Networking
      M552 S1 ; Turn network on

      M555 P2 ; Set output to look like Marlin
      G21 ; Work in millimetres
      G90 ; Send absolute coordinates...
      M83 ; ...but relative extruder moves

      ; Disable Fan 1 thermostatic mode
      M106 P1 H-1

      ; Axis and motor configuration
      M569 P0 S1 ; Drive 0 goes forwards
      M569 P1 S1 ; Drive 1 goes forwards
      M569 P2 S1 ; Drive 2 goes forwards
      M569 P3 S1 ; Drive 3 goes forwards
      M569 P4 S1 ; Drive 4 goes forwards
      M574 X2 Y2 Z2 S1 ; set endstop configuration (all endstops at high end, active high)
      ;*** The homed height is deliberately set too high in the following - you will adjust it during calibration
      M665 R105.6 L215.0 B85 H250 ; set delta radius, diagonal rod length, printable radius and homed height
      M666 X0 Y0 Z0 ; put your endstop adjustments here, or let auto calibration find them
      M350 X16 Y16 Z16 E16:16 I1 ; Set 16x microstepping with interpolation
      M92 X80 Y80 Z80 ; Set axis steps/mm
      M906 X1000 Y1000 Z1000 E800 I60 ; Set motor currents (mA) and increase idle current to 60%
      M201 X1000 Y1000 Z1000 E1000 ; Accelerations (mm/s^2)
      M203 X20000 Y20000 Z20000 E3600 ; Maximum speeds (mm/min)
      M566 X1200 Y1200 Z1200 E1200 ; Maximum instant speed changes mm/minute

      ; Thermistors
      M305 P0 T100000 B3950 R4700 H30 L0 ; Put your own H and/or L values here to set the bed thermistor ADC correction
      M305 P1 T100000 B3974 R4700 H30 L0 ; Put your own H and/or L values here to set first nozzle thermistor ADC correction
      M305 P2 T100000 B3974 R4700 H30 L0 ; Put your own H and/or L values here to set 2nd nozzle thermistor ADC correction

      M570 S180 ; Hot end may be a little slow to heat up so allow it 180 seconds

      ; Adjustments for dummy heaters on test rig
      M307 H0 A250 C140 D5.5 B1
      M307 H1 A250 C140 D5.5 B0
      M307 H2 A250 C140 D5.5 B0

      ; Fans
      M106 P1 S-1 ; disable thermostatic mode for fan 1

      ; Tool definitions
      M563 P0 D0 H1 ; Define tool 0
      G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures
      ;*** If you have a single-nozzle build, comment the next 2 lines
      M563 P1 D1 H2 ; Define tool 1
      G10 P1 S0 R0 ; Set tool 1 operating and standby temperatures
      M92 E80:80 ; Set extruder steps per mm

      ; Z probe and compensation definition
      ;*** If you have a switch instead of an IR probe, change P1 to P4 in the following M558 command.
      M558 P5 F100 T6000 X0 Y0 Z0 H3 ; Z probe is a Smart Effector and is not used for homing any axes R0.4 not used. Reduced F300 to 100
      G31 P100 X0 Y0 Z-0.25 ; Set the zprobe height and threshold for Smart Effector

      ;*** If you are using axis compensation, put the figures in the following command
      M556 S78 X0 Y0 Z0 ; Axis compensation here

      M208 S1 Z-0.2 ; set minimum Z

      T0 ; select first hot end
      ; M117 Use https://configurator.reprapfirmware.org/ to set up your printer config

      posted in General Discussion
      Saroleveundefined
      Saroleve
    • RE: Just connected

      Oops might quite sorted upload

      EF5E7373-0E2B-4659-9B46-C869DC0AE5E1.jpeg 3D06A9D7-11A5-4C3E-A3F9-A9D1A0D18663.jpeg 5211E84A-3487-408B-A824-CAB0FD170B91.jpeg

      posted in General Discussion
      Saroleveundefined
      Saroleve
    • RE: Just connected

      Thanks for reply, the only thing I have done is setup the WiFi ,altered nothing.

      posted in General Discussion
      Saroleveundefined
      Saroleve
    • Just connected

      Hi guys hope I’m posting in the right area? 39A78F56-69D6-46A5-95B1-AAEA27ABB988.jpeg complete Newby to duet 2 WiFi, I’ve managed to configure the WiFi and then connected to DWC and it immediately shows this fault see photo, The board is connected to my computer via the usb lead with no connections at all to the printer (TronxyX5SA) is this normal or is something wrong?![alt text]

      posted in General Discussion
      Saroleveundefined
      Saroleve