Hack star
Published © MIT

Your Free virtual Arduino Simulator Online - 2023

I will show you how to use the free Wokwi Arduino simulator and list the features of the Wokwi Simulator. Let's get started😎

BeginnerProtip2 hours18,427
Your Free virtual Arduino Simulator Online - 2023

Things used in this project

Story

Read more

Schematics

LED blink circuit on a Breadboard (wokwi Simulator)

Code

Wokwi Simulator - Arduino UNO blinks an LED code

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

// the loop function runs over and over again forever
void loop() {
  digitalWrite(9, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(9, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Credits

Hack star

Hack star

75 projects • 98 followers
an Arduino enthusiast and an electronic hobbyist

Comments