fixed broken page resources

This commit is contained in:
2023-06-13 19:09:19 +09:00
parent a06880b413
commit f69c693257
8 changed files with 26 additions and 26 deletions

View File

@@ -0,0 +1,17 @@
const int button_pin = 2;
const int sound_pin = 9;
void setup() {
pinMode(button_pin, INPUT);
//tone()を使うときは3,11以外
pinMode(sound_pin, OUTPUT);
}
void loop() {
if (digitalRead(2) == HIGH) {
tone(sound_pin, 1000);
} else {
noTone(sound_pin);
}
delay(20);
}