All public logs
Jump to navigation
Jump to search
Combined display of all available logs of razwiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:47, 12 December 2024 Razzi talk contribs created page Blog: 2024-12-12 (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>")