- Posts: 43
Throttle gimbal
- povlhp
-
Topic Author
- Offline
Less
More
06 Dec 2016 08:51 #56576
by povlhp
Throttle gimbal was created by povlhp
Can I get some good cheap replacement gimbals somewhere ?
My problem is the throttle gimbal. When it is down it is -100. If I press it down or down and a bit to the sides, it goes to -120..-125 ish. This is not very good. I need a stable lower limit.
Is there better hardware ? Can the software help me ?
Or is the solution to calibrate differently - Say move the throttle stick down, but not too hard down, and have this registered as -100. And then have the endpoint at -100 in software (min limit) ? So that anything lower than -100 will be -100.
Can I set min limit to -100, and still have failsafe at say -150 ? It is throttle I have issues with, and it is throttle failsafe that are most common.
My problem is the throttle gimbal. When it is down it is -100. If I press it down or down and a bit to the sides, it goes to -120..-125 ish. This is not very good. I need a stable lower limit.
Is there better hardware ? Can the software help me ?
Or is the solution to calibrate differently - Say move the throttle stick down, but not too hard down, and have this registered as -100. And then have the endpoint at -100 in software (min limit) ? So that anything lower than -100 will be -100.
Can I set min limit to -100, and still have failsafe at say -150 ? It is throttle I have issues with, and it is throttle failsafe that are most common.
- Fernandez
-
- Offline
Less
More
- Posts: 983
06 Dec 2016 09:37 #56580
by Fernandez
Replied by Fernandez on topic Throttle gimbal
Let me guess it is about a devo7e? I noticed that the stick itself is to thick, so due this the stick blocks to the edges of the gimbal.
Using of aluminum thicker aftermarket sticks on the 7e makes the problem even worse.
Possibly you could dremel some material away from side of sticks??
Using of aluminum thicker aftermarket sticks on the 7e makes the problem even worse.
Possibly you could dremel some material away from side of sticks??
- povlhp
-
Topic Author
- Offline
Less
More
- Posts: 43
06 Dec 2016 10:27 #56583
by povlhp
Replied by povlhp on topic Throttle gimbal
Nope. It is actually the Devo 10.
I think that software should be able to handle this. If you calibrate the sticks, there should be no way that you can input stick values outside -100..100. Just let the rest be a deadzone.
The EPA could scale the values outside this range, part of the mixer. But I see no reason for sending stick values outside -100..100 into the mixer.
I think that software should be able to handle this. If you calibrate the sticks, there should be no way that you can input stick values outside -100..100. Just let the rest be a deadzone.
The EPA could scale the values outside this range, part of the mixer. But I see no reason for sending stick values outside -100..100 into the mixer.
- FDR
-
- Offline
06 Dec 2016 11:48 #56585
by FDR
You can alwaysgo lower if you push the stick harder, however it is only a few percents on my DEVO 8...
Replied by FDR on topic Throttle gimbal
I always do that, i.e. being firm on the sticks when calibrating, because otherwise the simply lowered throttle stick often won't reach the -100%.povlhp wrote: Or is the solution to calibrate differently - Say move the throttle stick down, but not too hard down, and have this registered as -100.
You can alwaysgo lower if you push the stick harder, however it is only a few percents on my DEVO 8...
- povlhp
-
Topic Author
- Offline
Less
More
- Posts: 43
06 Dec 2016 13:11 #56586
by povlhp
Replied by povlhp on topic Throttle gimbal
So you agree with me, that it would be better that calibration defines -100..100, and anything beyond that would be capped on stick input ?
Anybody here needs some other behaviour ? Then they can scale the axis, or use endpoint adjustment.
Anybody here needs some other behaviour ? Then they can scale the axis, or use endpoint adjustment.
- FDR
-
- Offline
06 Dec 2016 13:23 #56588
by FDR
Replied by FDR on topic Throttle gimbal
Yes.
Don't worry about the fail-safe value, that can be lower if needed, however I don't recall if the failsafe value applied before or after the limit...
Don't worry about the fail-safe value, that can be lower if needed, however I don't recall if the failsafe value applied before or after the limit...
- povlhp
-
Topic Author
- Offline
Less
More
- Posts: 43
06 Dec 2016 13:46 #56589
by povlhp
Replied by povlhp on topic Throttle gimbal
I am now looking in the source, for Devo 10, Devo 8 seems the same
github.com/DeviationTX/deviation/blob/ma...et/devo10/channels.c
It reads calibrated min/max:
s32 max = Transmitter.calibration[channel - 1].max;
s32 min = Transmitter.calibration[channel - 1].min;
But uses another value to actually calculate
value = (value - zero) * CHAN_MIN_VALUE / min;
And should limit min
if (value < CHAN_MIN_VALUE)
value = CHAN_MIN_VALUE;
CHAN_MIN_VALUE is -10000
So it should work as I want it to. But doesn't.
Naybe it is this:
if (channel == INP_THROTTLE || channel == INP_RUDDER)
value = -value;
unless calibration makes sure to switch min/max for these 2 channels as well ?
Looking at calibrationhere:
github.com/DeviationTX/deviation/blob/BR...mmon/_tx_configure.c
there is nothing to swap max/min on throttle/rudder. Does that mean we use the wrong end of the stick for max/min calibration ?
Somebody with a bit deeper code knowledge might be able to help here.
At least this is something I might be able to test on my Tx. Should be trivial
github.com/DeviationTX/deviation/blob/ma...et/devo10/channels.c
It reads calibrated min/max:
s32 max = Transmitter.calibration[channel - 1].max;
s32 min = Transmitter.calibration[channel - 1].min;
But uses another value to actually calculate
value = (value - zero) * CHAN_MIN_VALUE / min;
And should limit min
if (value < CHAN_MIN_VALUE)
value = CHAN_MIN_VALUE;
CHAN_MIN_VALUE is -10000
So it should work as I want it to. But doesn't.
Naybe it is this:
if (channel == INP_THROTTLE || channel == INP_RUDDER)
value = -value;
unless calibration makes sure to switch min/max for these 2 channels as well ?
Looking at calibrationhere:
github.com/DeviationTX/deviation/blob/BR...mmon/_tx_configure.c
there is nothing to swap max/min on throttle/rudder. Does that mean we use the wrong end of the stick for max/min calibration ?
Somebody with a bit deeper code knowledge might be able to help here.
At least this is something I might be able to test on my Tx. Should be trivial
- HappyHarry
-
- Offline
Less
More
- Posts: 1136
06 Dec 2016 13:51 #56590
by HappyHarry
Replied by HappyHarry on topic Throttle gimbal
why not just secure the pots into the mechanism properly?
- povlhp
-
Topic Author
- Offline
Less
More
- Posts: 43
08 Dec 2016 09:31 #56658
by povlhp
Replied by povlhp on topic Throttle gimbal
Now I re-calibrated, and could still get to -95 only, and found out that one of the switches (ELEV D/R) caused that.
www.deviationtx.com/forum/model-configs/...0-and-devo-10-mode-2
But the mixer had a simple mix, so I have no idea why the switch was able to add +5 to all throttle values (The Devo 10, E010 model from here), that is both ends.
I could get it to -110 by using the Elev D/R switch, but looking at the init, I can see it is a failsafe switch aka arm/disarm.
After calibrating without pressing too hard, a powercycle or 2 everything works as it should.
Guess I should read the downloaded ini or docs a bit better next time.
www.deviationtx.com/forum/model-configs/...0-and-devo-10-mode-2
But the mixer had a simple mix, so I have no idea why the switch was able to add +5 to all throttle values (The Devo 10, E010 model from here), that is both ends.
I could get it to -110 by using the Elev D/R switch, but looking at the init, I can see it is a failsafe switch aka arm/disarm.
After calibrating without pressing too hard, a powercycle or 2 everything works as it should.
Guess I should read the downloaded ini or docs a bit better next time.
- ajtank
-
- Offline
Less
More
- Posts: 278
11 Dec 2016 02:38 #56741
by ajtank
Replied by ajtank on topic Throttle gimbal
The gimbal quality varies among different transmitters. I got 2 devo 10, one is perfect without offset whilst one drifts by a slight percentage. Some users have discussed a fix
here
Time to create page: 0.416 seconds
-
Home
-
Forum
-
General
-
General Discussions
- Throttle gimbal