Skip to content

Instantly share code, notes, and snippets.

@topshed
Last active May 9, 2019 11:42
Show Gist options
  • Save topshed/53af43eb25dc55729cfdb2654900cb2a to your computer and use it in GitHub Desktop.
Save topshed/53af43eb25dc55729cfdb2654900cb2a to your computer and use it in GitHub Desktop.
Arduino - sound detection

Imgur

const int sensorPin = A0; 
int sensorValue = 0;

void setup() {
  Serial.begin(9600);
  pinMode(sensorPin, INPUT); 
}

void loop() {
  sensorValue = analogRead(sensorPin);
  Serial.println(sensorValue);
}

View the sound level using the Arduino Serial Plotter

Imgur

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment