membuat blink (lampu kedip dengan arduino uno) - electriali

electriali

Want to benefit to other

test banner

Post Top Ad

Responsive Ads Here

membuat blink (lampu kedip dengan arduino uno)

Share This
Assalamualaikum wrwb .
bertemu lagi dengan saya orang yang ingin berguna untuk banyak orang hhhh . postingan ini adalah tutorial untuk membuat blink ( lampu kedip kedip) dengan arduino uno langsung saja kita mulai.

kalian perlu menyiapkan bahan dan alat sebagai berikut:

1. led 1x
2. arduino uno board 1x
3. resistor 220 ohm 1x
4. kabel jumper secukupnya


langkah kerjanya

pertama buat rangkaian seperti gambar ini dengan bantuan b



kemudian buka software arduino kalian isikan kode berikut


/*it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN takes care
  of use the correct LED pin whatever is the board used.
  If you want to know what pin the on-board LED is connected to on your Arduino model, check
  the Technical Specs of your board  at https://www.arduino.cc/en/Main/Products
 
  This example code is in the public domain.

  modified 8 May 2014
  by Scott Fitzgerald
 
  modified 22 oktober 2016
  by Muchamat rifa"i ali
*/


// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}
</blockquote>
lalu upload ke arduino dannnn sellleeeesssaaaaaiiii

selamat mencoba

1 comment: