Εισαγωγή
Τα υλικά που θα χρειαστείτε και η σύνδεση
Για το tutorial αυτό θα χρειαστείτε:
- Arduino UNO
- Grove Base Shield
- Button
- Buzzer (Συνδέστε το Grove-Buzzer στην A3 είσοδο του Grove-Base Shield)
Ο κώδικας
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | const int buttonPin = 2; const int buzzer = A3; // variables will change: int buttonState = 0; // variable for reading the pushbutton status void setup() { // initialize the LED pin as an output: pinMode(buzzer, OUTPUT); // initialize the pushbutton pin as an input: pinMode(buttonPin, INPUT); } void loop(){ // read the state of the pushbutton value: buttonState = digitalRead(buttonPin); if (buttonState == HIGH) { tone(buzzer, 1000); } else { noTone(buzzer); } } |
Κατεβάστε τον κώδικα απ' εδώ και ανοίξτε το αρχείο με το Arduino IDE.
|
|
Συγχαρητήρια !
Μόλις ολοκλήρωσες άλλο ένα tutorial με το Grove !
Αν το έκανες και εσύ και σου φάνηκε εύκολο γράψε την άποψη σου κάτω στα σχόλια !
Αν το έκανες και εσύ και σου φάνηκε εύκολο γράψε την άποψη σου κάτω στα σχόλια !