Paperduino 2.0 With Circuit Scribe - Paper Arduino

129K70635

Intro: Paperduino 2.0 With Circuit Scribe - Paper Arduino

What if making an Arduino, or wiring up an Arduino was as easy as printing one out? In this tutorial we printed our own Arduino Pro Mini board using a pen plotter and the Electroninks Circuit Scribe (a rollerball pen with highly conductive ink). Within 15 minutes we printed the board, placed components down with glue or tape, and uploaded a sketch.

Materials needed:
Circuit Scribe conductive ink pen
Silhouette SD plotter
8.5x11" glossy photo paper
Electroninks Arduino connection kit
FTDI cable
USBtinyISP bootloader or a pre-bootloaded Arduino chip
Superglue (Loctite gel) or Z-tape

Software:
EAGLE PCB (if you want to modify the board)
Arduino IDE
Silhouette Studio

Downloads:
Paperduino 2.0 Schematics and Layout (EAGLE)

Components list:
View BOM (ordering list) on Google Spreadsheet
2x 10 uF capacitors (1206 package)
3x 0.1 uF capacitor (1206)
2x 10 KOhm resistors (1206)
330 Ohm resistor (1206)
ATmega328P-AU
Red LED (1206)
Green LED (1206)
5V voltage regulator (5 pin)
8 MHz resonator
Tactile switch

STEP 1: Editing the Layout in EAGLE

Our Paperduino design is based on the open source design for the Arduino Pro Mini. We used EAGLE PCB to design the board.

Download a schematic
The Arduino Pro Mini board schematic can be found on the Arduino website.
Our final Paperduino 2.0 EAGLE files can be found here.

Adapting the board for paper
In order to make the schematic paper-friendly, we replaced the blocks of pin headers with our own custom round pad. Through-hole components such as the pin headers are difficult to use on flexible surfaces like paper. We added the new pad design to our Electroninks component library. Since the pen plotter only prints lines, but not fill patterns, the pads were composed of overlapping concentric circles. The tool path for plotting will be shown in Step 3.

We also replaced the package for many of the small components with the 1206 package (meaning 1.2mm long x 0.6mm wide) so they would be easier to mount later on.

Designing the board layout
In the board layout, we set the top layer line width to 0.6 mm to match the width of the pen trace.

We designed the board layout so the Paperduino could be printed on one layer. In many cases, the surface mount components act as jumpers. It is important to keep components close together to minimize line resistance between them.

In EAGLE PCB, the component pads will not be filled in by the pen plotter when exported as a DXF -- only the outlines will be drawn. To solve this issue, overlay the pads with meandering line features so they will be filled by a raster pattern.

Finally, if any lines require a paper jumper (like our digital pins 1, 2, and 3), they can be created in the bottom layer (blue). After the first layer is printed, paper stickers can be place over the lines and the bottom DXF layer can be used to print over the stickers. We will publish a jumper sticker tutorial in a future Instructable.

STEP 2: Exporting the Board Layout

Before exporting the board as a DXF file, only have the top layer (red) selected in EAGLE. If you have more than the top layer selected you may end up drawing more on the board then you desire. If you'd like to create text, vector fonts can be printed out on the pen plotter. If you use the tnames layer to separate traces and text, then select both the top layer and tnames before exporting the DXF file.

When prompted after selecting export as DXF (file>export | DXF), deselect the wire width and fill area options and then save the file to the appropriate directory.

STEP 3: Importing Layout to Silhouette Studio

Import the file
Import the DXF file into Silhouette Studio by dragging the file onto the blank page. You can see that all of the pads are composed of either raster line patterns or concentric circles.

Adjust the layout
After importing the DXF file to Silhouette Studio, it may need to be rescaled. Go back to the EAGLE board layout and measure the pattern from top to bottom. Then "select all" in Silhouette Studio and rescale the pattern to match.

Next, position the Arduino pattern on the page where desired.

Select print settings
Open up the plotting window. We aren't using a cutting mat, so that option can be deselected. A printing speed of 1 (the slowest speed) works well. Glossy photo paper can be used with a thickness level 15. Finally, make sure the "sketch pen" option is selected.

STEP 4: Printing the Arduino

Getting the plotter ready
To prepare the Circuit Scribe for plotting, wrap the pen in masking tape, then wedge it into the plotter head and lock it.

Load the plotter with glossy photo paper, which will enhance the conductivity of the ink, compared to standard paper.

Printing
Now simply hit "cut" in Silhouette Studio!

The tool path that Silhouette Studio creates tends to double over most of the lines. This is to our advantage -- drawing over the traces twice reduces their electrical resistance.


STEP 5: Placing Components

Method 1:
Place a drop of superglue between the component pads. It's ok if glue gets on one of the traces that runs between the pads. Then carefully place a component with tweezers and press in the center.

This method is permanent and the connection between components and pads should be good. However, we sometimes reinforce the connections using conductive epoxy applied with a syringe or an electric fluid dispenser.

Method 2:
Place a strip of z-axis tape over several of the component pads. Then press the surface mount components in place. The components could be peeled up later and reused. This is by far the quickest and easiest method to attach components.

STEP 6: Burning the Arduino Bootloader & Programming

Burning the Arduino Bootloader
An Arduino chip isn't ready to program straight from Atmel's factory (the company that makes the microcontrollers)! In order to get the ATMEGA328 to run any Arduino sketches, the Arduino firmware has to be loaded in a process known as bootloading (akin to loading an operating system such as Windows 7).

There are a few programmers you can buy - we use a USBtinyISP from Adafruit. You can also buy Atmel's official programmer (an AVR ISP) from digikey. If you never want to burn the bootloader yourself you can buy the surface mount ATMEGA328P already bootloaded.

Burning the bootloader is simple. First connect 5 pads on the Paperduino (GND, VCC, MOSI, MISO, SCK and DTR) to the programmer. Once connected, select the correct board type in Arduino IDE (an Arduino Pro Mini 328 at 5V), and then click "burn bootloader." If it works, the bootloader will be uploaded. If needed, additional help can be found here.

Uploading a sketch to the Paperduino
Our Arduino does not have an FTDI chip built on the board. The FTDI essentially bridges the gap between USB and the serial communication of the ATMEGA328 chip. What we need is the simple FTDI chip, which can be found packaged in a USB cable, and purchased from Sparkfun here. In future versions of the Paperduino we'll actually integrate an FTDI chip and make a paper USB connector to plug directly into a USB port on your computer.

Once you have the FTDI cable in hand, the connection is simple. Wire up the GND, VCC, TXD, RXD and DTR to the appropriate spots on the cable (we used our magnet-tipped cables from the Arduino Connection Kit). Once wired, all you have to do is upload a sketch. Uploading the blink example will blink the green surface mount LED.

We uploaded a simple sketch that changes the direction of our magnetic bi-direction LED component from blue to green. Using two digital outputs, the direction is changed easily by making output 6 low, and 7 high. And to reverse, make output 6 high and 7 low. Voila!

STEP 7: What Would You Make?

We can't wait to see what you come up with!

Share your own project ideas with us in the comments section!

35 Comments

Hi. I do not have the Silhouette SD so but I have the circuit pen. Can I draw it with hand? And those capacitors in that flat shape are not available. So can I use the normal shaped capacitors of the same value?

what does it mean? 'To solve this issue, overlay the pads with meandering line features so they will be filled by a raster pattern.'

Could you explain it for me more specifically?

Thanks in advance.

The project and result is awesome! It#s based on the Arduino pro mini 5V/16Mhz, right? I just wonder why you put an 8Mhz resonator on it, but the originale Arduino pro mini 5V works with 16Mhz.

I was looking at the BOM and adding everything to a DigiKey order but both the Red LED (475-1416-1-ND) and Green LED (475-1407-1-ND) give me an error message of "Value add packaging not available; alternate packaging exists.".

I looked at the 2 alternative packages and they are also not being sold. Suggestions for alternative LEDs with the same form factor?

Where do you get the Arduino Connection Kit?

Where do you find the Electroninks Arduino connection kit?

I was wondering if there was additional info on connecting the components to the paper and provide a reliable connection between the component and the trace that is on the paper?

Sorry to be a bother, but I'm having considerable difficulty bootloading the atmega ic. I'm using the adafruit SMT Test Socket - TQFP-32 and this arduino tutorial: http://arduino.cc/en/Tutorial/ArduinoToBreadboard. Is this an appropriate approach?

The BOM and audio calls for an Atmega328, but the video show an Atmega168?

Hi Amy, we used both, but the Atmega328P is what should be used. It is a bit better and not much more expensive than the 168P. See the actual BOM here: https://www.instructables.com/id/Paperduino-20-with-Circuit-Scribe/

Thanks for the reply! Any tips on bootloading those suckers? This is my first time.

Hi,

none of your download (in dropbox) are working anymore .. I bought a silhouette portrait just to try to built your paperduino ;)

please provide the eagle and schematics by other means ...

Stéphane

a french circuit scribe baker ;)

Sorry about that Stephane! We moved from dropbox to Google Drive. We've updated the link, or try directly here: https://drive.google.com/folderview?id=0B93k_zS-W3aQOFo2cVpxV1dZRE0&usp=sharing

Let us know how it goes!
You can grab the pen here: http://www.kickstarter.com/projects/electroninks/circuit-scribe-draw-circuits-instantly
I'm wondering if there's any way to do double sided circuits.
Yep! You could flip the page over (if both side are the same texture). Vias can be made by punching holes and drawing through the hole. Or you could try using a brad, or paperclip. :)
a staple might work too.
More Comments