[vimeo=4366452]
[Justin] sent in his 1st place winning project from Northeastern’s Electrical Engineering Senior Design Capstone. It’s an interface that uses electrostatics to detect your hand position above it. As you can see in the video, it has decent resolution and can detect position on all 3 axes. When they uncover it, you can see the sensors arranged in a grid. They point out that each sensor isn’t just like a button, but rather detects a range of motion. They are using a pic 18×4550 to handle the sensors, which then communicates to the PC via USB. This could be pretty useful for musical performances as well as an alternative interface for people who can’t use a mouse.EO
computer hacks1421 Articles
computer hacks
Augmented Network Interfaces

Here’s an interesting bit of research to come out of Microsoft and UCSD. The Somniloquy project is a new type of network interface. It’s a USB device that allows a computer to continue network communications after being put to sleep. By offloading these tasks, machines that would normally stay awake for RDP and file transfers are only powered up when absolutely necessary. The device uses a Gumstix board like the one used in the Tor hardware adapter. The device pictured above has two USB interfaces, but the second is just for debugging and not needed for proper operation. The board runs BSD and creates a USBNet bridge to the Vista host. When the host daemon detects the computer going to sleep, it hands off active communication to the gumstix. They developed “stub” applications to handle the various types of communication. For downloads, they used wget to download only the portion of the data that was still left. For bittorrent, they customized the command line client ctorrent to manage the download. Both programs wake up the PC upon completion and transfer the file off of the SD card.
[via Engadget]
Controlling Spykee Via Web Cam Using Your Fingers

[epokh] sent in this cool project where he wrote some custom code to control the Spykee robot using gestures. He filters out everything but green through his web cam, then wraps his fingers in green tape. He then runs a series of filters to clean it up a little bit. The resulting “blobs” are tracked and converted to motor commands. You can see the setup in action in the video after the break. This guy might look familiar, as we posted a super quick head tracking rig he did with legos recently. Some of you mentioned, in the comments, that the legos were a waste, you’ll find that he thought so too, and ended up fabbing a simple rig to take the place of the legos.
Continue reading “Controlling Spykee Via Web Cam Using Your Fingers”
Dell Adamo Teardown

TechRepublic and iFixit partnered to teardown Dell’s flagship notebook, the Adamo. The Adamo is positioned to compete directly with Apple’s MacBook Air. The Dell crams a lot of technology into a very thin frame and they use a clever locking system for the backplate to hide any screws. The built in battery has a longer life than the Air and an SSD comes stock. The team points out that the Windows logo is etched on the backside instead of the standard ugly stickers; apparently this took quite a bit of teeth-pulling to get approved. Check out the full photo gallery which includes the fetish packaging and comparison shots to the Air and Dell Mini 9.
Distance Detecting Pc

Reader [Joshua] sent in his latest project. using a sonar rangefinder, an Arduino, and some clever programming, he’s made is computer react to his distance from it. As you can see in the video after the jump, he has programmed it to change text size and background color depending on his distance from the screen. While he admits that his implementation doesn’t seem immediately useful, there’s lots of potential there. We can actually think of several uses. What would you use it for?
Status Icon For Your Office
[flickr video= 3187384682]
[Furan] wanted a way to let people know his status at the office. Maybe he didn’t want to be bothered, or wanted to let them know he was on break. His solution is to set up an OLED display outside his office to display his status. He’s using a 4d systems OLED display. He has a windows application that updates the status, with plans of making it synchronize with his messenger status. Its a fairly cool idea, but just watching the video, we have no idea what some of the icons are supposed to mean. We would possibly choose something a little more obvious and generic, like text stating our status. What would you use?
USB Sniffing In Linux

[Robert] sent in this tutorial on how to set up USB sniffing in linux. Useful for seeing exactly what is being communicated to and from your USB devices, this ability is built into linux. [Bert], the author, shows us the steps involved and how to filter it to get the data we desire. You can specify exactly which device to capture data from. His example, shown above, is a session with an Arduino.