I tried to paint the glass bed white and apply the capton again. It seems to be working, so I will have all the options.
For a long time I would also like to change the probe, but every time I make a change it takes 5/6 days to fix it well.
Latest posts made by Mak64
-
RE: Ormerod2, problem new firmware.
-
RE: Ormerod2, problem new firmware.
The black cardboard under the glass illuminated me. I didn't know about this possibility. Maybe then, abandoning the 4 old targets, but using the new matrix system, it is worth trying again to stay on 1.26.
I would like to know if, given your experience, there is a support that conducts heat like glass, which is removable like glass through clips, with good adhesion. I have seen flexible magnetic plates on the market, but I do not know their effectiveness.
-
RE: Ormerod2, problem new firmware.
@droftarts I did some tests. By removing the line "M558 P1 H3 F120 T6000" it does not find zero because it DOES NOT turn on the probe.
I have the 4 wire probe.
I'll do more tests, but I'm already thinking about going back to 1.09r ....... -
RE: Ormerod2, problem new firmware.
@droftarts said in Ormerod2, problem new firmware.:
You should get a preview of the 4-point bed mesh in the DWC.
IanThanks, it's very kind of you. I'll definitely do this rehearsal this week. For now I'm going on with some workarounds, but I want to solve for sure.
Unfortunately (or fortunately), it has changed a lot since the old 1.09 from which I come.
Could I still use the glass plate with the new "IR probe Duet3D"? Could you indicate, if possible, a link with explanations for the assembly and use of this probe?
-
Ormerod2, problem new firmware.
Hi to all,
I'm trying to update the sign of my Ormerod2 to version 1.26 from the old 1.09r.
Having changed too many things, I have a bit of difficulty, but I'm slowly moving forward.
I still have the glass top with the 4 paper targets on the corners with the old IR probe (the original).I am having difficulty with plan compensation via G29 (new method) and also with G32 (old method).
- G29: I have not understood if with this system I can only test the 4 angles or I must necessarily make a matrix.
(which is impossible for me with a glass top and 4 corner targets). - G32: Although my targets are at X 65 and Y 215, in the bed.g that I attach, I have to give much higher coordinates
for the probe to go over it.
Can you tell me where I'm wrong?
I would not like to go back to 1.09r because it seems to me that the new sign has improved a lot.Is there anyone who installed this firmware on the ormerod 2?
If so, would you attach your sys files to understand?
Thank you all.
***************** Config.g **************************************
; Configuration file for Duet 0.6 (firmware version 1.21)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue Jan 28 2020 17:53:26 GMT+0100 (Ora standard dell’Europa centrale); General preferences
G90 ; send absolute coordinates...
M83 ; ...but relative extruder moves
M550 P"MaK64 Ormerod 2" ; set printer name; Network
M552 P192.168.1.134 S1 ; enable network and set IP address
M553 P255.255.255.0 ; set netmask
M554 P192.168.1.1 ; set gateway
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 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
M92 X80.00 Y80.00 Z4000.00 E420.00 ; set steps per mm
M566 X900.00 Y900.00 Z12.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
M203 X6000.00 Y6000.00 Z180.00 E1200.00 ; set maximum speeds (mm/min)
M201 X500.00 Y500.00 Z20.00 E250.00 ; set accelerations (mm/s^2)
M906 X800 Y800 Z800 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Axis Limits
M208 X-17 Y0 Z0 S1 ; set axis minima
M208 X230 Y210 Z175 S0 ; set axis maxima; Endstops
M574 Y1 S1 ; set active high endstops
M574 X1 Z1 S2 ; set endstops controlled by probe; Z-Probe
M558 P1 X65 Y5 H3 F120 T6000 ; set Z probe type to unmodulated and the dive height + speeds
G31 P245 X65 Y5 Z2.5 ; set Z probe trigger value, offset and trigger height
;M557 X110:230 Y5:205 S180 ; define mesh grid PROVE CON FOGLIO DI CARTA
; ORIGINALE M557 X65:215 Y5:185 S20 ; define mesh grid; Heaters
M305 P0 T10000 B3988 R4700 ; set thermistor + ADC parameters for heater 0 bed temp
M143 H0 S120 ; set temperature limit for heater 0 to 120C bed temp
M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1 nozzle temp
M143 H1 S280 ; set temperature limit for heater 1 to 280C nozzle temp; 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
Bed.g*******
; bed.g
; called to perform automatic bed compensation via G32
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue Jan 28 2020 17:53:25 GMT+0100 (Ora standard dell’Europa centrale)
M561 ; clear any bed transform
;G29 ; probe the bed and enable compensation
G30 P0 X115 Y5 Z-99999 ; define 4 points in a clockwise direction around the bed, starting near (0,0)
G30 P1 X115 Y205 Z-99999
G30 P2 X300 Y205 Z-99999
G30 P3 X300 Y5 Z-99999 S0 ; last point, and calculate compensation
M402 ; retract the Z probe************************** homeall.g ****************************
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue Jan 28 2020 17:53:26 GMT+0100 (Ora standard dell’Europa centrale)
G91 ; relative positioning
G1 S2 Z5 F6000 ; lift Z relative to current position
G1 S1 X-222 Y-215 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 S2 X5 Y5 F6000 ; go back a few mm
G1 S1 X-222 Y-215 F360 ; move slowly to X and Y axis endstops once more (second pass)
;G1 S2 X16 F6000 ; OFFSET ASSE X PER ANDARE SUL PIATTO (MAK64)
;G92 X0 ; ASSUME VALORE ZERO PER ASSE X (MAK64)
G90 ; absolute positioning
G1 X50 Y5 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********************** homez.g *************************
; homez.g
; called to home the Z axis
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue Jan 28 2020 17:53:26 GMT+0100 (Ora standard dell’Europa centrale)
G91 ; relative positioning
G1 S2 Z5 F6000 ; lift Z relative to current position
G90 ; absolute positioning
G1 X65 Y5 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************************** homex.g *******************************
; homex.g
; called to home the X axis
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue Jan 28 2020 17:53:26 GMT+0100 (Ora standard dell’Europa centrale)
G91 ; relative positioning
G1 S2 Z5 F6000 ; lift Z relative to current position
G1 S1 X-222 F1800 ; move quickly to X axis endstop and stop there (first pass)
G1 S2 X5 F6000 ; go back a few mm
G1 S1 X-222 F360 ; move slowly to X axis endstop once more (second pass)
G1 S2 Z-5 F6000 ; lower Z again
;G1 S2 X17 F6000 ; OFFSET ASSE X PER ANDARE SUL PIATTO (MAK64)
;G92 X0 ; ASSUME VALORE ZERO PER ASSE X (MAK64)
G90 ; absolute positioning********************* homey.g **************************************
; homey.g
; called to home the Y axis
;
; generated by RepRapFirmware Configuration Tool v2.1.8 on Tue Jan 28 2020 17:53:26 GMT+0100 (Ora standard dell’Europa centrale)
G91 ; relative positioning
G1 S2 Z5 F6000 ; lift Z relative to current position
G1 S1 Y-215 F1800 ; move quickly to Y axis endstop and stop there (first pass)
G1 S2 Y5 F6000 ; go back a few mm
G1 S1 Y-215 F360 ; move slowly to Y axis endstop once more (second pass)
G1 S2 Z-5 F6000 ; lower Z again
G90 ; absolute positioning - G29: I have not understood if with this system I can only test the 4 angles or I must necessarily make a matrix.