Nalini Vijayakumar
Published © GPL3+

Blinking an LED in your Browser with Ayantrik

Build and code your first Arduino LED circuit entirely in the browser using Ayantrik. No hardware, downloads, or setup required!

BeginnerProtip6 minutes11
Blinking an LED in your Browser with Ayantrik

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
LED (generic)
LED (generic)
×1
Through Hole Resistor, 200 ohm
Through Hole Resistor, 200 ohm
×1

Software apps and online services

https://ayantrik.in

Hand tools and fabrication machines

Arduino Uno R3

Story

Read more

Schematics

Wiring

Code

BlinkLED

C/C++
void setup() {
  Serial.begin(9600);
  pinMode(13, OUTPUT);
}

void loop() {
  digitalWrite(13, HIGH);
  delay(500);
  digitalWrite(13, LOW);
  delay(500);
}

Credits

Nalini Vijayakumar
1 project • 0 followers

Comments