Nook Touch Becomes A Desktop Computer

It looks like [Renate] has been pounding out hack after hack on her Nook touch. It stands on its own now thanks to a tripod bracket hack which is the most recent work she’s done. But there are bunch of other modifications, all of which are linked after the break.

We believe that this is meant for displaying lyrics as she sings and plays along. To that end there’s a foot pedal attachment that lets her control the device. It connects to the Nook via a USB hub that allows her to interface multiple devices at once. This in itself is also a hack, as host mode isn’t an out-of-the-box feature for the device. In order to avoid having to disconnect everything in order to top off the battery, she also manged to get the thing to charge from the USB hub. In fact, with all this in one package she’s basically got herself a desktop computer.

Continue reading “Nook Touch Becomes A Desktop Computer”

Penny Auction Hacking; Put On Your Statistician’s Hat

Penny auctions are where you must pay a fee each time you bid. Certainly this alters the behavior of the bidders, but there doesn’t seem to be a lot of info about exactly how. In preparation for an analytics degree, [Jay] decided to study penny auctions and see if he can win a contest based on his findings. Now he’s not necessarily looking to make a living by gaming the auction system. But we were interested to see how he went about getting information, and what he has to say about the results.

Since there really isn’t a large body of data available, he scraped it himself. You’ll want to page through his posts on the topic, but basically he’s using Python on a fast machine. This is made quite a bit easier through the use of Selenium RC, but it also means he’s got a lot of instances of Firefox running to track multiple auctions. Scraped data is stored in CSV files, and posted to his front page daily.

From what he’s captured so far [Jay] suggests that time of day, type of auction, and several other factors dictate when you should bid to attain the best deals.

Embedded Linux Meets Arduino With The Rascal Micro

Behold the Rascal Micro. It’s running embedded Linux and has a dual-row of pin headers which probably seem pretty familiar. The idea here is to bring Arduino hardware (ie: shields) to a party with a powerful web server.

The image above is the beta version of the hardware. What’s being shown off in a recent Engadget demo is a version that slides two USB ports in between the barrel jack and the NIC. This makes it easy to jump over to wireless with the use of a USB dongle, or you can figure out what other peripherals you want to include in your project.

The novelty here is that the web server included a built-in editor. So not only can it serve you a webpage to control hardware or display sensor status, but it will let you edit the interface without needing to reflash anything.

The price rings in somewhere around $100-150, and like the popular Raspberry Pi board, you can’t get your hands on it right now.

Mini Maker Faire In Eugene, OR This Weekend

[Rick Osgood] wrote in to tell us about the Eugene, OR Mini Maker Faire going on this weekend. The event is being hosted on the grounds of the Science Factory with a lot of help from the Eugune Makerspace

So far, Steamworks Cycles, the South Eugene Robotics Team, Oregon Rocketry and Eugene Rocketery will be at the Maker Faire showing off their skills and wares. It looks like an excellent place to spend the day, with events hosted by the Science Factor and the Eugene Makerspace all day long.

Tickets are $4.00 a pop; easy enough on our wallets, but unfortunately the official Hackaday transporter pad won’t be ready in time for this weekend. If anyone would like to write a blog post about the sights and sounds of the Eugene Mini Maker Faire, send it in and we’ll put it up.

Raspberry Pi Finds Itself Inside A TRS-80 Model 100

This TRS-80 Model 100 is a lot more powerful than you might think. That’s because [Karl Lunt] is using it as an enclosure for his Raspberry Pi board. Since the ARM-powered device comes sans-enclosure it’s fun to see a retro choice like this one. And having had to go out and buy a USB keyboard to use our own RPi, we appreciate [Karl’s] solution for using the original keyboard as an input device.

Above you can see that he’s using an LCD tv as the display. For now that connection is made using the composite video output, which explains the fuzzy image. To the right of the TRS-80 a standard wall wart connects to the barrel jack to provide power. [Karl] scrapped a USB cellphone charger in order to connect from the barrel jack to the micro-USB jack on the Pi board. The ribbon cable to the left lets him get at the I/O header without opening the case.

In order to use the keyboard he patched into it with a Teensy board. That connects to the USB port on the RPi, sending HID keyboard commands based on what it received from the user. We like this option as it give you the ability to pre-process keystrokes (ie: you can code your own custom macros that the Teensy will listen for). Right now the Model 100’s LCD screen isn’t hooked up but he may add that in the future.

Volumetric Display Looks Like A DaVinci Sketch

This volumetric display really shows a lot of potential. And it has just the right balance of simplicity and ingenuity. The rig is being developed by [Michel David] and involves a screen shaped like a helix, and a laser which shines through an optical filter disk.

The moving parts of the device are mounted on the same shaft, which is spun by a belt system connected to a Dremel tool. Since the screen and the information disc are mounted on the same shaft, one part of the synchronization process is already taken care of. You can see the separate stand for the projector, which is a laser in this case but is designed to work with other light sources as well. Since the projection surface is moving towards and away from the projector, a laser is preferrable because of focus issues. Unfortunately [Michel] has been having some issues with switching the diode at high enough frequencies. Still, we think the results in the clip after the break are marvelous.

As far as hardware is concerned, this is a lot simpler than trying to spin a large LED matrix.

Continue reading “Volumetric Display Looks Like A DaVinci Sketch”

Using Printf-style Output To Debug Arduino

First off, if you’re looking at that title and thinking it’s flame-bait, please hold off. What [Ihsan Kehribar] is working with is another way to get some feedback for what’s going on with your Arduino project. Or really any AVR project that uses an ISP connection. He’s added text output for AVR programs similar to the printf function used for a lot of non-embedded C development.

So, we’d bet you’re asking yourself why he’s not just using outright debugging? The AVR line supports many different types of it. But that can be complicated, and usually requires a proper programmer. If you just want to watch to see what values are changing, and when functions are being executed, this isn’t a bad solution. He uses the computer to continually poll the chip. Whenever the sketch calls the his print library it answers back with the payload to be displayed in the terminal. The overhead shouldn’t be too high, and if you’re smart about it this can be flagged as a debug option at the top of the program file.