Smart Home Automation Forum

Full Version: [arduino source code for KC868-Uair-2] let Buzzer beep
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
void setup() {
  pinMode(26,OUTPUT);
}

void loop() {
  digitalWrite(26,HIGH);
  delay(3000);
  digitalWrite(26,LOW);
  delay(2000);
}


download arduino IDE source code file: 
[attachment=448]