mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
41 lines
688 B
C++
41 lines
688 B
C++
//
|
|
// FILE: uvi_test.ino
|
|
// AUTHOR: Rob Tillaart
|
|
// PURPOSE: demo UV sensor - generate conversion table
|
|
// DATE: 2021-09-25
|
|
// URL: https://github.com/RobTillaart/AnalogUVSensor
|
|
|
|
|
|
#include "AnalogUVSensor.h"
|
|
|
|
AnalogUVSensor AUV;
|
|
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(115200);
|
|
Serial.println(__FILE__);
|
|
|
|
Serial.print("ANALOG_UVSENSOR_LIB_VERSION: ");
|
|
Serial.println(ANALOG_UVSENSOR_LIB_VERSION);
|
|
|
|
AUV.begin(A0, 5.0, 1023);
|
|
|
|
for (uint16_t milliVolt = 0; milliVolt < 1210; milliVolt += 10)
|
|
{
|
|
Serial.print(milliVolt);
|
|
Serial.print("\t");
|
|
Serial.println(AUV.mV2index(milliVolt), 1);
|
|
}
|
|
|
|
Serial.println("\n Done...");
|
|
}
|
|
|
|
|
|
void loop()
|
|
{
|
|
}
|
|
|
|
|
|
// -- END OF FILE --
|