-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: Detect when bed is already hot and start heating nozzle immediately. #12
Comments
Whoops. Thought I opened that up. Well it is now 😄 You can already do this by modifying the routine in settings. It's user customizable. https://docs.octoprint.org/en/master/features/gcode_scripts.html#snippets |
Though I'm curious as to what your firmware is doing because https://www.reprap.org/wiki/G-code#M190:_Wait_for_bed_temperature_to_reach_target_temp |
That IS interesting. It is indeed enabled in the plugin settings. After a cursory glance at what M190 does and a quick google, it appears it's a Klipper fault per this report: Klipper3d/klipper#1108 While there are a number of good reasons I like Klipper over Marlin, the fact that its Marlin G-code compatibility is still under development does tend to cause problems. I don't have time to look into it further until tonight, but I will do so and get back to you if you would like with a proper solution. While I'm not quite to ready to close this without the Klipper solution, I think it's dealt with as much as is required for now since the solution doesn't seem to be with the plugin. |
Good find. Not sure I'd agree with the Klipper devs. What they seem to be doing is implementing |
@Silverfire9 I just realized that OctoPrint-SetAndWait may help you. |
Did you made this snippet? |
; Wait for bed to reach 80% of required temp then set to required temp ; Set tool temps ; Wait for bed ; Wait for tools This is solution |
This is still an issue. |
Sorry about posting here, but the feature request link doesn't look like it's live yet. No entry for this plugin on the feathub/kantlivelong page.
I noticed that if I start another print immediately after finishing the last one, the plugin waits for the bed to cool down to the temperature it expects to change to both heaters starting before starting to heat the nozzle. I'm thinking it should be easy enough to add to the code so that it can detect whether the bed is in the range where both would be heating and just start everything.
Ex. Temperature settings are at 60degC and 200degC. Actual bed temperature is 54degC and nozzle temperature is 32degC
Current behaviour:
Plugin waits for bed to cool to 48degC before reheating the bed and nozzle at the same time.
Desired behaviour:
Plugin detects that the bed is already warmer than the initial setting (but not warmer than the final setting to allow for different bed temperature settings ie. first print is ABS, at 110degC and second is PLA at 50degC, but bed is still at 75degC) and start to heat both devices immediately.
Figured it would be as simple as a change from an '=' to a '>=' in one expression and the addition of a '<' expression elsewhere, but I don't "speak" js so didn't see where in the code.
The text was updated successfully, but these errors were encountered: