Arnov Sharma
Published © MIT

Clap Switch With PICO 2 and MAX9814

Setting up a basic MAX9814-based Clap Sensor.

BeginnerFull instructions provided1 hour158
Clap Switch With PICO 2 and MAX9814

Things used in this project

Hardware components

Raspberry Pi Pico
Raspberry Pi Pico
×1
PCBWay MAX9814
×1
PCBWay Custom PCB
PCBWay Custom PCB
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

SCH

Code

code

C/C++
#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 32 // OLED display height, in pixels
#define OLED_RESET    -1 // Reset pin # (or -1 if sharing Arduino reset pin)
#define OLED_ADDRESS 0x3C // I2C address for the SSD1306 OLED display
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);

#define MIC_PIN 26
#define CLAP_THRESHOLD 500 // Adjust based on your sensor's range
#define CLAP_DELAY 200 // Minimum delay between claps in milliseconds
#define CLAP_WINDOW 1000 // Time window for detecting second clap in milliseconds
#define DISPLAY_DURATION 5000 // Time to display "Clap Detected" message

unsigned long last_clap_time = 0;
unsigned long message_display_time = 0;
bool display_clap_message = false;

void setup() {
  // Initialize the serial communication for debugging
  Serial.begin(9600);

  // Initialize the OLED display
  if (!display.begin(SSD1306_SWITCHCAPVCC, OLED_ADDRESS)) {
    Serial.println(F("SSD1306 allocation failed"));
    for (;;);
  }
  display.clearDisplay();
  display.setTextSize(2);
  display.setTextColor(SSD1306_WHITE);
  display.setCursor(0, 0);
  display.display();
}

void loop() {
  int analog_val = analogRead(MIC_PIN); // Read microphone value
  unsigned long current_time = millis();

  // Debugging information
  Serial.print("Analog Value: ");
  Serial.println(analog_val);

  // Detect clap
  if (analog_val > CLAP_THRESHOLD) {
    if (current_time - last_clap_time > CLAP_DELAY) {
      Serial.println("Clap detected");
      display_clap_message = true;
      message_display_time = current_time;
      last_clap_time = current_time;
    }
  }

  // Update the OLED display
  display.clearDisplay();

  if (display_clap_message) {
    display.setCursor(0, 0);
    display.println("Clap");
    display.setCursor(0, 16); // Move to the second line
    display.println("Detected");
    if (current_time - message_display_time > DISPLAY_DURATION) {
      display_clap_message = false;
    }
  } else {
    display.setCursor(0, 0);
    display.println("Nothing");
    display.setCursor(0, 16); // Move to the second line
    display.println("happened");
  }

  display.display();

  // Short delay for stability
  delay(100);
}

Credits

Arnov Sharma
329 projects • 334 followers
Just your average MAKER
Contact

Comments

Please log in or sign up to comment.