- Arduino board
- LED
- Resistor 220 Ohm / 330 Ohm
- Resistor 10 K
- Push bottom / Tombol
- Breadboard untuk papan rangkaian
Okey,.. jika sudah lengkap semua, mari kita rakit seperti gambar di bawah. Ada dua jenis rangkaian yang dapat dicoba. Jenis rangkaian pull-down resistor dan pull-up resistor. Jika menginginkan kondisi lampu nyala hanya saat tombol ditekan, maka yang digunakan adalah rangkaian pull-down resistor. Sedangkan jika anda menginginkan lampu mati hanya saat tombol ditekan maka digunakan jenis rangkaian pull-up resistor. Kenapa bisa begitu? kalau gitu kita coba saja keduanya biar lebih memahami maksud dari code tersebut.
Pull-Down Resistor |
Pull-Up Resistor (sumber: http://blog.famosastudio.com/2011/07/tutorial/tutorial-arduino-push-buttons/311) |
// constants won't change. They're used here to
// set pin numbers:
const int buttonPin = 2; // the number of the pushbutton pin
const int ledPin = 13; // the number of the LED pin
// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
void setup() {
// initialize the LED pin as an output:
pinMode(ledPin, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(buttonPin, INPUT);
}
void loop(){
// read the state of the pushbutton value:
buttonState = digitalRead(buttonPin);
// check if the pushbutton is pressed.
// if it is, the buttonState is HIGH:
if (buttonState == HIGH) {
// turn LED on:
digitalWrite(ledPin, HIGH);
}
else {
// turn LED off:
digitalWrite(ledPin, LOW);
}
}
// set pin numbers:
const int buttonPin = 2; // the number of the pushbutton pin
const int ledPin = 13; // the number of the LED pin
// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
void setup() {
// initialize the LED pin as an output:
pinMode(ledPin, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(buttonPin, INPUT);
}
void loop(){
// read the state of the pushbutton value:
buttonState = digitalRead(buttonPin);
// check if the pushbutton is pressed.
// if it is, the buttonState is HIGH:
if (buttonState == HIGH) {
// turn LED on:
digitalWrite(ledPin, HIGH);
}
else {
// turn LED off:
digitalWrite(ledPin, LOW);
}
}
Pada program diatas kondisi lampu akan nyala jika pada buttonPin kondisi HIGH. Pada rangkaian pull-down kondisi button pin sebelum ditekan LOW dan menjadi HIGH saat tombol ditekan (lampu Menyala). Sedangkan pada rangkaian pull-up kondisi buttonPin sebelum ditekan HIGH dan menjadi LOW saat ditekan (lampu Mati).
Selamat mencoba....
0 comments:
Post a Comment