Yeah, FVR gave me a dead spot at the high end. These pots already have a slight deadzone at both ends, so FVR made it much more apparent.


Code:
    adcin 1, ADCreading
    ADCinput = ADCreading >> 1
Has light jitter with this pot.


Code:
    adcin 1, ADCreading
    ADCinput = ADCreading >> 2
Works, but if I get a pot that's slightly "less good", I'll get jitters.

I can work with >> 3, that still gives me 128 positions. That<S plenty of increments for a manual control, and I can always multiply by 4 when the flight sim absolutely wants 1024.