Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int MicVolume = 0;
- void setup()
- {
- Serial.begin(115200);
- }
- void loop()
- {
- MicVolume = (analogRead(0));
- Serial.println(MicVolume);
- delay(5);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement