Gy 30 Digital Optical Intensity Illumination Sensor Bh1750Fvi Module
Rs. 86.00 Rs. 104.00
- Brand: https://www.rohm.com/products/sensors-mems/ambient-light-sensor-
- Product Code: SEN-LUM
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS:
-Power supply: 3V-5V
-Illumination range :0-65535 lx
-The sensor built 16bit AD converter
-Direct digital output, complex calculation is omitted, omitting calibration
-Does not distinguish between ambient lights
-Close to the visual sensitivity of spectral characteristics
-1 lux high-precision measurement of a wide range of brightness
-The standard NXP IIC communication protocol
-Built-in communication converter to connect directly to microcontroller io interface
OVERVIEW:
-Correspond to I²C bus interface (f / s Mode Support)
-Spectral responsibility is approximates human eyes response (Peak Wave Length : typ.560nm)
-Illuminance to digital converter
-Correspond to wide range of light intensity (1-65528lx range)
-Low Current by power down function
-Rejecting 50Hz / 60Hz light noise enables a more stable sensing
-Correspond to 1.8V logic interface
PACKAGE INCLUDES:
1 PCS x Gy 30 Digital Optical Intensity Illumination Sensor Bh1750Fvi Module
https://www.rohm.com/products/sensors-mems/ambient-light-sensor-ics/digital-16bit-serial-output/bh1721fvc-product
//SOURCE CODE TAKEN FROM BELOW LINK
//https://github.com/claws/BH1750
#include <Wire.h>
#include <BH1750.h>
BH1750 lightMeter;
void setup(){
Serial.begin(9600);
// Initialize the I2C bus (BH1750 library doesn't do this automatically)
// On esp8266 devices you can select SCL and SDA pins using Wire.begin(D4, D3);
Wire.begin();
lightMeter.begin();
Serial.println(F("BH1750 Test"));
}
void loop() {
float lux = lightMeter.readLightLevel();
Serial.print("Light: ");
Serial.print(lux);
Serial.println(" lx");
delay(1000);
}
Output
15 days