Hackaday Retro Roundup, This Time With A PowerPC And A PET

Thought we forgot about this, didn’t you? Well, the Hackaday Retro Edition is still going strong, and this time we have a few more retro successes that were able to load our retro site with ancient hardware.

First up is a submission by [rusbus]. He had a Power Macintosh 6100/60 lying around – the first Macintosh with a PowerPC processor instead of the Motorola 68k – and loaded up our retro site. There are some weird quirks about the 6100, notably the AAUI Ethernet tranceiver connected to a 10BASE-T network.

Although some browsers are available for the 6100, notably iCab (it’s not great, but it also works on 68k machines), [rusbus] had to settle for Internet Explorer 3.01. He eventually got it working and has a picture to prove it.

On the subject of finding a proper web browser, [azog] loaded up the retro site with a Commodore PET. There aren’t any web browsers for a PET, you say? Well, [azog] had to make one.

The network adapter is a Retroswitch Flyer Internet Modem, and after finding some network-aware projects on the Retroswitch site such as an IRC and Telnet client, [azog] put together an extremely crude web browser. In BASIC. Old BASIC. We’re impressed.

With [azog]’s browser, the PET opens up a channel to a URL, reads the text coming in, and processes it. There’s only 1kb of video RAM and 32kb of system RAM, so small luxuries like scrolling are nearly impossible. An amazing piece of work, really.

Finally, [Bob] from Portugal sent in a neat Flickr gallery of a Schneider euro XT he found in his basement. It’s based on the IBM PC/XT running an Intel 8088 processor, but is enclosed in a ‘the keyboard is the computer’ form factor reminiscent of a C64 or TRS-80. He hasn’t gotten it on the Internet yet, but it’s still a cool piece of kit.

Giving The MSP430 A GUI

Sometimes you need to toggle or read a few pins on a microcontroller for a project so simple (or so temporary) that coding some firmware is a rather large investment of time. [Jaspreet] had the same problem – wanting to read values and toggle pins without writing any code – so he came up with a rather clever solution to control an MSP430 through a serial connection.

[Jaspreet] calls his project ControlEasy, and it does exactly as advertised: it provides a software interface to control ADC inputs, PWM outputs, and the state of output pins via a desktop computer. ControlEasy does this with a matching piece of code running on any MSP430 with a hardware UART (like the TI Launchpad) sending and receiving data to the computer.

Right now ControlEasy can read analog values, generate PWM output, and set individual pins high and low. [Jaspreet] plans on expanding his software to allow control of LCDs and I2C and SPI devices.

In the video after the break you can see [Jaspreet] fiddling around with some pins on his LaunchPad via the GUI. The software is also available for download if you’d like to try it out, but unfortunately it’s a Windows-only build at this point.

Continue reading “Giving The MSP430 A GUI”

A Mobile Electronics Lab For All Your Projects

When [Nisker]’s son got a very, very loud and annoying toy, he did what any good maker parent would do: instead of removing the batteries, he sought a way to lower the volume instead. This, of course, meant cracking open the toy and going at the circuit board with a soldering iron. Not having a permanent electronics workbench meant [Nisker] needed to dig out his Weller from a bag full of tools. Surely there must be an easier way to be a tinkerer with a small workspace.

[Nisker]’s solution was to build a mobile electronics workbench. The resulting wooden box has more than enough space to hold a signal generator, power supply, soldering iron, multimeter, and a bunch of other tools required for making or modding electronics projects.

The case was designed in Google Sketchup and constructed out of 12mm plywood for the sides and 6mm ply for the shelves. All the pieces were cut out with a circular saw and pieced together with screws and glue.

Now [Nisker] has a very compact – 16.9 x 7.9 x 22 inches – electronics lab he can carry just about anywhere. Not a bad project if you’re limited by your current space, and classy enough to keep around once you finally set up a proper workshop.

Using UAVs To Find Mannequins Lost In The Outback

Every other year the Australian Research Center for Aerospace Automation, the government of Queensland, Australia  and other government and research institutions hold a contest to develop technology for unmanned aerial vehicles for the wastes of central Australia. Canberra UAV – a group of autonomous drone enthusiasts from the Make, Hack, Void hackerspace – took part in this UAV challenge this year. They ended up with one of the most successful UAVs to every compete, and while they didn’t quite finish the competition they were one of the most successful entries to date.

The goal of the Search and Rescue Outback Challenge is to take off from a landing strip, search for a mannequin named Outback Joe, and deliver 500 ml of life-giving water via air drop. Out of 72 teams entered in to this year’s Outback Challenge, only 6 were allowed to take off – safety restrictions, don’t you know – and all but two hadn’t been destroyed via ‘rapid, unplanned descent’ during qualifications.

UAV Canberra was the only team able to search the entire 5 nautical mile radius search area with their cameras and find Outback Joe. Contest judges gave them permission to drop their payload, but unfortunately the bottle of water was snagged on the engine.

In the many iterations of the Search and Rescue Outback Challenge, UAV Canberra is only the second team to locate a mannequin in the outback, and the first to do it autonomously. A shame, then, that they were unable to claim a victory, but we’ll look forward to their entry in the next Search and Rescue competition.

You can check out a few videos of the Canberra UAV team’s flights after the break.

Continue reading “Using UAVs To Find Mannequins Lost In The Outback”

FreeSoC, For When You Need 68 I/O Pins

Like many of us, [Jon] began his journey through the magical world of microcontrollers with an Arduino. For a beginner, the Arduino is a wonderful tool, but [Jon] quickly found himself limited by the platform. There are too few pins on the Arduino, and and the platform doesn’t really lend itself to extremely complex projects. To this end, [Jon] designed freeSoC, an Arduino-compatible platform based on the Cypress Semiconductor PSoC 5.

The Cypress PSoC 5 is an extremely capable microcontroller with 60 general purpose I/O pins and 8 special purpose, high current outputs. Every pin on [Jon]’s freeSoC is completely configurable; if you want 24 SPI ports and a dozen 20-bit ADCs, just launch Cypress’ design software and configure the chip graphically. With this many I/O ports, the PSoC 5 is as useful as an FPGA, without all the hassle of actually being and FPGA.

A really neat feature of the freeSoC is its ability to be programmed graphically. Using Cypress’ PSoC Creator IDE, the multitude of I/O pins can be configured to just about anything very easily. Because the PSoC 5 is based on an ARM Cortex-M3, programming the freeSoC is as easy as any one of many ARM dev boards that were recently released.

[Jon] came up with a very, very neat project here, and it’s something we can definitely see the utility of.

Thanks [Dale] for sending this one in.