Quote:
|
Originally Posted by Team 668
how do u set the dead band because the joysticks are really sensitive? thanks for your help
|
I think this is what you mean:
Code:
unsigned int DeadLimit(unsigned int pwmin)
{
if(((pwmin-127) && 0x7F) >15 ) return pwmin;
else return 127;
}
Which would make anything from 112 to 142 all to 127.