An Exceptionally Small UV Sensor

Most of the hacks we see hitting the tip line are exactly that – hacked up hardware projects held together with hot glue and duct tape. [x-labs]’ entry for the 2015 Hackaday Prize, the UV badge, is certainly not one of these projects. It’s a professional one-off, capable of displaying the UV index, temperature, humidity, and pressure in one tiny little enclosure.

The UV badge is designed to be used outdoors. This means any old display ripped from a Nokia phone won’t do; that will wash out in the sun. Instead, [x-labs] is using a very sunlight-readable Sharp Memory LCD. A nice choice, as it’s an exceptionally low-power device.

Inside the 54 x 34 x 7.1 mm 3D printed enclosure is a very thin PCB, and all surface-mount components. The device is powered by a single coin cell battery that should give months of run time.

With a product designed so well, we’re wondering if the UV badge will be in the running for the Best Product category of the Hackaday Prize this year. There aren’t many projects in the running, and the winner gets a enough funding, machinery, and experience to turn their project into a product.


The 2015 Hackaday Prize is sponsored by:

Excruciating Quest Turns Chromebook Pixel IPS Into Exquisite Extra Monitor

[Shen] wanted an extra monitor at his desk, but not just any monitor. He wanted something particularly special and unquestionably refined. Like any super-power-possessing engineer he set out to scratch his hacking itch and was sucked into a multi-year extravaganza. For the love of everything hardware we’re glad this one came in on the weekend. If we had spent all that time drooling during a weekday we’d be so far behind.

The final product is a desktop monitor on an articulated arm. It features a Chromebook Pixel’s IPS display in a custom-crafted case everything. The journey started out with two different LCD units, the first from a Dell L502x replacement display using a generic LVDS board. The results were meh; washed out colors and obvious pixellation, with display adjustments that left [Shen] with a grimace on his mug. Installment two was an iPad Retina display. This iteration required spinning his own boards (resulting in [Shen’s] discovery of OSH Park). Alas, 9.7″ was too small coupled with short-cable-requirements making this version a no-go.

chromebook-pixel-ips-driver-boardAnd so we arrive at the meat and potatoes of this one. [Shen] identified the IPS LCD display on Google’s first Chromebook Pixel laptop as the object of his desire. The hack takes him through sourcing custom display cables, spinning rev after rev of his own board, and following Alice down the rabbit hole of mechanical design. Nothing marginal is good enough for [Shen], we discovered this with his project to get real audio out of a computer. He grinds away at the driver board, the case design, the control presentation, and everything else in the project until perfection was reached. This work of art will stand the test of time as a life fixture and not just an unappreciated workhorse.

This one is not to me missed. Head over to [Shen’s] project entry on Hackaday.io (don’t forget to give him a skull for this) and his blog linked at the top. We need to celebrate not only the people who can pull off such amazing work. But also the ones who do such a great job of sharing the story both for our enjoyment, and to inspire us.

Measuring Temperature On An AVR Without A Sensor

There are a few AVR microcontrollers with onboard temperature sensors. These temperature sensors are neither accurate nor precise, but they do work for a few use cases. [Thomas] came up with a little bit of code that runs on all AVR microcontrollers, and is at least as accurate as the sensors in the rare AVRs that have them.

Although not all AVRs have a temperature sensor, they do all have RC oscillators, and these RC oscillators are temperature sensitive. By combining the RC oscillator and watchdog timer, [Thomas]’ code can get a vague idea if it’s getting hotter or colder.

To prove his code works, [Thomas] took an ATtiny13A chip loaded up with a few bits of code and placed a heated coin on it. The chip was programmed to turn on an LED when it detected a rise in temperature, and predictably, the LED lit up. With a coin chilled in a bowl of ice water, another bit of code ran, flashing the LED.

While we’re sure it’s neither accurate nor precise, it does have its uses – overheating protection or a simple thermostat. You can check out a video of the code in action below.

Continue reading “Measuring Temperature On An AVR Without A Sensor”

Hackaday Events: NY, LA, SF, LA

We are doing a lot this spring to get people elbow-deep in hardware hacking. We have so many live events coming up that we’re going to be doing Saturday morning recaps to keep you informed. Here are the upcoming events should be planning to attend if you’re nearby.

nyc-hackationToday! NYC Hardware Hackathon

We hope you didn’t miss our announcements about the Hardware Hackathon we’re putting on in New York. It starts this afternoon and runs all night and into Sunday. If you really want to get in on the hacking we might be able to help you out (hit us up on Twitter). But you can also show up on Sunday to see the results live. Tickets for that are available here.

thp-worldwide-laMay 9 & 10 Hackaday Prize Worldwide: Los Angeles

Next weekend we open up the Hackaday Design Lab of Pasadena, California for a workshop, talks, and a day of hacking. This is the Hackaday Prize Worldwide: Los Angeles. Start out on Saturday with the Zero to Product workshop which will discuss getting from design to production. Interspersed with this are a set of talks from amazing presenters before a bit of social time at night. On Sunday we open our doors for Free Build and hope to see a ton of people working on their Hackaday Prize entries. RSVP now!

2015-05-01_BAMF-meetupSaturday, May 16 BAMF Meetup

Seeing everything at Bay Area Maker Faire means a lot of time on your feet. By the end of the day the Hackaday Crew is ready to take a load off and toss back a tasty beverage. We invite you to join us on Saturday, May 16th starting at 7pm. All the cool kids will be there so please RSVP now.

It’s not compulsory, but a lot of people bring hardware they’ve been working on to show off at this meetup and you should too!

layerone-logoMay 23 & 24 LayerOne Conference

Every year our friends from NullSpace Labs organize the LayerOne Conference in Los Angeles. This is LA’s premier hardware security conference. This year Supplyframe is sponsoring the badges and Hackaday will be camped out at the Hackaday Hardware Villiage.

[Brian Benchoff] and [Mike Szczys] will be hacking their own badges while looking for awesome hacks other people are pulling off. We’ll bring plenty of swag and want to get everyone there to try at least some level of badge hack.

Hackaday Prize Entry: BS Free USB

Take a look at some old electronics magazines, or even a few blog posts from 10 years ago, and you’ll notice something strange: parallel ports. Those big ‘ol DB25 were the way to get bits out of a computer and into a microcontroller. There was a reason for this: it was exceptionally easy to do.

Now, we have USB to deal with, and that means VIDs and PIDs, drivers, enumeration, and a whole bunch of cruft that makes blinking an LED a surprisingly complicated process. [Colin O’Flynn]’s project for the 2015 Hackaday Prize aims to fix that with BSU – BS Free USB.

Instead of USB to serial chips attached to another microcontroller, [Colin] is using a few microcontrollers with a built-in USB interfaces. These chips are loaded up with firmware and controlled with a simple API on the computer side. If you want to blink a pin, just add a library to your project and set the pin high. Want some SPI on your computer? That’s just setting a few pins as MOSI, MISO, and SCK and typing in a few bytes. It’s basically a $2 Bus Pirate that you can stick into any project.

If [Colin]’s name sounds familiar in the context of The Hackaday Prize, it’s because he won second place with the ChipWhisperer last year. While a tiny USB thing isn’t quite as cool as a tool to break embedded encryption, the BSU certainly seems more useful to millions of hardware tinkerers around the world.


The 2015 Hackaday Prize is sponsored by:

A Custom, Workshop Squeezebox

Launched over 10 years ago, the Squeezebox was one of the most popular network streaming devices sold. The idea was simple: put some MP3s on a computer, connect the Squeezebox to a LAN, and stream those tunes. Someone at Logitech had the brilliant idea that MP3s and other audio files should be stored in an online service a while back, something that didn’t sit well with [Richard]. He went out and built his own Squeezebox with a Raspberry Pi, out of an ammo box, no less.

Most of the project is based on another Squeezebox Raspi mashup over at Instructables. This was a wall-mounted project, and not encased that keeps 7.62 ammunition secure during transport. It did, however, provide enough information for [Richard] to use in his project.

To make his Squeezebox look a little more industrial and sturdy, he cut a few holes in a NATO ammo can for speakers, a TFT touchscreen display, and a USB charger port. Inside, a pair of powered speakers, a USB hub, and a powerbank were added, making this a portable streaming solution that can take a beating.

3D Printed Headgear Turns You Into A Sim

Stop what you’re doing and dust off that 3D Printer, you’re going to want this headgear for your next party. [Daniel Harari] has created the perfect start of a phenomenal The Sims costume with this Bluetooth-enabled plumb bob.

The iconic crystalline shape will be familiar to anyone ever exposed to the game. It served as a handle and indicator for each virtual character in the popular life-simulation video game. On a short build deadline (a party), [Daniel] found a model of the shape he wanted on Thingiverse. He printed it in translucent green PLA so that LEDs inside would make it glow.

A headband and an aluminum pipe connect this to the wearer. Inside the printed enclosure is a an intricately packaged set of electronics that include an Arduino pro mini, low-side transistors to control six RGB LEDs, and an HC-05 Bluetooth module to connect to his phone. Batteries were mounted on the side of the pipe but we bet a bit of head scratching could re-imaging the battery type and get it inside the enclosure as well.

[Daniel] muses about adding brainwave sensing to control the LEDs. For this build he didn’t even need to write an app; he was able to get an already available color-picker to work. We’d like to see this combined with sentiment; a concept starting to gain popularity which samples social media and ascertains mood to change the display base what is found.

You realize what’s missing from his writeup? We couldn’t find any pictures of him wearing the thing!