03-25-2013 03:47 PM
Reading Digital sensor Via arduino in labview [RHT03 high effcient Tempreture and Humidity sensor ] this sensor reads like following ....
If the data transmission is right, check-sum should be:
Check sum=8 bit integral RH data+8 bit decimal RH data+8 bit integral T data+8 bit decimal T data
Example: MCU has received 40 bits data from RHT03 as
0000 0010 1000 1100 0000 0001 0101 1111 1110 1110
16 bits RH data 16 bits T data check sum
Check sum=0000 0010+1000 1100+0000 0001+0101 1111=1110 1110
RH= (0000 0010 1000 1100)/10=65.2%RH
T=(0000 0001 0101 1111)/10=35.1
When highest bit of temperature is 1, it means the temperature is below 0 degree Celsius.
Example: 1000 0000 0110 0101, T= minus 10.1
16 bits T data
you can check the data sheet .......How to read the digital input of this sensor and Display both Tempreture and humidity ...thanks in advance
03-26-2013 03:32 AM - edited 03-26-2013 03:34 AM
Hi!
Searching the web I've found a few examples (connections and sketchs) to read from RHT03.
Once you have read the values, you could stream them from arduino board to the PC via the serial interface.
Regards,
Marco
03-26-2013 10:04 AM
what am asking is how do i do it on labview by using arrays block or I2C block how .....to ready the Sensor
03-26-2013 10:15 AM
https://decibel.ni.com/content/groups/labview-interface-for-arduino?view=discussions
you'll have better luck there with hobbyists who use Arduino and LabVIEW
11-25-2013 12:47 AM
if you've worked with serial communication, arduino done in this example can help you
http://kesslerarduino.wordpress.com/2012/06/13/rht22-rht03/
good luck