is this the easiest/best way to do C to Farenheit conversions?
Serial.print(DHT.humidity, 1);
Serial.print(",\t");
Serial.println(DHT.temperature*1.8+32, 1);
also, storing each in eeprom, will one byte hold the data? say 76.1? best way to do that would be appreciated thanks!
solution. changed
Serial.print(DHT.humidity,1);
to
Serial.print(DHT.humidity,0);
for the whole number. the first one gives a one place decimal point. moral of story, i learned a bit more by reading around. thank you all. kudos to rob for library, i couldnt use the dht22 library couldnt figure out conversion for life of me. this is small and compact, keep up good work you arduino folks.