Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.
The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.
The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.
UV Sensor Module, GUVA-S12SD Photodiode, 3-5V
Compact module for measuring UVA and UVB radiation in the 220–370 nm range, with a linear analog output proportional to the intensity, flexible power supply 3.3–5V, and very low consumption of approximately 0.1 mA. It connects directly to the analog input on Arduino, ESP32, or STM32, making it ideal for weather stations, solar monitoring, and UV protection projects.
Shipping by Thursday 27 August
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
We ship from our stock within 24H
You earn points with every order, worth 5%.
The UV detection module with GUVA-S12SD photodiode is a compact and efficient solution for measuring ultraviolet radiation in the spectral range 220–370 nm, with maximum sensitivity at 330 nm, covering both UVA and UVB bands.
The module is powered at 3.3V or 5V and connects directly to the analog input of a microcontroller such as Arduino, ESP32, or STM32, making it easy to integrate into various electronic projects.
The sensor provides a linear analog output directly proportional to the intensity of the incident UV radiation, allowing quick integration into any microcontroller-based system with an analog input. Flexible power supply at 3.3V or 5V, extremely low current consumption of about 0.1 mA, and response time under 1 ms make it suitable for both portable applications and fixed installations.
It can be used in solar monitoring systems, weather stations, UV protection applications, educational projects, or any environment where evaluating UV radiation level is necessary, both indoors and outdoors.
Specifications:
Sensor: GUVA-S12SD
Sensor type: Broadband UV photodiode
Spectral range: 220 - 370 nm
Maximum sensitivity: 330 nm
Supply voltage: 3.3 - 5 VDC
Current consumption: approximately 0.1 mA
Output: Analog signal
Output level: 0 - 1 V at 5V power supply
Output characteristic: Linear variation with UV intensity
Measurement range: 0 - 100 mW/cm2
Response time: under 1 ms
Dimensions: 27 x 11 mm
Pinout:
| Pin | Description |
|---|---|
| SIG | Analog output |
| GND | Ground |
| VCC | Power supply 3.3-5VDC |
Usage:
Connect the VCC pin to the power source (3.3V or 5V), the GND pin to ground, and the SIG pin to the microcontroller's analog input.
After powering, the module provides on the SIG pin a DC voltage proportional to the intensity of the detected UV radiation.
Read the analog value through the microcontroller's ADC and convert the voltage into UV intensity using the approximate relation: 1V corresponds to 100 mW/cm².
For accurate results, ensure that the ADC reference voltage corresponds to the module's power supply voltage.
The module can be exposed directly to sunlight or artificial UV sources. Avoid covering the sensor surface with materials that absorb UV radiation.
After powering, the module provides on the SIG pin a DC voltage proportional to the intensity of the detected UV radiation.
Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.
Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.
Avertismente generale de siguranta:
Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.
Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.
Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.
Nu lasati produsul alimentat nesupravegheat in timpul testelor.
Produsul nu este jucarie si nu este destinat copiilor.
Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.
Identificare produs:
Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.
Producator / Importator / Distribuitor:
Sigmanortec S.R.L.
Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania
E-mail: [email protected]
Website: www.sigmanortec.ro
Persoana responsabila in UE:
Sigmanortec S.R.L.
Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania
E-mail: [email protected]
Documentatie si siguranta:
Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].
const int uvPin = A0; // analog pin connected to SIG
const float vRef = 5.0; // reference voltage
const int adcMax = 1023; // ADC resolution
void setup() {
Serial.begin(9600);
}
void loop() {
int raw = analogRead(uvPin);
float voltage = (raw * vRef) / adcMax;
// Approximate relation: 1V ~ 100 mW/cm²
float uvIntensity = voltage * 100;
Serial.print("ADC value: ");
Serial.print(raw);
Serial.print(" | Voltage: ");
Serial.print(voltage, 3);
Serial.print(" V | UV Intensity: ");
Serial.print(uvIntensity, 1);
Serial.println(" mW/cm²");
delay(1000);
}