Quote:
|
Originally Posted by ace123
One thing that you should be aware of is that the Operator Interface analog inputs give you 8 bits while the Robot Controllers give you 10 bits of data.
|
It is easy enough. In programming you enter
pot= (unsigned char) (Get_Analog_Value(rc_ana_01) >> 2);
Something like that. The >>2 reduces it to a 8-bit. It is even there in last years programming manual.
-Bharat