Four Meter Light Paintings

HaD

We’ve seen some light painting before – waving a microcontroller and LED strip in front of a camera is a very interesting project after all. [Saulius]’ light painting stick is unlike anything we’ve seen before, though. It’s huge – four meters high, and is also very flexible in the field, drawing images served up from a smart phone.

To get his pictures onto his light painting stick, [Saulius] used the very cool Carambola, an exceedingly small board that also runs Python. The images were converted to a 128xWhatever .BMP file served to the Carambola over WiFi with a smart phone, Since the Carambola runs Linux, sometimes a kernel interrupt would mistakenly restart the drawing process. [Saulius] found a way around that by writing the drawing code in C and wrapping that in a Python module. The speed of C and the flexibility of Python, who could ask for more.

On the project page, you can see [Saulius] pulling off some very cool light paintings. Even though the Hackaday logo is the best way to get on the front page here, this pic is probably the most impressive

Old LED Marquee Turned Embedded Video Player

driving-led-marquee-with-rpi

[Sprite_TM] is was sent an old LED Marquee by an anonymous fan of his hacking projects. The display isn’t full color, but it’s large — 224 by 48 pixels — and he figured he could render some okay images with the bi-color diodes. In the end, he replaced the controller and turned it into a video player.

The original system work well enough, but the 100 MHz 486 industrial style PC that drove the display seems a little comical these days. After giving it a spin and testing out how it drives the display [Sprite] hooked up an FTDI chip and managed to get it playing video from his computer. Above you can see part of the opening sequence of The Simpsons.

Now that he had learned its secrets he set out to give it an embedded controller. His first attempt was with a Carambola board which he’s worked with before. That proved to be a little slow for all the pixel data he was pushing so he upgraded to a Raspberry Pi and never looked back. You can see the demo video after the jump.

Continue reading “Old LED Marquee Turned Embedded Video Player”

[Sprite_tm] Connects An LCD To A Tiny Linux Board

One of [Sprite_tm]’s colleagues recently challenged him to connect a small LCD touch screen to a Raspberry Pi. Sadly, [Sprite_tm] has yet to take delivery of a Raspberry Pi, but he did manage to connect an LCD to a Linux board without video capabilities.

Because [Sprite_tm]’s display has a 16-bit parallel interface, and 16 GPIO pins are hard to come by on the Carambola Linux board, a few shift registers had to be brought into the build to make the LCD work. These shift registers are connected to the Carambola board via an SPI interface; a very simple way to connect all the LCD pins to the Linux board.

Of course, there’s no way for Linux to speak to the LCD without a kernel driver; [Sprite_tm] wrote a framebuffer driver so the LCD can be used as a console, an X session, or used by any other program that can write to a framebuffer device.

Like all good driver authors, [Sprite_tm] is giving away the patch to enable SPI-ified LCD panels on the Carambola along with the shift register schematic. With any luck we’ll also see the Raspi drivers when [Sprite_tm] takes delivery of his Raspberry Pi.

Fancy Telemetry Control Display For A Quadcopter

Most of the quadcopter projects that we’ve seen use a joystick-based control system. This lets you fly the thing around like any RC vehicle. But [Saulius] is augmenting his control system by pulling and displaying telemetry data. It doesn’t really change the way the vehicle is controller, but it lets the craft roam much further away because the operator can watch the computer screen and forego the need for the quadcopter to be within sight.

A Carambola board (also used in this weather station project) is used to provide connectivity. This is WiFi based, which helps us understand the range it can travel. The quadcopter carries a camera, which is shown in the lower right box of the image above. There is also an artificial horizon, and feedback dials which display the telemetry data.

It looks like there’s a satellite view in between those two dashboard widgets. We don’t see anything coming up right now, but it’s possible this is meant to overlay a virtual marker for the aircraft’s position based on GPS data. That last part is really just conjecture though. Catch the 80-second test flight after the jump.

Continue reading “Fancy Telemetry Control Display For A Quadcopter”

Extend Your Personal Weather Station’s Reporting Capabilities

This Nexus wireless weather station has an array of weather sensors that you mount outside and monitor on the LCD screen. It also has the ability to stream the data over USB, but that feature is only supported in Windows and the companion software leaves a lot to be desired. Here’s a technique that will let you unlock the potential of the data by streaming it to your Linux box or directly to the Internet.

It turns out that grabbing the data via Linux has been made quite easy thanks to a package called TE923 (translated). With the base unit connected via USB, the software will pull down a string of colon-separated data which will be easy to parse using your favorite scripting language. But what if you don’t want to tether this to a computer?

The project goes one step further by using a Carambola board. This is a WiFi board with a USB port on it. It runs OpenWRT so getting TE923 going is as simple as building the package. The best part is, any wireless router that runs OpenWRT (or DD-WRT, etc.) and has a USB port can substitute for this board. With the module connected to the station, data is pushed to the Pachube website to serve as a custom web readout.

[Thanks Saulius]