|
Re: ? programming servos
to declare one is fairly easy,
try:
AnalogChannel *pot;
pot=new AnalogChannel(<channel>);
then to get the voltage from it:
pot->GetVoltage();
check out the c++ help files, they explain a fair amount, not always in the best of detail but usually enough to use things
|