Arduino Project in 5 Minutes

by Circuito io in Circuits > Arduino

12528 Views, 138 Favorites, 0 Comments

Arduino Project in 5 Minutes

Make an Arduino project in 5 minutes with Circuito.io

In the following Instructable, we'll show you how you can make your next Arduino project in just 5 minutes.

It's simple, easy and fun.

Enjoy! :)

Plan It!

Plan it.png

1. Go to Circuito.io

2. Select the components in the screenshot, add a description and your email and click "Send"

3. Instantly receive schematic and code from Circuito.io.

* Sometimes our emails go to "promotions" so make sure to check the different inboxes.

Connect It!

Connect it 2.png
Connect it 1.png

1. Download the attachments from the email you received.

2. Unzip the folder.

3. Open the .FZZ file (If you don't have Fritzing, you can download it here for free)

4. Move components around so you have a clear view of the connections.

5. Connect the different components to the breadboard.

Code It!

Code it 1.png
Code it 2.png

1. Open the Firmware folder

2. Open the Firmware.ino file (if you don't have Arduino installed, you can download it here for free)

3. Make changes to the code.

The original code will show the word: ON if an object is closer than 30 cm. from the sensor:

void loop ( )

if (ultrasonic.getCms () < 30 {

sevenSegment.write("on");

delay(1000);

sevenSegment.clear();

We decided that for this project, we want the seven segment display to show the distance from the sensor:

sevenSegment.write (ultraSonic.getCms() );

delay (250);

Test It!

Test it.png

Now that everything is in place, you can test your project and see if it really works like it does on the video :)

If you have any trouble, you can always write to us >> hello@circuito.io or through our FB page

Share It!

I'm flying.png

We would love to see how your project turned out.

Share it with us through our FB page and with the Makers' community.