Grove - Sound Sensor
Version från den 26 oktober 2018 kl. 21.23 av Christian (diskussion | bidrag)
Ljudsensorn kan upptäcka miljöens ljudintensitet. Modulens huvudkomponent är en enkel mikrofon. Output är ett analogt värde.
Kompatibilitet
- Arduino
- Raspberry Pi
Port
Analog
Exempelkod
Arduino
const int pinSound = A0; // pin of Sound Sensor
const int pinLed = 7; // pin of LED
int thresholdValue = 50; // the threshold to turn on or off the LED
void setup()
{
pinMode(pinLed, OUTPUT); //set the LED on Digital 12 as an OUTPUT
}
void loop()
{
int sensorValue = analogRead(pinSound); //read the sensorValue on Analog 0
if(sensorValue>thresholdValue)
digitalWrite(pinLed,HIGH);
delay(200);
digitalWrite(pinLed,LOW);
}