Interesting Tech Projects
Pronsole Tips and Tricks
Pronsole is a great way to control a 3D printer. it’s quick, efficient and customizable, however it does omit some useful commands. Here are some you can add to make it a bit more useful. Define the command using ‘macro’. then use the command by typing it’s name in.
motorsoff
This command turns the motors off. Useful if you wish to manually move an axis on the machine.
macro motorsoff M18
resetsd
On the Melzi board removing and inserting the SD card stops the card from being used any further until M21 is issued.
macro resetsd M21
loud
It can be handy to see all the gcodes that are being sent to the controller board and all the responses coming back. Also if you have a RepRapPro machine it won’t monitor the temperatures because pronsole doesn’t understand the values that are returned. Using this command will allow monitor to work again.
macro loud !self.p.loud = 1
quiet
This is the opposite of loud. It turns off reporting of gcodes and responses.
macro quiet !self.p.loud = 0
Print article | This entry was posted by Andy on July 28, 2013 at 11:57 am, and is filed under 3D Printing. Follow any responses to this post through RSS 2.0. Both comments and pings are currently closed. |
Comments are closed.
about 7 years ago
Hi,
I’m using pronsole.exe. I’m manually loading .gcode file, connect COM8, print.
Can I automate these 3 commands through my code or any other batch scripts?
If I need to edit any .py file in order to automate then please tell me the .py file name.
If I have to run the commands through other batch file then kindly let me know the script.
I already have tried in many ways.
Thanks & Regards,
Debakanta
about 7 years ago
Sorry, no idea. I use SSH and do everything step by step.