Need help with a code where control surfaces work normally but once the G limit is exceeded they disable until back under the value.
Test code that I want to add on to :
(Pitch0.3 + Trim0.07 + Roll-0.05 - PitchRate0.002)
Need help with a code where control surfaces work normally but once the G limit is exceeded they disable until back under the value.
Test code that I want to add on to :
(Pitch0.3 + Trim0.07 + Roll-0.05 - PitchRate0.002)
@Oyasumi Got it working now. (Pitch0.3 + Trim0.07 + Roll-0.05 - PitchRate0.002)*(VerticalG<2?1:0) just had to flip the sign
((VerticalG>x)?1:0)*(Pitch0.3 + Trim0.07 + Roll-0.05 - PitchRate0.002)
im assuming u want a functional G limiter tho so use and tune the G limiter found in this link