docs

a slatepencil documentail site

View on GitHub

Buzzer

you can hear the active buzzer beeping once powered on

hardware

wire

code

const int buzzerPin = 7;

void setup() {
  // put your setup code here, to run once:
  pinMode(buzzerPin, OUTPUT);
  digitalWrite(bizzerPin, LOW); // initialize the buzzerPin as LOW level
}

void loop() {
}