Recent changes

Jump to navigation Jump to search

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 09:41, 21 December 2024
   
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

17 December 2024

N    01:11  Blog: 2024-12-17 diffhist +71 Razzi talk contribs (Created page with "Looks good https://arduinogetstarted.com/tutorials/arduino-piezo-buzzer")

15 December 2024

N    21:11  Blog: 2024-12-15 diffhist +71 Razzi talk contribs (Created page with "These the good Arduino docs https://docs.arduino.cc/built-in-examples/")

14 December 2024

     23:52  People Razzi follows diffhist +81 Razzi talk contribs Tag: Visual edit

12 December 2024

N    23:47  Blog: 2024-12-12 diffhist +464 Razzi talk contribs (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>")