SI7006-A20 Humidity and Temperature Sensor
The SI7006-A20 is a fully integrated Humidity and Temperature Sensor.
This Device is available from ControlEverything.com [SKU: SI7006-A20_I2CS]
https://www.controleverything.com/content/Humidity?sku=SI7006-A20_I2CS
This Sample code can be used with Raspberry Pi, Arduino, Beaglebone Black and Onion Omega.
Download and install pi4j library on Raspberry pi. Steps to install pi4j are provided at:
Download (or git pull) the code in pi.
Compile the java program.
$> pi4j SI7006_A20.java
Run the java program.
$> pi4j SI7006_A20
Download and install smbus library on Raspberry pi. Steps to install smbus are provided at:
https://pypi.python.org/pypi/smbus-cffi/0.5.1
Download (or git pull) the code in pi. Run the program.
$> python SI7006_A20.py
Download and install Arduino Software (IDE) on your machine. Steps to install Arduino are provided at:
https://www.arduino.cc/en/Main/Software
Download (or git pull) the code and double click the file to run the program.
Compile and upload the code on Arduino IDE and see the output on Serial Monitor.
Setup your BeagleBone Black according to steps provided at:
https://beagleboard.org/getting-started
Download (or git pull) the code in Beaglebone Black.
Compile the c program.
$>gcc SI7006_A20.c -o SI7006_A20
Run the c program.
$>./SI7006_A20
#####The code output is the relative humidity in %RH and temperature reading in degree celsius and fahrenheit.