

The GUVA S12SD is a UV light sensor designed to detect ultraviolet (UV) radiation. It provides an analog output voltage that is directly proportional to the intensity of UV light, making it an ideal choice for applications requiring accurate UV detection. This sensor is compact, reliable, and easy to integrate into various systems.








The following table outlines the key technical details of the GUVA S12SD UV sensor:
| Parameter | Value |
|---|---|
| Manufacturer | UNKNOWN |
| Manufacturer Part ID | SENSOR UV |
| Operating Voltage (Vcc) | 3.3V to 5V |
| Output Voltage Range | 0V to Vcc |
| Spectral Response Range | 200 nm to 370 nm |
| Peak Sensitivity Wavelength | 365 nm |
| Operating Temperature | -30°C to +85°C |
| Dimensions | 10 mm x 10 mm x 1.2 mm |
The GUVA S12SD has three pins, as described in the table below:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (3.3V to 5V) |
| 2 | GND | Ground connection |
| 3 | OUT | Analog output voltage proportional to UV intensity |
Below is an example of how to connect and read data from the GUVA S12SD using an Arduino UNO:
// GUVA S12SD UV Sensor Example Code
// Reads the analog output from the sensor and prints the UV intensity to the Serial Monitor.
const int uvSensorPin = A0; // Analog pin connected to the sensor's OUT pin
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(uvSensorPin); // Read the analog value from the sensor
float voltage = sensorValue * (5.0 / 1023.0); // Convert the analog value to voltage
// Print the sensor value and voltage to the Serial Monitor
Serial.print("Sensor Value: ");
Serial.print(sensorValue);
Serial.print(" | Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
No Output Voltage:
Fluctuating Output:
Low Sensitivity:
Incorrect Readings:
Q: Can the GUVA S12SD detect visible light?
A: No, the GUVA S12SD is specifically designed to detect UV light in the 200 nm to 370 nm range and is not sensitive to visible light.
Q: Is the sensor waterproof?
A: No, the GUVA S12SD is not waterproof. Protect it from moisture and water exposure during use.
Q: Can I use the sensor with a 3.3V microcontroller?
A: Yes, the GUVA S12SD operates with a supply voltage range of 3.3V to 5V, making it compatible with 3.3V microcontrollers.
Q: How do I convert the output voltage to a UV index?
A: Refer to the sensor's datasheet or calibration data to determine the relationship between output voltage and UV index. Calibration with a known UV source is recommended for accurate results.