Hello.
I don't own a tmp36 temperature sensor but i wanted to experiment the example with my DHT11 (temp + humidity) sensor.
(Your file i use is DisplayTemperature(TMP36))
Some data arrives properly in unity but the values are just crazy (200 .. 50... degrees ..)

Could you please guide me in
WHERE i should act in order to calibrate the outputs to give me proper temperature.
Is it more in unity or in the sketch ? or in both ?
the only thing i see related with the VALUE is
ArdunityApp.resolution(256, 1024);
in the sketch.
i tried to uncomment this or put (0,1024) but it does not helps.
PS: here is the datasheet of the module
http://www.micro4you.com/files/sensor/DHT11.pdf+ library
http://playground.arduino.cc/Main/DHT11LibAlso could you please tell me how i'm supposed to obtain temperature
AND humidity ?
Is there a way for me to see the exact data received like its explained here in the DataSheet :
Data consists of decimal and integral parts. A complete data transmission is 40bit, and the
sensor sends higher data bit first.
Data format: 8bit integral RH data + 8bit decimal RH data + 8bit integral T data + 8bit decimal T
data + 8bit check sum. If the data transmission is right, the check-sum should be the last 8bit of
"8bit integral RH data + 8bit decimal RH data + 8bit integral T data + 8bit decimal T data".
If i could see these Bits in unity then i could make the proper calculations by myselft to obtain Celcius or Fahrenheit etc...
Thank you