Cjmcu Guva S12Sd Sunlight Ultraviolet Ray Intensity Uv Sensor
Rs. 148.00 Rs. 178.00
- Brand: http://www.geni-uv.com/sub0201_3.php
- Product Code: SEN-UV
- Availability: In Stock
- Price in reward points: 3
- For Bulk Order
9962060070
-The GUVA-S12SD UV Sensor chip is appropriate for detecting the UV radiation in sunlight.
-It can be utilized in any software where you want t0 reveal for the amount of UV mild and is easy to connect to any microcontroller.
-I currently observed that some dealers had little modules for this sensor at a reasonable price so determined to buy one
| SPECIFICATIONS: | |
| Power supply voltage | 2.5 V ~ 5 V |
| Wide detection range | 240 nm to 370 nm |
| Wide Angle | 130 degrees |
| OVERVIEW: |
| -Power supply voltage : 2.5 V ~ 5 V |
| -Wide detection range : 240 nm to 370 nm |
| -Wide Angle : 130 degrees |
| -Low power consumption |
| -Schottky type photosensitive diode |
| -Good linear response |
| -High sensitivity |
PACKAGE INCLUDES:
1 PCS x Cjmcu Guva S12Sd Ultraviolet Sensor
http://www.geni-uv.com/sub0201_3.php
//SOURCE CODE TAKEN FROM BELOW LINK
//http://arduinolearning.com/code/arduino-guva-s12sd-uv-sensor.php
void setup()
{
Serial.begin(9600);
}
void loop()
{
float sensorVoltage;
float sensorValue;
sensorValue = analogRead(A0);
sensorVoltage = sensorValue/1024*3.3;
Serial.print("sensor reading = ");
Serial.print(sensorValue);
Serial.println("");
Serial.print("sensor voltage = ");
Serial.print(sensorVoltage);
Serial.println(" V");
delay(1000);
}
15 days
