Revert to previous light calculation

This commit is contained in:
Nico Schottelius 2016-09-17 05:58:49 +02:00
parent f9790f60a4
commit 121ab8f44e
1 changed files with 5 additions and 2 deletions

View File

@ -115,9 +115,12 @@ int readLoudness()
return analogRead(LOUDNESS_SENSOR);
}
int readLight()
float readLight()
{
return analogRead(LIGHT_SENSOR) / 1000;
int sensorValue = analogRead(LIGHT_SENSOR);
return (float)(1023-sensorValue)*10/sensorValue;
// Not a great value
// return analogRead(LIGHT_SENSOR) / 1000;
}
void setupWater() {