Am2315 Humidity Sensitive Capacitor Digital Temperature And Humidity Module Humidity Module I2C Temperature And Humidity Sensor
Rs. 1,666.00 Rs. 1,900.00
- Brand: http://www.aosong.com/en/products-37.html
- Product Code: SEN-TEMPHUM
- SKU -
- Availability: In Stock
- Price in reward points: 18
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS:
-3.5 to 5.5V power and I/O
-10 mA max current use during conversion (while requesting data)
-Good for 0-100% humidity readings with 2% accuracy
-Good for -20 to 80°C temperature readings ±0.1°C typical accuracy
-0.5 Hz update rate
-\4 wires 20 inches long
-This board/chip uses I2C 7-bit address 05C.
OVERVIEW: | |
Brand | Aosong |
Humidity range | 0~99.9%RH |
Humidity precision | +/-2%RH |
Temperature range | -40~80C |
Temperature precision | +/-0.3C |
Supply Volatge | 3.3V to 5.5V |
Size | 97.4x16x16mm |
Output signal | I2C |
PACKAGE INCLUDES:
1 PCS x Am2315 Humidity Sensitive Capacitor Digital Temperature And Humidity Module Humidity Module I2C Temperature And Humidity Sensor
http://www.aosong.com/en/products-37.html
//SOURCE CODE TAKEN FROM BELOW LINK
//https://www.switchdoc.com/2016/04/am2315-highly-reliable-esp8266-arduino-driver/
int delayByCPU(long delaycount)
{
unsigned long startMillis;
unsigned long endMillis;
#define COUNT 100000
startMillis = millis();
long index;
float test;
long i;
long j;
for (i = 0; i < delaycount * 166; i++)
{
//Serial.println("outside loop");
for (j = 0; j < 1000; j++)
{
for (index = 0; index < COUNT; index++)
{
test = 30.4 + i;
test = test / 50.0;
}
test = test + j;
}
}
endMillis = millis();
return int(test);
}
15 days