Show minor edits - Show changes to markup
readLightSensor()
Esplora.readLightSensor()
(:sourceend:)
(:sourceend:)
Read the analog value of the light sensor. It return a valure in the 0 - 1023 range.
Reads the intensity of light hitting the light sensor as a 10-bit number. This means that it will map input voltages between 0 and 5 volts into integer values between 0 and 1023. This yields a resolution between readings of: 5 volts / 1024 units or, .0049 volts (4.9 mV) per unit.
The light sensor reading in the range from 0 to 1023.
int : The amount of light hitting the sensor, mapped to a value between 0 and 1023.
[@
(:source lang=arduino tabwidth=4:)
Serial.begin(9600);
Serial.begin(9600);
int value = Esplora.readLightSensor(); Serial.println(value);
delay(1000); } @]
int value = Esplora.readLightSensor(); Serial.println(value);
delay(1000);
}
(:sourceend:)
Read the analog value of the light sensor. It return a valure in the 0 - 1023 range.
readLightSensor()
none
The light sensor reading in the range from 0 to 1023.
#include <Esplora.h>
void setup()
{
Serial.begin(9600);
}
void loop()
{
int value = Esplora.readLightSensor();
Serial.println(value);
delay(1000);
}