Skip to content

UV_Sensor_(SKU_TOY0044)

Angelo edited this page Sep 21, 2016 · 3 revisions

Introduction

This UV Sensor(Gadgeteer compatible)used GUVA-S12SD chip is suitable for detecting the UV raditation in sunlight.It can be used in UV Index Monitoring,DIY project,UV-A Lamp Monitoring,Plants growing Environmental monitoring...etc. It can detect the UV wavelength of 200-370nm ,fast response,linear analog voltage signal output.Small size,easy for installing.With the diagram of the world health organization uv index grading standards,you can know the UV index by the sensor directly.

Applications

  • UV-A Lamp Monitoring
  • UV Index Monitoring
  • DIY UV electronic project,etc...

Specification

  • Input voltage:5V
  • Output voltage:DC 0-1V(Corresponding 0-10 UV index)
  • Working current:0.06mA(0.1mA max)
  • UV wavelength detect:200-370nm
  • Test accuracy:±1UV INDEX
  • Response time:<0.5s
  • Operating temperature:-20℃-85℃
  • Interface:Anolog IO x1
    • .NET gadgeteer connector (IDC10)Socket x1
  • Size:27 x 22mm

Documents

Diagram

TOY0044 diagram UV index

Sample Code

/*
# This Sample code is for testing the UV Sensor .
#Connection:
    VCC-5V
    GND-GND
    OUT-Analog pin 0
*/

void setup()
{
  Serial.begin(9600);// open serial port, set the baud rate to 9600 bps
}
void loop()
{
  int sensorValue;
  sensorValue = analogRead(0);//connect UV sensors to Analog 0
  Serial.println(sensorValue);//print the value to serial
  delay(200);
}

image:nextredirectltr.pngGo shopping uv sensor (sku:toy0044) category: Product Manual category: DFR Series category: Module

category: Diagram category: DFRobot

Clone this wiki locally