running a 12v heater at 24 volts actually quadruples the heating power so be very careful the general advise is to spend a small amount and get a 24V Heater cartridge there not that expensive and will be a damned site safer
Best posts made by Dougal1957
-
RE: 12 volt heat cartigde with 24 volt supply
-
RE: 3D GCode Viewer integrated with DWC
@Sindarius Just loaded it up and what I see looks sort of OK think you also need to check the Config.g to decide on the type of printer it automatically seems to default to a Rectangular bed with the origin at 0 0.
I the case of a delta the origin is still 0,0 but is in the centre of a circular bed.
I you check the config.g for a M665/M666 lines and set it to circular centre origin it would be pretty damned good?
-
RE: Temperature chart scale up to 2000c after updating to RRF3.2?
As far as I can tell your M140 (line 75) should come after the corresponding M950 (line 85)
"Order dependency
In RRF3 a M140 command with H parameter (other than H-1) must come after the M950 command that creates that heater, and before any M143 command that sets a temperature limit for that heater."
HTH Doug
-
RE: Premade Cable Ends
@moowcowsia don't use solid core cable with all the movement the cores will work harden and fracture and that is probably what is causing your issue. You can get stranded cat5/6 cables usually as a patch cable rather than on a drum but should be easy to find and then to crimp as normal.
Any computer store should have them and if it is soft and flexible then it will be stranded but if stiffer then its will be solid.
Doug
-
RE: Tool Board Heater Tuning Leading To Faults
@diy-o-sphere said in Tool Board Heater Tuning Leading To Faults:
@fcwilt
Not required for PT1000 on Duet3 and Maestronor on a wifi/ethernet duet 2 board either just not quite as accurate due to the 4k7 sense resistor rather than the 2k2 one
-
RE: G32 Error: Auto calibration failed
the G30 P8 line in your Bed.g is missing a decimal point on the H parameter causing it to think the offset at that point is huge (192mm)also I notice in your M563 line you have the dive hight set to 1mm maybe increase this as well.
Maybe that is what is causing it too fail?
Doug
-
RE: Rigid vs Flexible Couplers for Trapezoidal Leadscrews?
@snowcrash here you go I do need to locate a slightly smaller bearing and make a spacer up for between the bearing and the coupling the one shown is a 10mm bore one and I am looking for a 6 or 8 mm one the reason for the over size is I dont want the bottom race to be in contact with the shaft at all.
HTH
Doug
-
RE: Compute Module 4 and Duet 3
@tlas IIRC the Wifi version has a separate antenna so a metal box shouldn't be an issue https://shop.pimoroni.com/products/raspberry-pi-compute-module-4-antenna-kit
Doug
Latest posts made by Dougal1957
-
RE: Unknown Board (probably some clone)
@Dougal1957 said in Unknown Board (probably some clone):
@o_lampe and a burnt socket for whatt looks to be Fan0
think that may be what @o-lampe was referring to
-
RE: Unknown Board (probably some clone)
@o_lampe and a burnt socket for whatt looks to be Fan0
-
RE: Motors move wrong way
@tecno said in Motors move wrong way:
So M584 line has to be X0 Y1 Z2 and E4 or E5 or just E4 no x/y/z?
I am just about to go out but I will get you a copy of my Config.g
; General preferences M575 P1 S1 B57600 ; enable support for PanelDue G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"Delta" ; set printer name M665 R239.403 L450.7 B175 H401 ; 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 ; Network M552 S1 ; enable network M586 P0 S1 ; enable HTTP M586 P1 S1 ; enable FTP M586 P2 S0 ; disable Telnet ; Drives M569 P0 S1 ; physical drive 0 goes forwards M569 P1 S1 ; physical drive 1 goes forwards M569 P2 S1 ; 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 X200.00 Y200.00 Z200.00 E2500.00 ; set steps per mm M566 X54000.00 Y54000.00 Z54000.00 E2400.00 ; set maximum instantaneous speed changes (mm/min) M203 X1080000.00 Y1080000.00 Z1080000.00 E144000.00 ; set maximum speeds (mm/min) M201 X1000.00 Y1000.00 Z1000.00 E120.00 ; set accelerations (mm/s^2) M906 X1000 Y1000 Z1000 E500 I30 ; set motor currents (mA) and motor idle factor in per cent M84 S30 ; Set idle timeout ; Axis Limits M208 Z0 S1 ; set minimum Z ; Endstops M574 X2 S1 P"xstop" ; configure switch-type (e.g. microswitch) endstop for high end on X via pin xstop M574 Y2 S1 P"ystop" ; configure switch-type (e.g. microswitch) endstop for high end on Y via pin ystop M574 Z2 S1 P"zstop" ; configure switch-type (e.g. microswitch) endstop for high end on Z via pin zstop ; Z-Probe M558 P5 R0.4 C"zprobe.in+zprobe.mod" H5 F1200 T6000 ; set Z probe type to effector and the dive height + speeds G31 P500 X0 Y0 Z0.1 ; set Z probe trigger value, offset and trigger height M557 R85 S20 ; define mesh grid ; Heaters M308 S0 P"spi.cs2" Y"rtd-max31865" F50 ;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 B0 S1.00 ; disable bang-bang mode for the bed heater and set PWM limit M140 H0 ; map heated bed to heater 0 M143 H0 S75 ; set temperature limit for heater 0 to 75C M308 S1 P"spi.cs1" Y"rtd-max31865" F50 ;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 M143 H1 S280 ; set temperature limit for heater 1 to 280C ; Fans M950 F0 C"fan2" Q500 ; create fan 0 on pin fan0 and set its frequency M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on ; Tools M563 P0 D0 H1 F2 ; 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 M501 ; load saved parameters from non-volatile memory T0 ; select first tool
-
RE: Motors move wrong way
Also remember that in Delta kinematics all 3 axis have to move for any movement in the cartesian plane.
-
RE: Motors move wrong way
@tecno said in Motors move wrong way:
Sorry but there is no reason to have X on port 1 !
Anyhow I did that and edit config and switched motor wires = Still same problem
Will try to switch motor wires on one winding to see if it helps.
//edit No it did not
Your config order of the M569 P1 to P3 suggests that the motors are connected to ports 1 2 and 3 in XYZ order tho
Maybe reverse the order of them may solve your issue because your motors all move in the correct way when individually commanded it has to be a config issue!Argh sorry that order I don't think matters but I think it is still worth trying.
Just looked up M584 and wonder if this maybe your issue.```
-
RE: Motors move wrong way
@tecno In that case I think your M584 is in the wrong sequence as George said above try
M584 X1 Y2 Z3 E0 assuming that the motors are connected to X Y and Z ports in that order.
-
RE: Motors move wrong way
@tecno with a simple diagram can you show us the motor positions when looking down on the delta from above similar to
Z
X Y.
Also post your full Config.g
Doug
-
RE: Web Control and firmware not compatible anymore
@fg do you have a M575 line in your Config.g to configure the Serial comms for the PanelDue?
see https://docs.duet3d.com/en/User_manual/Reference/Gcodes.Doug
-
RE: Web Control and firmware not compatible anymore
@fg which Firmware did you have on the duet before the upgrade?
-
RE: firmware upload crc errors
@ptegler I do hope that the filename you quoted (Duet2combined----) is a typo as surely a mini 3 5+ would need the duet3 firmware (Duet3Firmware_Mini5plus.uf2).