Tutorial
š” Tip: Disable headers/footers in your print dialog for a clean PDF.
Ā
Tinkercad Circuits ā Virtual Arduino š”
š§ What is Tinkercad?
A free online simulator for Arduino circuits. You can code, wire LEDs, and test sensors ā all without real hardware!
Goal: create a blinking LED circuit online before we build the real one ā”
š» Start Building
- Go to tinkercad.com ā Sign in or make a free account.
- Click Circuits ā Create new Circuit.
- Drag an Arduino Uno and an LED onto the workspace.
- Add a resistor (220Ī©) between the LED and ground.
š¾ Add Code
- Click Code ā choose Blocks + Text.
- Paste this simple blink code:
void setup() { pinMode(13, OUTPUT); } void loop() { digitalWrite(13, HIGH); delay(500); digitalWrite(13, LOW); delay(500); } - Click Start Simulation.
š” Want color? Change
13 to another pin and wire a different LED!š§Æ Quick Fixes
- LED not lighting? Flip it ā long leg is positive!
- Resistor missing? LED will burn out (even virtually š ).
- Wires not connecting? Zoom in and check connection dots.