M671 like function for Delta printer
-
How can I get following to show measured points in Console or saved to CSV file?
G30 P0 X0 Y0 G30 P1 X-154 Y-164 G30 P2 X-63 Y214 G30 P3 X217 Y-52
-
This gives measurements in console, so far so good.
How to make calc so points 2/3/4 are compared to point 1 and answer in turns with 0.5 pitch.
M562 ; clear any bed transform from mesh leveling G90 ; absolute positioning G1 Z50 F4000 G1 X0 Y0 ; 1 point G30 S-1 G1 Z50 F4000 G1 X-154 Y-164 F4000 ; 2 point G30 S-1 G1 Z50 F4000 G1 X-63 Y214 F4000 ; 3 point G30 S-1 G1 Z50 F4000 G1 X217 Y-52 F4000 ; 4 point G30 S-1 G1 Z50 F4000 G28
-
Manual says:
The console output can be cleared, or downloaded as a plain text or CSV file, from the drop down menu on the right.Where do these files be saved?
-
I think, the delta calibration routine already has such bed tramming. But it adjusts the endstops instead.
Look in your config-override.g and find the endstop adjustment values. just have to recalculate these values for a 0.5mm pitch.I hope, I'm right and I understood your intentions correctly.
-
@tecno after G30 S-1 object model variable sensors.probes[0].lastStopHeight will be set. You could save those values in local variables, then write them to file use an echo command with redirection.
-
@dc42 said in M671 like function for Delta printer:
You could save those values in local variables, then write them to file use an echo command with redirection.
It is here it goes over my head, where are the files saved Download as
-
@tecno They are saved to whatever place your browser sets for downloads. I usually have my browser set to ask me where to download stuff (you can change this in your browser's preferences/settings). You can also usually look in the Downloads history to see where it has saved it, if it downloads automatically without asking. Probably your 'Downloads' folder.
Ian
-
@droftarts
Hi Ian,
I thougt so too but nothing is downloaded to my Downloads -
@tecno Strange. I downloaded to my desktop, appeared fine:
-
Just tested to see if my Ubuntu woks with this = Nothing
Tested with another W10 = Nothing
-
2023-02-03 12:50:21 Echo "Hi Ian"
Error: Bad command: Echo "Hi Ian" -
@tecno lower case 'e' in "echo". However, that doesn't explain why your browser isn't saving the console.txt. What version DWC and RRF?
Ian
-
did notice that with echo
Duet Web Control 3.4.5
Board: Duet 3 Mini 5+ (Mini5plus)
Firmware: RepRapFirmware for Duet 3 Mini 5+ 3.4.5 (2022-11-30) -
Tested with 3 browser = nothing
-
@tecno your browsers may be set to block downloads? not sure why but i just tested this as well and it works with Chrome on windows.
-
@T3P3Tony
No problems here with dowload, just tested to dowload stl file from thingiverse.Can this be a languae problem, my OS is in Swedish.
-
Any ideas what is causing this problem??
-
@tecno
Exactly what steps are you taking?
If you're trying to use echo then you have to use the correct syntax to write to a file.
https://docs.duet3d.com/User_manual/Reference/Gcode_meta_commandsIf you're trying to save the console then click on the icon with the horizontal lines and select download as text or csv
The file will be saved wherever your browser normally saves files.
If it doesn't then there is something blocking it. Either browser settings or anti virus perhaps. -
@OwenD said in M671 like function for Delta printer:
If it doesn't then there is something blocking it. Either browser settings or anti virus perhaps.
I have no problems dowloading files.
I can run backups with ```
c:/backup/rfm backup -domain bigdelta -password ******** c:/backup/bigdelta 0:/ -
Tested M122 on 3 of my printers now and it works OK, a window with where to save pops up so it isOK.
But this I get nowhere
Want to have the output from macro to a CSV. So what is my problem with this?