GY-63_MS5611/libraries/ML8511/examples/ML8511_setVoltsPerStep/ML8511_setVoltsPerStep.ino
2020-02-17 17:22:11 +01:00

50 lines
857 B
C++

//
// FILE: ML8511_setVoltsPerStep.ino
// AUTHOR: Rob Tillaart
// VERSION: 0.1.0
// PURPOSE: demo UV sensor
// DATE: 2020-02-17
// URL: https://github.com/RobTillaart/Arduino
//
// Released to the public domain
//
// BREAKOUT
// +-------+--+
// VIN |o +-+| mounting hole
// 3V3 |o +-+|
// GND |o |
// OUT |o |
// EN |o S | Sensor
// +----------+
#include <Arduino.h>
#include <ML8511.h>
#define ANALOGPIN A0
#define ENABLEPIN 7
ML8511 light(ANALOGPIN, ENABLEPIN);
void setup()
{
Serial.begin(115200);
Serial.println(__FILE__);
Serial.println("UV UltraViolet ML8511");
// adjust to your ADC specification.
light.setVoltsPerStep(3.3, 4095);
}
void loop()
{
float UV = light.getUV();
Serial.print(UV, 4);
Serial.println(" mW m^2");
delay(1000);
}
// END OF FILE