Stap 8: De code uploaden
Dit is de code die u naar je board uploaden moet te maken van dit project werken. Don't forget to Wijzig uw fotocel waarde"512" waarde. Hier is de code:
#include
LiquidCrystal lcd (12, 11, 5, 4, 3, 2);
int fotocel = A0;
int count = 0;
VOID Setup
{
LCD.begin(16,2);
}
void loop
{
int value=analogRead(photocell);
if(value<512)
{
Graaf ++;
LCD.Clear();
LCD.Print ("telling van mensen");
lcd.setCursor(0,1);
LCD.Print(Count);
delay(500);
}
}