Wish List 0

Gy 30 Digital Optical Intensity Illumination Sensor Bh1750Fvi Module

Rs. 77.00 Rs. 93.00

-This is a BH1750FVI mild intensity sensor module with built-in a sixteen bit AD converter generating virtual signal.
-The information from this module is mild intensity in lx (lux meter).
-It speak with micro-controller board via I2C bus.

Features:
-operating Voltage: 3.3V~6V
-I2C bus Interface with 2 alternative address (f/s Mode Support)
-Spectral duty is about human eye reaction
-Wide range and High decision (1 ~ 65535 lx)
-Light supply dependency is little. (ex. Incandescent Lamp. Fluorescent Lamp. Halogen Lamp. White LED. Sun Light)
-Adjustable dimension result for have an impact on of optical window (It is viable to detect min. 0.Eleven lx, max. A hundred thousand lx via using this feature.) (1 ~ 65535 lx)
-The impact of infrared is very small.
-Small size version (+/- 20%)

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




//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

Write a review

Please login or register to review