Stap 4: Arduino programma
int incomingByte = 0; voor binnenkomende seriële gegevens
VOID Setup
{
Serial.begin(9600); seriële poort wordt geopend, wordt gegevenssnelheid ingesteld op 9600 bps
pinMode(12,OUTPUT);
}
void loop
{
Verzend gegevens alleen als u gegevens ontvangt:
Als (Serial.available() > 0)
{/ / Lees de binnenkomende byte:
incomingByte = Serial.read();
zeg wat je hebt:
Serial.Print ("Ik heb ontvangen:");
Serial.println (incomingByte, DEC);
}
Als (incomingByte == 100)
digitalWrite(12,HIGH);
else if (incomingByte == 97)
digitalWrite(12,LOW);
}