Adjustable feedrate and spindle speed

It would be nice to be able to make a percent adjustment to feed rates while running, and to adjust spindle speed while running.

24 Likes

I couldnā€™t agree more. Being able to increase/decrease the feed rate of a carving while it is running would be a great way to help you set the optimal feed rate for your project. Mach 3 has this feature for both the feed rate and spindle rpm. Of course you can adjust the rpm of a Makita on the fly and if you have a VFD driven spindle then there is almost always a manual RPM adjustment options available there. So in reality, for most of us, if OneFinity could add an option for a feedrate override, I think that would awesome.

10 Likes

I think another nice option would be keyboard shortcut controls for Jogging. Want to really go all out, make them assignable by the end user with an option for slow jog and fast jog. I know that the great folks at OneFinity have their number one priority on getting all the machines sent out as quickly as possible to all the customers who are currently pacing the floor and drooling in anticipation. They are right to do so, this machine is simply amazing! I think that when they get caught up, the will have more time to consider software enhancements. Till then, Iā€™m thrilled with what I have.

4 Likes

Well i just got my machine and my first cut was a Wastboard flatten. TOOK 3 Hours.

We really need a feed rate Override Option. And soon.

T

4 Likes

Agreed this should be a priority feature addition!

5 Likes

After doing some digging last night on the web interface, there are stubs created for future implementation of this in the buildbotics layer. So at least this is not a new thought. The fields are hidden on the controller interface but there. I do feel this is a very nice feature to have. Although based on this link from their forum, may be a bit more challenging to implement https://forum.buildbotics.com/viewtopic.php?f=9&t=170&p=384&hilit=feed+rate#p384

I would love this feature. This is the one think I miss from running Carbide Motion (the only thing I miss).

3 Likes

I agree with all above, for large or detailed projects this is a must.

5 Likes

My first run of new G-code is to optimize the cut through listening to the sounds from the spindle and adjusting the feed and spindle rpm. Not having the ability to change these parameters while cutting is a real disappointment. If the feature could be added it would be an important addition to the controller.

Please hurry and build my machine to.

4 Likes

I feel like this feature is not likely to happen anytime soon. There is mention of it in the HTML file but it seems the way the controller works is by front loading the file and planning movements at that point. The HTML file has pretty much every G & M code for LinuxCNC in it, but a bunch are ā€˜Unimplementedā€™. I donā€™t think this means that the controller is capable of all of these commands in the future. So, on the fly adjustments to feed is going to be a tall task. I think it would have to be a big overhaul on how the controller runs files to make this happen.

However, Iā€™m kind of surprised that there hasnā€™t been an on-the-fly speed adjustment released for spindles, that seems quite doable.

I would like this feature as well.

1 Like

Big +1 on this from me. A lot of OF users, including me, are learning CNC, and the opportunity to explore the machineā€™s range of sounds and performance without endless cycles of generating new ncā€™s would be huge!

2 Likes

Bump bump bump bump bump bump !

2 Likes

Yes please add adjustable feed rate.

1 Like

+1 Enthusiastic bump!

1 Like

Bump! +1 for me too.
Makes for a much safer experience.

1 Like

I did a little source code hunting, and found that there are feed and speed overrides already in the UI, just hidden with some CSS. View source on the control page and search for override_feed and youā€™ll see the references. Have not tried to change them yet, but can confirm the backend code seems to be in place to pass those values deeper into the backend. If I get a minute to run a program in the air, Iā€™ll report back to see if these work.

The lack of feed adjustment is my only real gripe about my OneFinity.

1 Like

And it should be adjustable to increase past 100% as well as slow downā€¦

Finally made a minute to test. (I know, Iā€™m speedy.)
adjusting the CSS does show slider controls for speed and feed override. Adjusting them does make an API post request that looks like this:
http://onefinity.local/api/override/feed/1.54
when setting feed to 154%, and the response is a 200 ā€œokā€. The actual feeds donā€™t change however, indicating that there is something else missing.

Iā€™ll keep looking.

The error exists within the AVR code, not the webserver. The feed override is a multiplier, and is set but never used. I suspect this line needs to be modified:
https://github.com/OneFinityCNC/onefinity-firmware/blob/master/src/avr/src/exec.c#L94
from
ex.velocity = v;
to something like
ex.velocity = v * ex.feed_override;
in order for it to pay attention to the override value.

Thatā€™s all the exporation time I have at the moment. Iā€™d love this feature. Imagine using the d-pad buttons on the controller to adjust it up and down by 5%, and seeing the new feedrate show on the screen. There is also the potential for reading a value from an analog input to set the value.

So, if somebody reads this that has the power to deliver on the TODOā€™s within the code for feed rate override, please consider this as a valuable update.