1 hour ago, JTMD said:I'm with you on this.. I'm also an ABS guy.
I think I short-circuited the process once by cycling the power on the machine.
Yeah I tried power cycle but when it comes back on it still required the cool down.
- 1
1 hour ago, JTMD said:I'm with you on this.. I'm also an ABS guy.
I think I short-circuited the process once by cycling the power on the machine.
Yeah I tried power cycle but when it comes back on it still required the cool down.
49 minutes ago, Smithy said:It is/was also annoying for me, so I did some research on the firmware and here is a solution how to get rid of the cool down phase.
Do this hack on your own risk and be very careful when you edit the file. Any mistake can brick your printer! And you have to do the same steps after the next firmware upgrade.
You need to enable the developer mode on the printer and then ssh into it. Username root, Password ultimaker
First we should enable SSH permanently to be on the safe side. When you enable the developer mode in the menu, it is just a flag to enable ssh during the startup of the printer. But when you have an error in the file, the startup will be interrupted and the SSH daemon will never be started. Therefore we enable it per default to always have access to the printer in case something goes wrong.
For older firmware versions < v6.0 do: systemctl enable dropbear For the newer ones > v6.0: systemctl enable ssh
Then you have to edit the file
/usr/share/okuda/components/progress/PrintProgress.qml
There you can change the temperate which is considered to be safe in line 10:
property var safeToTouch: Okuda.SystemStateProxy.printBed.temperature < 60.0Set it < 100.0 for example.
Then just reboot the printer.
You should have some knowledge how to edit files in Linux. I am using the vi editor, but it could be strange to someone who have never used vi before.
And again, you could brick your printer when something goes wrong, so do it on your own risk.
Amazing, I'm gonna give that a look next week!
Short update, with the new firmware the file has changed:
/usr/share/okuda/Okuda/QmlPlugin/Okuda/Defines.qml
Great news, Smithy created this wonderful tool:
Recommended Posts
Smithy 1,146
It is/was also annoying for me, so I did some research on the firmware and here is a solution how to get rid of the cool down phase.
Do this hack on your own risk and be very careful when you edit the file. Any mistake can brick your printer! And you have to do the same steps after the next firmware upgrade.
You need to enable the developer mode on the printer and then ssh into it. Username root, Password ultimaker
First we should enable SSH permanently to be on the safe side. When you enable the developer mode in the menu, it is just a flag to enable ssh during the startup of the printer. But when you have an error in the file, the startup will be interrupted and the SSH daemon will never be started. Therefore we enable it per default to always have access to the printer in case something goes wrong.
Then you have to edit the file
/usr/share/okuda/components/progress/PrintProgress.qml
There you can change the temperate which is considered to be safe in line 10:
Set it < 100.0 for example, to see everything below 100°C as safe.
Then just reboot the printer.
You should have some knowledge how to edit files in Linux. I am using the vi editor, but it could be strange to someone who have never used vi before.
And again, you could brick your printer when something goes wrong, so do it on your own risk.
Link to post
Share on other sites
Smithy 1,146
And here a one-liner without the need to struggle with the vi editor. Just copy and paste the command line to the ssh terminal and hit enter. The safe temperature will be changed from 60.0 to 100.0 and the printer service will also be restarted after the change. No need to reboot the printer.
Link to post
Share on other sites