Tearing An Old Laptop Apart To Build A Ground Control Station

Being tired of assembling and disassembling parts/cables every time he went outside to fly his plane, [Elad] figured that he’d be better off building his own ground control station.

The core of the station is based on an old laptop with a broken screen he had laying around and (luckily) an older laptop screen he had found. As the latter only accepted LVDS, an adapter that could generate theses signals from the standard laptop’s VGA output was needed. [Elad] therefore disassembled his laptop and fit all the parts in a Pelican case he bought, as well as a lead-acid battery, a 12V to 19V stepup converter (to power the laptop), temperature/voltage/current sensors with their displays, 40mm fans, an AC/DC converter to charge the battery and finally a pico-UPS to allow uninterrupted use of the station when switching between power sources.

Because [Elad] didn’t have access to any machinery, PVC foam was used to maintain all the parts in place. Autonomy of his station is around 2.5hours on a single 12V 7Ah battery.

Disabling Under/over Voltage Protection On ATX Power Supplies

voltage

[C] just recently put together a RepRap. Not wanting to spend the money on a dedicated power supply, he looked around for a cheaper solution and found one in an off-the-shelf ATX computer power supply. These ATX supplies are actually a little finicky when not used in a computer, as [C] found, with voltage drops on the +12 line even when a load is connected to the supply. Undeterred, [C] eventually solved this problem by cutting some traces and grounding a few pins on the protection circuit.

The ATX supply [C] used could supply 25 amps on the 12 volt rail, more than enough for a simple RepRap. There was only one problem: the supply would randomly shut itself off, ruining the print. After a little googling, [C] found some people powering 12 volt amplifiers that were running into the same problem. Their solution was to ground a few pins on the protection circuit. Their supply wasn’t quite like [C]’s so he had to do a little experimentations.

It took a few iterations to get right, but [C] managed to figure out exactly which pins on the “power supply supervisor” IC must be grounded to disable the undervoltage protection. With these pins grounded, the protection circuit of the supply is completely disabled, giving him and uninterrupted 25 amps at 12 volts. If you’re looking for a cheap source of power, it would be hard to go wrong with [C]’s tutorial and his power supply of choice.

Open Activity Tracker Webcast

livedesign4

The Upverter team loves their FitBit activity tracking devices, but wanted access to raw data. They decided to build their own Open Activity Tracker that would pump data onto an SD card or to a Bluetooth device for processing.

The device uses MPU-9150 motion tracking IC to gather information on movement. This chip combines an accelerometer, gyro, and compass. It also does on-board processing, providing useful data to your host processor over I2C. The only bad news is that it’s a LGA package, which aren’t fun to solder by hand.

The design also has a SD card, Bluetooth module, pressure sensor, and e-ink display. These are all connected to a low power ARM microcontroller.

The team has been webcasting their design sessions, and tonight [Eric Evenchick] (that’s me) will be joining them as they try to cram all of these components onto a PCB. You can watch the live webcast starting at 8:30pm Eastern.

You can watch the previous design sessions after the break.

Continue reading “Open Activity Tracker Webcast”

Building A ‘high-end’ USB Audio DAC

As [Jan-Erik] had already built a simple USB connected Digital-to-Analog Converter (DAC), he decided to make the high-end version of it.

The prototype you see in the picture above is based on:

  • the PCM2707C from Texas Instruments which takes care of the USB communication and outputs I2S audio data
  • the PCM1794A, a 132dB SNR 24-bit 192kHz DAC which receives I2S protocol
  • the OPA4134, a high performance audio operational amplifier

The on-board +3.3V and -5V voltages are generated by inductor-less power supplies. As [Jan-Erik] mentions in his write-up, the ‘high-end’ was put between single quotes because the PCB is single sided and uses through hole passive components. The board was designed using Kicad, etched by himself and put in a machined enclosure. All the production files can be downloaded from his website so you may produce it within a day.

Building An Ethernet Connected RFID Reader

For the last few years, [Lt_Lemming] was the president of Brisbane’s hackerspace. Until several months ago, access to the local was done using 125KHz RFID tags and an Arduino board with a prototyping shield. As the hackerspace gained members and moved to bigger facilities, [Lt_Lemming] decided to build himself a more compact and advanced platform.

His Simple NetworkAble RFID Controller (SNARC) is a platform which can be connected to an Ethernet network and different RFID readers in order to implement smart access control functionalities. Through hole components were selected so even solder apprentices may assemble it. The PCB was designed using Fritzing, and development can even be done inside the Arduino IDE as ISP and serial headers are available on the board. Finally, an N-channel mosfet controls the door locking mechanism.

The project is open hardware and software, and all the sources can be downloaded from [Lt_Lemming]’s github repo.

Building An Audio Box Out Of Thrown Away Boards

The last time [Mark] was at the scrap yard, he managed to find the analogue input and output cards of an old Akai DR8 studio hard drive recorder. These cards offered great possibilities (8 ADC inputs, 12 DAC outputs) so he repaired them and made a whole audio system out of them.

The repair only involved changing a couple of low dropout regulators. Afterwards, [Mark] interfaced one of his CPLD development boards so he could produce some sine waves and digitize signals generated from a PC based audio test unit. He then made the frame shown in the picture above and switched to an Altera Cyclone IV FPGA. To complete his system, he designed a small board to attach a VGA screen,  and another to use the nRF24L01 wireless module.

Inside the FPGA, [Mark] used a NIOS II soft core processor to orchestrate the complete system and display a nice user interface. He even made another system with an USB host plug to connect MIDI enabled peripherals, allowing him to wirelessly control his creation.

Update: Whistled Platform Upgraded For Simple Word Recognition

Some people may remember the whistled platform I [limpkin] designed a while back, which recognizes different whistles to control your lighting. Recently, I designed a firmware that transforms the board into a word recognition device, as the 50MHz ARM Cortex M4’s processing capabilities are good enough to do so.

The simple algorithm works by correlating successive Fast Fourier Transforms (FFT) of the amplified microphone output with the FFTs of a template word previously stored in memory. Simply connect the Whistled to your power supply, say the word you’d like it to recognize and you’re good to go.

As you will see in the video embedded after the break (sorry for the accent…), I briefly explain basic principles about word/sound recognition and what you can do to improve your algorithm performances. The source files can be downloaded, as well as the code for my whistle detection algorithm which wasn’t available the first time we looked at the project.

Continue reading “Update: Whistled Platform Upgraded For Simple Word Recognition”