Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 가막샘
- 초종용
- 제주철학사랑방
- 라즈베리파이
- 구시물
- LM2567
- 온습도센서
- 동자석
- 작은항해자
- 포구
- weather station
- lm7805
- 장수물
- AM2302
- wind speed
- 돌코냉이
- sht10
- 온습도 센서
- 내도동
- rain fall
- 마이못
- DC5V
- 제주문화유산답사회
- 수산리 곰솔
- 하귀리 해신당
- wind direction
- 철사방
- DHT22
- 암맥군
- LM1117
Archives
- Today
- Total
작은항해자의 항해
Light Intensity Sensor - BH1750FVI, GY-30 본문
Light Intensity Sensor - BH1750FVI, GY-30
BH1750FVI 조도센서 모듈
16Bit ADC 내장.
센서의 조도 출력 값은 Lux로 출력이 되며, 마이크로컨트롤러와 I2C 인터페이스를 이용하여 측정된 조도값을 사용.
주소를 변경할 수 있다.
3.3V와 5V 시스템에서 사용 가능.
Light Range : 0 ~ 65535lx
Doc
DataSheet : BH1750FVI.pdf
코드 라이브러리 : GitHub , BH1750-master.zip
메카솔루션 자료 : https://blog.naver.com/roboholic84/220581641047
Connections:
- VCC -> 3V3 or 5V
- GND -> GND
- SCL -> SCL (A5 on Arduino Nano, Uno, Leonardo, etc or 21 on Mega and Due, on esp8266 free selectable)
- SDA -> SDA (A4 on Arduino Nano, Uno, Leonardo, etc or 20 on Mega and Due, on esp8266 free selectable)
- ADD -> NC/GND or VCC (see below)
Code
Upload the BH1750 test code to your Arduino.
#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
Moving the sensor to face more light results in the lux measurements increasing.
|
'IT 이야기 > IOT 센서' 카테고리의 다른 글
co2 농도의 영향도 (0) | 2019.02.03 |
---|---|
HS1101 습도센서 (0) | 2019.01.24 |
8 Digit 7-Segment Display Module - MAX7219 (0) | 2019.01.23 |
MH-Z14A CO2 Sensor (0) | 2019.01.21 |
MH-Z19 CO2 Sensor (4) | 2019.01.21 |