GY-63_MS5611/libraries/AnalogUVSensor/README.md

126 lines
5.5 KiB
Markdown
Raw Normal View History

2021-10-17 15:22:43 -04:00
[![Arduino CI](https://github.com/RobTillaart/AnalogUVSensor/actions/workflows/arduino_test_runner.yml/badge.svg)](https://github.com/RobTillaart/AnalogUVSensor/actions/workflows/arduino_test_runner.yml)
[![Arduino-lint](https://github.com/RobTillaart/AnalogUVSensor/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/AnalogUVSensor/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/AnalogUVSensor/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/AnalogUVSensor/actions/workflows/jsoncheck.yml)
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/AnalogUVSensor/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/AnalogUVSensor.svg?maxAge=3600)](https://github.com/RobTillaart/AnalogUVSensor/releases)
2021-09-29 11:06:47 -04:00
# AnalogUVSensor
2021-12-12 11:20:41 -05:00
Arduino library for an analogue UV sensor.
2021-09-29 11:06:47 -04:00
2021-10-17 15:22:43 -04:00
2021-09-29 11:06:47 -04:00
## Description
![Foo](https://www.tinytronics.nl/shop/image/cache/catalog/products/product-003601/uv-light-sensor-module-200-370nm-80x80w.jpg)
Image courtesy Tinytronics
This small (type-less) UV-sensor is powered by 3.3 .. 5 V so it can be used by almost any microprocessor.
2021-12-12 11:20:41 -05:00
The sensor has an analogue output that is roughly linear with the UV-index (sunlight assumed, see notes).
2021-09-29 11:06:47 -04:00
| Voltage | UV index |
|:-------:|:--------:|
| <0.050 | 0 |
| 0.227 | 1 |
| 0.318 | 2 |
| 0.408 | 3 |
| 0.503 | 4 |
| 0.606 | 5 |
| 0.696 | 6 |
| 0.795 | 7 |
| 0.881 | 8 |
| 0.976 | 9 |
| 1.079 | 10 |
| 1.170> | 11 |
From this table the formula is derived (spreadsheet) which is pretty linear between UV 1 and 11.
2021-10-17 15:22:43 -04:00
Between 0 and 1 there seems to be a curve / other linear relation.
2021-09-29 11:06:47 -04:00
### Notes
2021-12-12 11:20:41 -05:00
Note: The sensor is not calibrated and the table is indicative for sunlight (warning, assumption!)
2021-09-29 11:06:47 -04:00
and therefore not suitable for e.g. medical or industrial usage.
2021-10-17 15:22:43 -04:00
Note: UV radiation will not go through normal glass, so inside (a house) you will most likely always read zero.
This may of course help to calibrate the zero level of the sensor.
2021-09-29 11:06:47 -04:00
2021-12-12 11:20:41 -05:00
Note: depending on the light source used, the table above is not correct.
2021-10-17 15:22:43 -04:00
If one wants to use other values one need to fix the formula in the **mv2index()** function.
2021-12-12 11:20:41 -05:00
(mv stands for millivolt)
2021-10-17 15:22:43 -04:00
Note: the output of the sensor is typically 0 .. 1.1 volt. To increase precision one might configure
the ADC used to match this voltage range. E.g. Arduino UNO can be set to use an internal 1.1 volt reference.
See Arduino manual **setAnalogReference()**
2021-09-29 11:06:47 -04:00
2021-10-17 15:22:43 -04:00
### Wavelength sensitivity
2021-09-29 11:06:47 -04:00
The sensor is sensitive for wavelengths from 200 - 370 nm, so mostly in UVB and UVA region and less in the UVC.
2021-10-17 15:22:43 -04:00
There is no information about the detailed wavelength sensitivity, so it is not possible to compensate.
However one could assume that there is a normal (or other) distribution over the 200 - 370 nm range and create
a compensation table based upon the assumed distribution.
2021-09-29 11:06:47 -04:00
2021-10-17 15:22:43 -04:00
More about UV see - https://en.wikipedia.org/wiki/Ultraviolet
2021-09-29 11:06:47 -04:00
## Interface
- **AnalogUVSensor()** Constructor.
- **void begin(uint8_t analogPin, float volts = 5.0, uint16_t maxADC = 1023)**
2021-10-17 15:22:43 -04:00
set the parameters of the sensor, analogPin, volts and maxADC to specify the internal ADC.
Volts and maxADC have a default so these can be omitted if these match.
Note: one needs to reset these parameters if the settings of the internal ADC are
2021-09-29 11:06:47 -04:00
changed e.g. to INTERNAL_1V1 to change the accuracy.
- **float read(uint8_t times = 1)** Returns the UV index.
Read the analogue sensor one (or more) times to average the reading.
2021-10-17 15:22:43 -04:00
This can improve the accuracy of the reading.
If times == 0 it is set to 1.
2021-12-12 11:20:41 -05:00
- **float mV2index(uint16_t milliVolt)** MilliVolt to index. Returns the UV index.
2021-10-17 15:22:43 -04:00
The conversion formula from milliVolt to the UV index is used internally by the **read()** function.
2021-09-29 11:06:47 -04:00
This function can also be called with a voltage measured with an external ADC.
2021-10-17 15:22:43 -04:00
THe function will return a value between 0.0 and 12.0.
- **char index2color(float index)** Converts an UV index to the first letter of **G**reen,
**Y**ellow, **O**range, **R**ed or **P**urple.
Can be used as indication on a user interface.
2021-09-29 11:06:47 -04:00
This function can also be called with an index from an other UV index sensor.
#### Power interface
Works only if setPowerPin is called properly.
- **void setPowerPin(uint8_t powerPin, bool invert = false)**
Can be used to control the power of the sensor e.g. for low power mode.
2021-10-17 15:22:43 -04:00
Optionally one can set the invert flag to **true** to invert the **HIGH LOW** levels
e.g. when the analogue sensor is switched through a MOSFET.
- **void switchOff()** switch off the power of the sensor.
- **void switchOn()** switch on the power of the sensor.
2021-09-29 11:06:47 -04:00
### Future
- verify vs calibrated sensor
- investigate angle sensitivity e.g. if the UV light comes from an angle - cosine law.
2021-12-12 11:20:41 -05:00
- see https://github.com/RobTillaart/BH1750FVI library
2021-09-29 11:06:47 -04:00
- investigate response time to stabilize e.g. does it react fast on clouds.
- investigate with different light sources (UVled, TL, sunlight).
- investigate time needed to first (stable) measurement.
2021-12-12 11:20:41 -05:00
**won't**
- **index2time()** calculate max exposure time?
- dangerous advice, so better keep that out of the library ?
- **uint32_t index2RGB(float index)** full (smooth) colour RGB mapping.
- created a https://github.com/RobTillaart/map2colour lib for this feature
to keep footprint in this library small.
2021-09-29 11:06:47 -04:00
## Sponsor
The development of this library is sponsored by [TinyTronics, Netherlands](https://www.tinytronics.nl/shop/nl).