-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Live Feedrate/Flowrate Control: feature request #362
Comments
Do you have a suggestion on what that would look like? Right now you can just send the gcode directly.
Just curious what the ideal UX for you would be. |
Heh, I just implemented that with a custom command. Not perfect, but controls:
On Tue, Jan 28, 2014 at 10:42 PM, AJdoodler notifications@github.comwrote:
|
Implemented in |
I love the sliders, and so I want more :) |
... => http://docs.octoprint.org/en/devel/features/custom_controls.html
For some it's one click too many, others want the added safety cushion. From a technical point of view, each modification necessitates sending a command to the printer. During printing that means adding control overhead to the line. If you have to click the button, I only have to send one command instead of one per change. That's better for performance.
No, there isn't. |
Hi, I would like to be able to adjust the maximum percentage of speedup (in config.yaml etc.) My reason: I have a kossel optimized for fast printing which prints nicely at 90mm/s. |
There's no way to get the current flow rate (so as to not display % but mm/s) is there? I'm also interested because I'm doing a filament sensor and if the filament should not move at the moment (e.g. machine heating or cooling or waiting for a minimum-layer-time) then it should not cause an alarm that the sensor doesn't detect any filament movement. http://marcuswolschon.blogspot.de/2016/06/ultimaker-ii-filament-sensor-and-remote.html |
@MarcusWolschon no. Even watching the commands go by on send won't be very accurate for this due to two factors: First, firmware's have a command buffer, so the speed of the currently executing command is a command buffer full of commands earlier than the current command being sent. Also, the current actual speed differs from the commanded speed due to firmware calculations like maximum speed, acceleration and jerk. There are sensors like this out there, but they guess on reasonable feed over time (mostly upper limit on stationary filament) like the Tunell monitor: https://www.toybuilderlabs.com/products/tunell-3d-printer-filament-monitor Some firmware/motherboard combos have a mechanism for a pin pulled low (or high) causing a pause (sailfish calls it p-stop) that this integrates with. You could also do that in an OctoPrint plugin and gpio on a Pi. However, to be precise on measuring the difference between expected filament consumption and actual feed, you'd need a more cooperative firmware that can output in some way the current expect consumption. If you did do this, it'd be pretty cool because you could also adjust for material friction and diameter differences and other feed differences automatically. |
Is it possible to have help Texts while floatining over the Button Element??? I am always confused about the difference between Flo and Feerate.... |
It would be nice to add a control feature that would allow the user to throttle up/down the feedrate and flowrate during a print.
The text was updated successfully, but these errors were encountered: