Advertisement
LeventeDaradici

MAX9814 Microphone in Arduino - arduino for beginners

Feb 5th, 2022
2,802
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. int MicVolume = 0;
  2.  
  3. void setup()
  4.      {
  5.         Serial.begin(115200);
  6.       }
  7.  
  8. void loop()
  9.      {  
  10.         MicVolume = (analogRead(0));
  11.         Serial.println(MicVolume);
  12.         delay(5);
  13.      }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement