VEML6075 ultraviolet (UV) light sensor and ESP266

The VEML6075 senses UVA and UVB light and incorporates photodiode, amplifiers, and analog / digital circuits into a single chip using a CMOS process. When the UV sensor is applied, it is able to detect UVA and UVB intensity to provide a measure of the signal strength as well as allowing for UVI measurement.

The VEML6075 provides excellent temperature compensation capability for keeping the output stable under changing temperature. VEML6075’s functionality is easily operated via the simple command format of I2C (SMBus compatible) interface protocol. VEML6075’s operating voltage ranges from 1.7 V to 3.6 V.

 

Parts List

Here are the parts I used

 

Name Links
Wemos Mini
VEML6075
Connecting cables

 

Schematics/Layout

 

 

Code

Again we use a library and again its an adafruit one – https://github.com/NorthernWidget/VEML6075

#include <VEML6075.h>

VEML6075 UV;

void setup()
{
Serial.begin(38400); //Begin Serial
UV.begin(); //Begin the UV module

}

void loop()
{
Serial.print("UVA = ");
Serial.print(UV.GetUVA()); //Get compensated UVA value
Serial.print(" UVB = ");
Serial.println(UV.GetUVB()); //Get compensated UVB value
delay(1000);
}

 

Output

Open the serial monitor – this is what I saw but I tested this indoors

UVA = 0.00 UVB = 3.00
UVA = 0.00 UVB = 0.00
UVA = 0.00 UVB = 0.00
UVA = 0.00 UVB = 2.00
UVA = 0.00 UVB = 2.00
UVA = 0.00 UVB = 2.00

Links

https://www.vishay.com/docs/84304/veml6075.pdf

 

LEAVE A REPLY

Please enter your comment!
Please enter your name here