I am trying to use a Li-COR Quantum (LI-190R-BL) sensor to collect PAR data using a Mayfly cataloguer (v0.5b).
I used a 620 ohm resistor to convert the sensor current out put to volts (0-5votls). Then, I connected the sensor to: A0 and GND, and tried to read the out put using this simple code, but I did not have luck.
Any ideas?
void setup() {
Serial.begin(57600);
}
void loop()
{
float sensorValue = analogRead(A0);
// Convert the analog reading (0-5Volts)
float voltage = sensorValue * 63.3;
Serial.println(voltage);
}