Quote:
|
Originally Posted by Mark McLeod
For the RC dashboard screen you'll have to scale the pot (0-1023) to the range (0-255) and set one of the User_Byte's (1-6) to that value.
|
Or use two user bytes:
Code:
User_Byte1 = value >> 8;
User_Byte2 = value & 255;