> Is the divisor different on the OT2 than the OT+ Scott? Yes. See:
<https://svn.freepository.com/50lItuLQ7fW6s-web/browser/Tracker2/trunk/sources/hardware.h#L150> 150 // Voltage conversion (returns volts * 10) 151 // 0 = 0 volts, 255 = 20 volts, 1/12.75 volt per unit 152 #ifndef PROTOC 153 #define adc_to_volts(a) (((a) << 8) / 325) 154 #else 155 156 // Proto C and earlier - 1/17 volt per unit 157 #define adc_to_volts(a) (((a) << 8) / 435) 158 #endif Scott ------------------------------------ Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/tracker2/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/tracker2/join (Yahoo! ID required) <*> To change settings via email: mailto:[email protected] mailto:[email protected] <*> To unsubscribe from this group, send an email to: [email protected] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
