Berikut ini rangkaian yang dibuat untuk menghasilkan sinyal kotak.
Untuk selanjutnya kita tinggal membuat program.
Program 1.
void setup() {
pinMode(12, OUTPUT);
}
void loop() {
digitalWrite(12, LOW);
digitalWrite(12, HIGH);
}
Terdapat program lainya yang dapat anda coba.
void setup() {
Serial.begin(9600); // Starts the Serial Monitor
}
void loop() {
// Prints the generated frequency on the screen
Serial.println("the frequency is: 50 Hz");
{
tone(6, 50); //define the pin in OUTPUT, and the frequency generated in the pin
delay (2000); //Generates the frequency for 2 seconds
}
}
Selamat mencoba.
0 comments:
Post a Comment