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

    Posts made by chris

    • RE: BLTouch Homing in wrong direction

      so reduce the 3.6 to like 3.4?

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      any advice on how to reduce how close nozzle is to bed currently

      G31 P25 X46.5 Y0 Z3.6

      do I change the 3.6mm height?

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      seems inverting pin may have worked deploy macros now working

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      @Phaedrux didn't have dupont connector hence why was using breakout board only on old firmware used H7 not exp.heater7 which is what 3.1.1 set it as M950 S0 C"exp.heater7"

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      used multimeter to prove continuity between the pins on idc ribbon cable and heater pwm pins

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      @Phaedrux just for the heater pwm pins

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      yeah just makes heater 7 and heater 6 available from the ide / ribbon pin connector

      https://www.duet3d.com/Expansion_Breakout

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      @Phaedrux
      here is an image bltouch pwm on heater 7 pwm and the switch wires on z probe in. was working fine before upgrading to v3.1.1.
      image

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      @fcwilt Wouldn't have thought that would have stopped it deploying though isn't that just trigger value?

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      @Phaedrux yeah still no joy with G31 S-1 or M280 P0 S10. even when copied config u posted above using bltouch on heater 7 pwm on duet expansion breakout board. Obviously is wired correctly as does self test fine when power applied to the printer. Just not deploying.

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      @fcwilt Sorry this was g31

      G31 P50 X46.5 Y0 Z3.7 ; set Z probe trigger value, offset and trigger height

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      yeah before I upgraded to v 3.1.1 yeah sorry was M280 P0 S10

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      here is home z

      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Thu Oct 01 2020 12:28:31 GMT+0100 (British Summer Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G90 ; absolute positioning
      G1 X50 Y50 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 Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      Used reprap firmware config tool tool to create new config .g file but now bltouch isn't deploying it does self test fine on powering up the printer but doesn't deploy with M280 P0 Z10.

      here is my new config .g now

      ; Configuration file for Duet WiFi (firmware version 3)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Thu Oct 01 2020 12:28:30 GMT+0100 (British Summer Time)

      ; General preferences
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"Creality CR-10" ; set printer name

      ; 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 E415.00 ; set steps per mm
      M566 X900.00 Y900.00 Z12.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X60000.00 Y60000.00 Z30000.00 E1200.00 ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z20.00 E250.00 ; set accelerations (mm/s^2)
      M906 X1000 Y1000 Z1000 E1000 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 X310 Y320 Z400 S0 ; set axis maxima

      ; Endstops
      M574 X1 S1 P"xstop" ; configure active-high endstop for low end on X via pin xstop
      M574 Y1 S1 P"ystop" ; configure active-high endstop for low end on Y via pin ystop
      M574 Z1 S2 ; configure Z-probe endstop for low end on Z

      ; Z-Probe
      M950 S0 C"exp.heater7" ; 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 Z3.7 ; set Z probe trigger value, offset and trigger height
      M557 X50:280 Y50:280 S50 ; define mesh grid

      ; Heaters
      M308 S0 P"bedtemp" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin bedtemp
      M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
      M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit
      M140 H0 ; map heated bed to heater 0
      M143 H0 S120 ; set temperature limit for heater 0 to 120C
      M308 S1 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin e0temp
      M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
      M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit

      ; Fans
      M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
      M106 P0 S0 H1 T60 ; set fan 0 value. Thermostatic control is turned on
      M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
      M106 P1 S1 H-1 ; set fan 1 value. Thermostatic control is turned off

      ; Tools
      M563 P0 S"Extruder 1" 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

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      getting this error now
      G28 Warning: Obsolete use of S parameter on G1 command. Use H parameter instead.

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      yeah updated here is my new config .g

      ; Configuration file for Duet WiFi (firmware version 3)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.1.4 on Mon Sep 28 2020 10:10:20 GMT+0100 (British Summer Time)

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

      ; Network

      M552 S1 ; enable network
      M586 P0 S1 ; enable HTTP
      M586 P1 S0 ; disable FTP
      M586 P2 S1 ; enable 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 forwards
      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 E415 ; set steps per mm
      M566 X720.00 Y720.00 Z18.00 E600.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E3000.00 ; set maximum speeds (mm/min)
      M201 X750 Y750 Z100 E5000 ; set accelerations (mm/s^2)
      M906 X1000 Y1000 Z800 E1000 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 X305 Y330 Z400 S0 ; set axis maxima

      ; Endstops
      M574 X1 S1 P"xstop" ; configure active-high endstop for low end on X via pin xstop
      M574 Y1 S1 P"ystop" ; configure active-high endstop for low end on Y via pin ystop
      M574 Z1 S2 ; Define Z to use Probe. Home to Min

      ; Z-Probe
      M307 H7 A-1 C-1 D-1 ; Disable the 7th Heater to free up PWM channel 5
      M558 P9 H5 F500 T4000 X0 Y0 Z1 ; Set Z probe type/mode 5. H=Dive Height. F=Speed the bed moves
      G31 P25 X46.5 Y0 Z3.70 ; Z probe trigger value, offset in relation to nozzle. And trigger height adjustment
      M557 X50:280 Y45:310 S50 ; define mesh grid

      ; Heaters
      M308 S0 P"bedtemp" Y"Thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin bedtemp
      M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
      M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit
      M140 H0 ; map heated bed to heater 0
      M143 H0 S120 ; set temperature limit for heater 0 to 120C
      M308 S1 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin e0temp
      M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
      M307 H0 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit

      ; Fans
      M950 F0 C"fan0" Q500 ; create fan 0 on pin fan 0
      M106 P0 S1 H1 T60 ; enable thermostatic control on fan 0 heater 1 sensor 1
      M950 F1 C"fan1" Q500 ; create fan 1 on pin fan 1
      M106 P1 S0 H-1 ; disable thermostatic control on fan 1

      ; 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

      ; Automatic power saving
      M911 S21 R23 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; Set voltage thresholds and actions to run on power loss

      ; Default firmware retraction configuration
      M207 S3.2 R-0.1 F3600 T1200 Z0 ; Set 3.2mm retraction, -0.1 restart, 3600 mm/min feed rate, 1200 mm/min restart feed rate, no z change

      ; Other settings
      G29 S1 ; Enable automatic bed mesh compensation
      M572 D0 S0.16 ; Enable pressure-advance
      M915 X Y S10 F1 R1 ; Enable stall detection for X and Y axis with a sensitivity of 10 and report only
      M915 Z S0 F1 R1 ; Enable stall detection for Z axis with a sensitivity of 10 and report only

      ; Miscellaneous
      M501 ; Load saved parameters from non-volatile memory

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: BLTouch Homing in wrong direction

      issue I am having is saying G30 Probe zero not found

      posted in Duet Hardware and wiring
      chrisundefined
      chris
    • RE: Firmware Not Updating

      @Phaedrux yeah pal, seems alright now

      posted in Firmware installation
      chrisundefined
      chris
    • RE: Firmware Not Updating

      copied to sd card and ran M997 S0 and shows this is this correct now?

      FIRMWARE_NAME: RepRapFirmware for Duet 2 WiFi/Ethernet FIRMWARE_VERSION: 3.1.1 ELECTRONICS: Duet WiFi 1.02 or later FIRMWARE_DATE: 2020-05-19b2

      posted in Firmware installation
      chrisundefined
      chris