Arduino Compatibles - Wiltronics · 1 Arduino Compatibles Controllers, Shields, Modules & Sensors...

Post on 20-Jan-2021

8 views 0 download

transcript

www.wiltronics.com.au Wiltronics Research Pty. Ltd. ABN 26 052 173 154

5 - 7 Ring Road, Alfredton Victoria 3350 | P.O Box 4043, Alfredton, 3350sales@wiltronics.com.au | Phone: (03) 5334 2513 | Fax: (03) 5334 1845

1

Arduino CompatiblesControllers, Shields, Modules & Sensors

UV Detection Sensor

This UV Sensor is used for detecting the intensity of incident ultraviolet (UV) radiation. This form of electromagnetic radiation has shorter wavelengths than visible radiation. This module is based on the sensor UVM-30A, which has a wide spectral range of 200nm–370nm. The module outputs electrical signal which varies with the UV intensity.

• Detect the intensity of UV radiation• Suitable for UV Index Monitoring, DIY projects, UV-A

Lamp Monitoring, Gardening, Environmental monitoring

ARD2-2062

Description

Specifications

Operating Voltage 3.0–5.0VDC

Current 0.06mA (Standard)/0.1mA (Max)

Response Wavelength 200~370nm

Operating Temperature –20~+85°C

Accuracy ±1UV Index

Colour (Board) Black

Material PCB

Pinout

Module Arduino Function

+ 5V Power

– GND Ground Connection

Out A0 Analog Output

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); }

Test Code

www.wiltronics.com.au Wiltronics Research Pty. Ltd. ABN 26 052 173 154

5 - 7 Ring Road, Alfredton Victoria 3350 | P.O Box 4043, Alfredton, 3350sales@wiltronics.com.au | Phone: (03) 5334 2513 | Fax: (03) 5334 1845

2

Arduino CompatiblesControllers, Shields, Modules & Sensors