This PCB Business Card Is Logically Different

Having seen a number of PCB business cards [Will] decided to go against the more popular choice of a micro-controller based design and show some character with a logic based finite state machine. [Will] uses a single 7-segment display to scroll through the letters of his name with a state machine that outputs the desired combination of 1’s and 0’s to the LED display each time the tactile button is pushed.

[Will] uses a 4-bit counter made up of D Flip-Flops for the clock signal as a conditional input to 6 of the 4-input AND gates. He doesn’t go into the painful details of displaying each character through the process (thankfully) but he does mention that he uses the Quine-McCluskey technique for reduction instead of Boolean algebra. Since his name is 11 characters long and the 4-bit binary counter goes from 0000 to 1111 leaving 5 more pushes of the button before rolling the count back to 0000, during which time the display is left blank. [Will] kindly includes the eagle and Gerber files for your downloading pleasure over at his blog if you’re interested in getting a little deeper into the design.

Continue reading “This PCB Business Card Is Logically Different”

CNC’ed Business Card

Hobby CNC mills have made rapid prototyping easier and faster for hackers. One really useful application is quickly fabricating your own milled PCB’s. [proto logical] built a Reference PCB Business Card using his CNC mill after repeatedly coming across other hackers who were not too convinced about the capabilities of CNC mills in routing PCB’s (also referred to as isolation milling). He thought of making a business card sized reference PCB to show around when he bumps into such folks.

To keep it useful, he included inch and centimetre scales, 0.1″ grid of holes, reference track widths from 16 mil to 66 mil, a few common drill holes and vias and some SMD foot prints. The single sided board is 50 mil thick, so it doesn’t bulk up his wallet. He’s posted the Eagle board file (direct download) and G-code (text file) for those interested in milling their own reference boards. The idea isn’t new – it’s been tried several times in different form factors in the past, generally using more traditional techniques. [proto logical] got inspiration from [Rohit Gupta’s] TinkerRule – The Maker’s Swiss Army Knife. Then there’s the very popular uRuler made by [Dave Jones] of EEVBlog fame. If you have any suggestions on improving the design, chime in with comments here.

Thanks to [ACG] for sending in this tip that he dug up while looking for CNC routed PCB’s.

Laser Engraved Business Cards With LEDs

Plexiglass-LED-Lit-Business-Card-1

Regular paper business cards are boring. They are flimsy and easily forgettable for the most part, and when stacked together or thrown in a pile, it’s hard to locate a specific one; like trying to find a needle in a haystack. Plastic cards aren’t much better either because they still fall into that ‘who cares’ category. But plexiglas business cards with laser cut etchings beautifully lit up by an LED?! Yes please.

The design was developed by Romanian engraving company called Gravez Dotro who fixed the problem of simply glancing at a business card, putting it in a wallet, and causally forgetting about it later, never to contact the person that gave it out. If someone hands away one of these though, the receiver is definitely going to remember it. The solution isn’t that high-tech and just about anyone with access to a laser cutter can make their own. It will be interesting to see what people come up with. If you feel like creating one, be sure to send us pictures. We would love to see them. Video of the design comes up after the break.

Continue reading “Laser Engraved Business Cards With LEDs”

Ask Hackaday: Can Paper USB Business Cards Exist?

swivel business card

The swivelCard Kickstarter campaign recently received a lot of press coverage and makes some impressive claims as their goal is the development of USB and NFC business cards at a $3 unit price. While most USB-enabled business cards we featured on Hackaday were made of standard FR4, this particular card is made of paper as the project description states the team patented

a system for turning regular paper into a USB drive.

As you can guess this piqued our interest, as all paper based technologies we had seen until now mostly consisted of either printed PCBs or paper batteries. ‘Printing a USB drive on regular paper’ (as the video says) would therefore involve printing functional USB and NFC controllers.

Luckily enough a quick Google search for the patents shown in one of the pictures (patent1, patent2) taught us that a storage circuitry is embedded under the printed USB pads, which may imply that the team had an Application-Specific Integrated Circuit (ASIC) designed or that they simply found one they could use for their own purposes. From the video we learn that ‘each card has a unique ID and can individually be programmed’ (the card, not the UID) and that it can be setup to open any webpage URL. The latter can even be modified after the card has been handed out, hinting that the final recipient would go to a ‘www.swivelcard.com/XXXX” type of address. We therefore got confused by

Imagine giving your business card with pictures, videos, presentations, and websites for the recipient to interact with!

paragraph that the project description contains.

This leads us to one key question we have: what kind of USB drive can make a given user visit a particular website, given that he may have Linux, Windows, Mac or any other OS? They all have similar USB enumeration processes and different key strokes to launch a browser… our wild guess is that it may be detected as storage with a single html file in it. Unfortunately for us the USB detection process is not included in the video.

Our final question: Is it possible to embed both USB and NFC controllers in a thin piece of paper without worrying about broken ICs (see picture above)? NFC enabled passports have obviously been around for a long time but we couldn’t find the same for USB drives.

Possible or not, we would definitely love having one in our hands!

Edit: One of our kind readers pointed out that this campaign actually is a re-launch of a failed indiegogo one which provides more details about the technology and confirms our assumptions.

Designing The Second Version Of My Business Card

At the end of the month my contract with my current employer (no, not Hackaday) will end. With the interviews starting to line up I therefore thought it’d be a nice opportunity to design the PCB business card you can see in the picture above.

It is made of two PCBs soldered together, the bottom one containing the SMD components while the top one only has holes to let most of them pass through. The design was mainly inspired by the first version we already featured on Hackaday although the microcontroller was changed for the (costly) ATMega32u4 and the top PCB was slightly milled so the LEDs may shine through the FR4. The LEDs are connected in groups of 2 (total of 8 groups) to PWM channels and a hidden flash memory allows the card to be recognized as an external 2MB storage using the LUFA library. All source files may be downloaded on my website.

A Business Card That Plays Simon Says

BusinessCard_01_08

When your name is Simon and you want to build your own circuit board business card, it makes perfect sense to incorporate a game of Simon Says, and that’s exactly what [Simon] did with his Business Card.

You may see a resemblance to the Engineer’s Emergency Business Card; that’s because [Simon] took inspiration from that card to build his own.  The game of Simon Says is played via 4 low-profile pushbuttons and 4 0805 LEDs.  The microcontroller of choice to run the game is an ATtiny45 set up to work with the Arduino IDE.  But with only 5 pins available for I/O, [Simon] had to give up 4 pins to the LEDs and configure the remaining pin as an analog input.  The buttons are tied into a voltage divider that feeds the analog input, so depending which button is pressed, a different voltage is read in, thus a value from 0 to 1023 determines which button was pressed.

One of the great things about this write-up is that it goes through the process of etching PCBs at home using the toner-transfer method.  We’re not sure how many home-etched business cards he’s willing to pass out, but surely whoever does get the card, will never forget his name.

Continue reading “A Business Card That Plays Simon Says”

An Engineer’s Emergency Business Card

breakout_3

We’ve seen lots of circuit board business cards before, but none quite like this. [Saar] calls it the Engineer’s Emergency Business Card.

Since he actually makes a living from making circuit boards, it made sense for him to make a truly functional card. But unlike some of the fancier cards we’ve seen, you can’t plug it into your computer, or even open a beer with it! In fact, all it does is light up when a voltage is applied across the main pins.

But wait — why are all the components in through holes? Well, according to [Saar], that’s because it’s designed to be the electrical engineers emergency kit!

When all hope is lost, the MacGuyver engineer could snap out one of the components and save the day. Recall the countless times you desperately needed a 1 KOhm resistor to fix an amplifier at a party, only to see the girl you were trying to impress slip away with an OCaml programmer? Never again with this little kit. You even have 2 cm of solder in there to make sure the connection’s electrically solid!

We love it. Whether or not anyone will ever successfully use it in an emergency situation such as [Saar’s] hypothetical one is another question altogether. But we do have to give him creativity points for it, the artistic traces look awesome!