Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upLive Feedrate/Flowrate Control: feature request #362
Comments
This comment has been minimized.
This comment has been minimized.
|
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. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
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:
|
This comment has been minimized.
This comment has been minimized.
|
Implemented in |
This comment has been minimized.
This comment has been minimized.
|
I love the sliders, and so I want more :) |
This comment has been minimized.
This comment has been minimized.
... => 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. |
This comment has been minimized.
This comment has been minimized.
|
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. |
This comment has been minimized.
This comment has been minimized.
|
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 |
This comment has been minimized.
This comment has been minimized.
|
@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. |
This comment has been minimized.
This comment has been minimized.
|
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.