Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-07-07 Thread Mala Dies
Oh *SNAP*, I think I may be on the wrong board. I just realized I have been using the BBGW instead of the Rev. C or BBBW. Crud. I will keep trying. Seth P.S. I will get back to everyone soon. Sorry for this issue. On Friday, July 7, 2017 at 7:52:26 PM UTC-5, Mala Dies wrote: > > Hello Rob,

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-07-07 Thread Mala Dies
Hello Rob, Seth here, again. I tried out the *(reading.value / 4096.0) * 1800;* in the software. It tells me that I have a temperature of -49.99 degrees in Celsius. I am trying to make believe my calculations from the software are correct with the inside/climate controlled temp. in this house.

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-30 Thread Mala Dies
Hello, Thank you. Seth On Friday, June 30, 2017 at 10:52:05 PM UTC-5, William Hermans wrote: > > > > On Fri, Jun 30, 2017 at 8:33 PM, Mala Dies > wrote: > >> Mr. Rob, >> >> Why would I use the value 4096.0? >> >> Seth >> >> P.S. I have tried to suit the software to suit my

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-30 Thread William Hermans
On Fri, Jun 30, 2017 at 8:33 PM, Mala Dies wrote: > Mr. Rob, > > Why would I use the value 4096.0? > > Seth > > P.S. I have tried to suit the software to suit my needs and I keep coming > up empty. I will try this value and I will get back to you. > Do you know anything about

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-30 Thread Mala Dies
Mr. Rob, Why would I use the value 4096.0? Seth P.S. I have tried to suit the software to suit my needs and I keep coming up empty. I will try this value and I will get back to you. On Thursday, June 29, 2017 at 8:29:36 PM UTC-5, RobertCNelson wrote: > > > > On Thu, Jun 29, 2017 at 8:21 PM,

Re: [beagleboard] Re: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-30 Thread Mala Dies
Hello, Okay...I will try it. Seth On Friday, June 30, 2017 at 4:14:06 PM UTC-5, Przemek Klosowski wrote: > > > On Fri, Jun 30, 2017 at 10:54 AM, Dennis Lee Bieber > wrote: > >> Someone else will have to comment on whether that language does >> automatic promotion to

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-29 Thread Mala Dies
Here are some print outs from a recent run from my software on the BBGW. Seth P.S. Here is the picture: On Thursday, June 29, 2017 at 10:05:07 PM UTC-5,

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-29 Thread Mala Dies
Oh and my print out was 0.057. Seth On Thursday, June 29, 2017 at 10:04:01 PM UTC-5, Mala Dies wrote: > > Hello, > > I used cosole.log to print out the name and value of reading.value. > > Seth > > On Thursday, June 29, 2017 at 8:50:44 PM UTC-5, Jason Kridner wrote: >> >> >> >> On Jun 29,

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-29 Thread Mala Dies
Hello, I used cosole.log to print out the name and value of reading.value. Seth On Thursday, June 29, 2017 at 8:50:44 PM UTC-5, Jason Kridner wrote: > > > > On Jun 29, 2017, at 9:21 PM, Mala Dies > wrote: > > Hello Rob, > > Seth here. I am located in the states. There is a

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-29 Thread Mala Dies
Hello, How can I print out the reading.value? Seth On Thursday, June 29, 2017 at 8:50:44 PM UTC-5, Jason Kridner wrote: > > > > On Jun 29, 2017, at 9:21 PM, Mala Dies > wrote: > > Hello Rob, > > Seth here. I am located in the states. There is a big fault and I am not >

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-29 Thread Jason Kridner
> On Jun 29, 2017, at 9:21 PM, Mala Dies 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? I figured that there would be a part to > the software, the section that displays the

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-29 Thread Jason Kridner
> On Jun 29, 2017, at 9:28 PM, Robert Nelson wrote: > > > >> On Thu, Jun 29, 2017 at 8:21 PM, Mala Dies 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? >

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-29 Thread Robert Nelson
On Thu, Jun 29, 2017 at 8:21 PM, Mala Dies 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

Re: [beagleboard] RE: Um...My Temp in F Degrees is the Same as the C Degrees/Dang!

2017-06-29 Thread Robert Nelson
On Thu, Jun 29, 2017 at 7:46 PM, Mala Dies wrote: > var b = require('bonescript'); > > function readTemp() { > b.analogRead('P9_39', displayTemp); > } > > function displayTemp(reading) { > var millivolts = reading.value * 1800; > var