Program LED RGB menggunakan Arduino Uno di Tinkercad

Halo semuanya! Berjumpa dengan Miniblog dari Inzaghi's Blog! Biasanya Tinkercad digunakan untuk melakukan Simulasi Arduino untuk Perangkat/Sistem Terbenam. Kali ini kita akan membuat Program LED RGB menggunakan Arduino Uno di Tinkercad.

Sumber Tutorial : Arduinogetstarted.com

Pertama, bukalah Situs Tinkercad dan Daftarlah terlebih dahulu. Kemudian, buatlah Project-nya.

Lalu, kita akan membuat Program Arduino LED RGB menggunakan Serial Plotter.

Kode :

const int PIN_RED   = 5;
const int PIN_GREEN = 6;
const int PIN_BLUE  = 7;

void setup() {
  pinMode(PIN_RED,   OUTPUT);
  pinMode(PIN_GREEN, OUTPUT);
  pinMode(PIN_BLUE,  OUTPUT);
}

void loop() {
  // color code #00C9CC (R = 0,   G = 201, B = 204)
  analogWrite(PIN_RED,   0);
  analogWrite(PIN_GREEN, 201);
  analogWrite(PIN_BLUE,  204);

  delay(1000); // keep the color 1 second

  // color code #F7788A (R = 247, G = 120, B = 138)
  analogWrite(PIN_RED,   247);
  analogWrite(PIN_GREEN, 120);
  analogWrite(PIN_BLUE,  138);

  delay(1000); // keep the color 1 second

  // color code #34A853 (R = 52,  G = 168, B = 83)
  analogWrite(PIN_RED,   52);
  analogWrite(PIN_GREEN, 168);
  analogWrite(PIN_BLUE,  83);

  delay(1000); // keep the color 1 second
}

Gambar (Output) :


Mohon maaf apabila ada kesalahan sedikitpun pada Kode Program ini.

Terima Kasih 😀😊😘👌👍 :)

Post a Comment

Previous Post Next Post