SEN0175

UVSensorv1.0‐ML8511SKU:SEN0175
UV Sensor v1.0-ML8511
Contents
1 Introduction
1.1 Applications
2 Specification
3 Connection Diagram
4 The ML8511 intensity graph
5 Sample Code
Introduction
The ML8511 is a UV sensor, which is suitable for acquiring UV intensity indoors or outdoors. iT is
equipped with an internal amplifier, which converts photo-current to voltage depending on the UV
intensity. This unique feature offers an easy interface to external circuits such as ADC. In the power
down mode, typical standby current is 0.1A, thus enabling a longer battery life.
This sensor detects 280-390nm light most effectively. This is categorized as part of the UVB
(burning rays) spectrum and most of the UVA (tanning rays) spectrum. It outputs a analog voltage
that is linearly related to the measured UV intensity (mW/cm2). If your microcontroller can do an
analog to voltage conversion then you can detect the level of UV.
Applications
Weather Station
UV Index Monitoring
DIY UV electronic project,etc...
Specification
Supply Voltage: DC 5V
Operating Temperature: -20~70°C
Sensitivity RegionUV-A and UV-B
Sensitivity Wave Length:280-390nm
Module Size: 30 x 22mm
ConnectionDiagram
ML8511 UV Sensor Diagram
TheML8511intensitygraph
The ML8511 intensity graph
Mapping the outputVoltage to intensity is straight forward. No UV light starts at 1V with a maximum
of 15mW/cm2 at around 2.8V. Arduino has a built-in map() function, but map() does not work for
floats. Thanks to users on the Arduino forum, we have a simple mapFloat() function:
//The Arduino Map function but for floats
//From: http://forum.arduino.cc/index.php?topic=3922.0
float mapfloat(float x, float in_min, float in_max, float out_min, float out_
max)
{
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
}
The following line converts the voltage read from the sensor to mW/cm2 intensity:

SEN0175

Mfr. #:
Manufacturer:
DFRobot
Description:
Optical Sensor Development Tools Gravity Analog UV Sensor
Lifecycle:
New from this manufacturer.
Delivery:
DHL FedEx Ups TNT EMS
Payment:
T/T Paypal Visa MoneyGram Western Union

Products related to this Datasheet