Web Browser Arduino Simulation

by Autodesk Circuits in Circuits > Electronics

86491 Views, 50 Favorites, 0 Comments

Web Browser Arduino Simulation

runner4.GIF
In this instructable we're making a led chaser using 123D Circuits.io's breadboard virtual protyping and Arduino simulation. Here is an animation showing what we will have at the end:


Create a New Circuit

new circuit.jpg
create new circuit.jpg
As a first step click "Create a new circuit". Check Breadboard+Arduino circuit as Circuit Type.

Make Your Breadboard Schematic

led chaser.jpg
schematic.jpg
Connect an LED on each digital pin 2-13 with the anodes (bend side of the LED). Connect the cathodes to each other and then to a resistor to the Arduino GND. Set the resistor value to 300 Ohm.  

Note: In the 123D Circuits breadboard view if the LED is pointing up the cathodes are the pins on the LEFT.  In this figure the anodes and cathodes of all the LEDs appear to be connected, this is not true, overlapping wires only connect at their endpoints.

Program the Arduino

arduino.jpg
cde.jpg
Select the Arduino and click on the bottom of the page on "Arduino code editor" and add the following code:

int i = 2;
int time = 200;
int dir = 1;
// the setup routine runs once when you press reset:
void setup() {               
  // initialize the digital pin as an output.
    for(i=2;i<=13;i++){
  pinMode(i, OUTPUT);
  }   
}

// the loop routine runs over and over again forever:
void loop() {
  digitalWrite(i, HIGH);  
  delay(time);              
  digitalWrite(i, LOW);   
  i+=dir;            
  if(i<2|i>13){
  dir*=-1;
  i+=dir*2;
  } 
}

Start Simulation

led runner.jpg
Click play to start the simulation.
 

Show Off Your Design

You can embed your design on another site such as Instructables to show off your design. It even includes simulation!



To do this, visit the circuits page by clicking its name at the top. Click "Share Circuit", copy the embed code and paste it in your instructabe using the "Embed video" button.