Axiometa
Analog Microphone
Analog Microphone
SKU:AX22-0009
Low stock: 5 left
This AX22-sized module integrates an analog microphone front end built around an MCP6001 rail-to-rail op amp on a compact 22 × 22 mm PCB. The electret microphone is amplified using an inverting amplifier configuration, with an onboard potentiometer that lets you smoothly adjust the gain to match everything from quiet ambient sounds to louder audio sources. The circuit provides a clean, fully analog output voltage that’s easy for microcontrollers, ADCs, or analog signal chains to sample without extra conditioning. It fits seamlessly into AX22 systems with no special wiring and is ideal for sound reactive projects, audio level sensing, or basic audio analysis where a simple, tunable mic amplifier is all you need.
Couldn't load pickup availability

Technical Details
Pinout
Arduino Example Snippet
#define MIC_PIN 1
void setup() {
Serial.begin(9600);
}
void loop() {
int micValue = analogRead(MIC_PIN);
Serial.print("Microphone Value: ");
Serial.println(micValue);
delay(10);
}