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.

MakerFaire North Carolina, We’ll See You There!

This weekend, June 16th, the North Carolina Maker Faire will be happening. This is the 3rd year for this event and from what we’ve seen in the past, it should be pretty good.

We realize that every site has its niche of event coverage that they should deliver. Engadget/Gizmodo need to show new phones and got to big apple announcements. Joystiq needs to be at E3. We feel like we should be where people are hacking/building things. In an effort to reach those places, Maker Faire pops into mind pretty quickly. [Jeremy Cook] will be at this one walking around and doing interviews as well as having a booth for his personal site jcopro.net . If you see him, don’t hesitate to go up and say hi, maybe he’ll have a custom cut vinyl hackaday sticker left to give out.

We plan on hitting as many other similar events as we can swing (sorry, looks like no one can make it to toorcamp this year). Our writers are located all over the country so if you hear of an event you think we would enjoy, shoot us an email. Maybe we can attend!

MITx 6.002x Wraps Up; Here’s A Review From One Of The Students

[Jorge] just finished MITx 6.002x with the fine score of 99.1%. Congratulations! We just finished reading through this review of his experience (translate) with the 14-week class and it sounds like the program is extremely well executed. For those that don’t remember, this is an intro to circuits and electronics course offered at the Massachusetts Institute of Technology. Except 6.002x is free to all as an online course (but if you actually want a certificate a fee may be involved).

Above is one of the many screenshots which [Jorge] took of the student web interface. It looks great, and offers pretty much everything you need to complete the class. The textbook, which runs at least $65 for a paper copy, is available through the web interface as part of the course. The labs even include web demos you can use to simulate circuits and probe and measure the resulting signals and wave forms. If you have questions there is access to the teachers, but also a set of forums where you can work with other students.

Perhaps most interesting is [Jorge’s] assessment of the time you will spend working on the class. He thinks that if you’re already familiar with electronics the work can be complete in about one afternoon per week. Scheduling is flexible — tests are available for one week, but once you start taking one it must be completed in 24 hours.

He believes this will be offered again in the fall so keep a look out for registration to begin.

[Thanks Pan]