Blog: 2024-12-12: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

12 December 2024

  • curprev 23:4723:47, 12 December 2024Razzi talk contribs 464 bytes +464 Created page with "arduino led and buzzer <pre> void setup() { // put your setup code here, to run once: //pinMode(LED_BUILTIN, OUTPUT); pinMode(13, OUTPUT); pinMode(12, OUTPUT); pinMode(9, OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(13, HIGH); digitalWrite(12, LOW); //tone(9, 16000); tone(9, 440); delay(1000); //tone(9, 10); noTone(9); digitalWrite(13, LOW); digitalWrite(12, HIGH); delay(1000); } </pre>"