> On Jun 29, 2017, at 9:28 PM, Robert Nelson <[email protected]> wrote: > > > >> On Thu, Jun 29, 2017 at 8:21 PM, Mala Dies <[email protected]> wrote: >> Hello Rob, >> >> Seth here. I am located in the states. There is a big fault and I am not >> clued in, obviously. How is F == C? > > Your values are correct: > > -39.58241C = -39.2483F > > -40C = -40F > 0C = 32F > 100C = 212F > > >> I figured that there would be a part to the software, the section that >> displays the difference, that tells me/you the C and F reads. >> >> Seth >> >> P.S. I am in about an 80 degree temp. right now. So, do I need to replace >> "reading.value" with an actual numerical value? I will keep trying. > > var millivolts = reading.value * 1800; > > That's not right.. > > var millivolts = (reading.value / 4096.0) * 1800; > > i think...
BoneScripts's analogRead tries to normalize the value from 0 to 1 (full scale, i.e. 1.8V). I don't rule out a bug as drivers have changed in reporting millivolts or raw values. > > Regards, > > -- > Robert Nelson > https://rcn-ee.com/ > -- > For more options, visit http://beagleboard.org/discuss > --- > You received this message because you are subscribed to the Google Groups > "BeagleBoard" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/beagleboard/CAOCHtYhArOtm66Zf2vkCsSfjKzpqz7B9u6iGDYwhe4NUCx%3D17A%40mail.gmail.com. > For more options, visit https://groups.google.com/d/optout. -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/A3B93C68-11C0-4BFB-B670-0591F1B4C777%40gmail.com. For more options, visit https://groups.google.com/d/optout.
