posted Nov 21st 2010 9:35am by
Mike Szczys
filed under:
digital cameras hacks

[Brent] and his wife wanted a way to provide more family time for Grandparents that lived far away. They tried a webcam, but their daughter just didn’t oblige by staying in the frame. Instead of chasing her around the room with with the camera he added pan and tilt features to the device. He settled on IR control using a common television remote, similar to our USB remote control receiver tutorial except that it drives servo motors instead of forwarding signals over the serial connection. [Brent] used a Picaxe 08M, connecting two servos together as a base on top of the project box. If you try this yourself there’s a lot of room to grow. Once you’ve assembled the hardware it wouldn’t be too hard to make this web enabled so that Grandpa can click on a web interface to look around the room.
posted Nov 20th 2010 9:00am by
Chris Nelson
filed under:
classic hacks,
digital cameras hacks

[calculon] was able to modify a “dumb” adapter to allow his Canon SLR to use the aperture and focus on a retro lens. With his new flip mounted wide angle lens he was able to achieve some pretty neat macro shots. By cutting away some of the cheaper ring he was able to feed the wire through and glue it onto the the cameras contact points. The wire was then attached to the inputs on the “new” lens. With a new adapter running about $375 not only was this a neat little hack but it was also a money saver. You can see some more of his photos on his flicker
posted Nov 20th 2010 7:18am by
Chris Nelson
filed under:
classic hacks,
hardware,
how-to

Powering your gadgets generally seems like a necessary evil. To help with this [Felipe La Rotta] made a really nice bench power supply using a PC power supply and a LM317 adjustable voltage regulator. PC power supplies are an example of a switched power supply(more on that later). The LM317 is a type of linear voltage regulator that allows for adjusting the output voltage by varying some resistors. Whats the best way to power your circuits? well that depends…
Read the rest of this entry »
posted Nov 19th 2010 3:00pm by
Mike Szczys
filed under:
how-to,
Microcontrollers

Welcome back to this fourth and final installment of the series. The first three parts should have been enough to get you off the ground, but a few more learning examples wouldn’t hurt. It’s also a good time to discuss some of the other things these little chips can do. Join me after the break to:
- Expand the sample code, adding features to our simple program while I challenge you to write the code yourself.
- Discuss AVR fuse bits, how to use them, and what to watch out for
- Touch on some of the peripherals you’ll come across in these chips
As a grand flourish to the series, I’ve used the example hardware from this final part to build a bicycle tail light. Hopefully this will inspire you to create something much more clever.
Series roadmap:
Read the rest of this entry »
posted Nov 19th 2010 1:00pm by
Mike Szczys
filed under:
led hacks

Most of the LED matrix posts we run delve into the hardware design. This time around [J Bremnant] used prefab modules and focused on writing code to address the display. The hardware combines two 24×16 LED boards from Sure Electronics with a Teensy 2.0 to drive the display and provide a USB connection. The firmware comes in just under 8k, leaving graphic manipulation up to a PC.
[J Bremnant's] Python script offers a lot of flexibility when working with the display. There are three modes selectable through a terminal interface. One just tests the display and then drops into Conway’s Game of Life. The second mode lets you send commands via serial interface so it can be used as a message ticker. The final feature is frame addressing that allows graphics to be dropped into the display. See each of these featured in the video after the break.
Read the rest of this entry »
posted Nov 19th 2010 12:00pm by
Mike Szczys
filed under:
arduino hacks

Interfacing your own hardware with a Java app couldn’t be easier than this example. [Pn] created this proof-of-concept using an Arduino, an analog joystick from a gaming controller, and a few lines of Java code. The Arduino reads an ADC value from the joystick’s x-axis and transmits it over the serial connection ten times a second. The Java program triggers on every serial event, parsing the data based on the @ symbol that the Arduino sends as a start and end condition.
We like this kind of example because there’s nothing extra involved. It lets you take the concept and run with it in any project imaginable. Be it a more complicated Joystick, or simple sensors that you’d like to interface with.
posted Nov 19th 2010 11:00am by
Mike Szczys
filed under:
video hacks

[Peter Gunn] added an LCD screen to his Dockstar. Now that we think of it, this really shouldn’t be all that hard since the Dockstar can run a Linux kernel and it has USB ports. [Peter] took inspiration from [Sprite_TM's] key chain LCD4Linux hack that we looked at many moons ago. He used a cheap Coby DP182 digital picture frame that can be picked up for less than $5 used. A bit of firmware hacking and LCD4Linux has no problem pushing images to the device via USB. [Peter's] setup refreshes the screen at one frame per second, but if all you need is a bit of feedback from the otherwise headless system this is a great solution.
[Thanks Mikka]
posted Nov 19th 2010 9:36am by
Mike Szczys
filed under:
multitouch hacks

[Raj Sodhi] and [Brett Jones] have been working on interactive augmented reality as part of their research at the University of Illinois. What they have come up with is a stylus-based input system that can use physical objects to create a virtual landscape. Above you can see that an environment was built using white blocks. A camera maps a virtual world that matches the physical design. From there an infrared stylus can be used to manipulate virtual data which is projected on the blocks.
What they’ve created is a very advanced IR Whiteboard. There are buttons on the stylus, one of which opens the menu, made up of circles that you can see above. From there, you can select a tool and make it do your bidding. After the break there’s a video demonstration where a game is set up, using the menu to place tanks and mines on the 3D playing field. We wonder how hard it would be to do this using a projector and a Kinect.
Read the rest of this entry »