Page 199 - 최강 아두이노 퍼스트 참고서
P. 199
pinMode(LEDPins[i],OUTPUT);
}
}
void loop(){
// 4 핀 디지털 입력핀 사용시 코드.
// if(digitalRead(soundSensorDigitalPin)==LOW)
// {
// Serial.println("LOW Digital input");
// }
soundReading=analogRead(soundSensorPin);
if(soundReading>soundThreshold)
{
Serial.println(soundReading); if(switcher)
{ aboveThreshold(currentPin);
switcher=true;
} } else
{ if(switcher)
{ belowThreshold();
switcher=true;
}
}
}
void aboveThreshold(int cPin)
{
switcher=false; if(intensity[cPin]<10)
{ intensity[cPin]=255;
delay(50);
currentPin=currentPin+1;
}
199