Talking Ohmmeter Also Spits Out Color Bands For You

If you’ve got a resistor and you can’t read the color bands (or they’re not present), you can always just grab a multimeter and figure out its value that way. [Giacomo Yong Cuomo] and [Sophia Lin] have built an altogether different kind of ohmmeter, that can actually spit out color values for you, and even read the resistance aloud. It’s all a part of their final project for their ECE 4760 class.

The build is based around a Raspberry Pi Pico. It determines the value of a resistor by placing it in a resistor divider, with the other reference resistor having a value of 10 kΩ. The resistor under test is connected between the reference resistor and ground, while the other leg of the reference resistor is connected to 3.3 V. The node between the two resistors is connected to the Pi Pico’s analog-to-digital converter pin. This allows the Pico to determine the voltage at this point, and thus calculate the test resistor’s value based on the reference resistor’s value and the voltages involved.

A large fake resistor provides user feedback. It’s filled with addressable LEDs, which light up the appropriate color bands depending on the test resistor’s value. It’s capable of displaying both 3-band, 4-band, and 5-band color configurations. While six-band resistors do exist, the extra band is typically used for denoting temperature coefficients which can’t readily be determined by this simple test. It can also play audio files to announce the resistance value over a speaker.

It’s a neat project that surely taught the duo many useful skills for working with microcontrollers. Plus, it’s kinda fun — we love the big glowing resistor. We’ve featured some other fancy resistors before, too!

Continue reading “Talking Ohmmeter Also Spits Out Color Bands For You”

Mailblocks Makes Your Phone Work More Like The Post, Kinda?

Phones can be distracting, with notifications popping up all the time to snare our attention and maybe even ruin our lives. [Guy Dupont] wishes to be no slave to the machine, and thus built a solution. Enter Mailblocks.

The concept is simple. It’s a physical mailbox which [Guy] can put his phone in. All notifications on the phone are blocked unless he puts his phone into the box. When the phone is inside and the box is closed, the little red flag goes up, indicating “DOPAMINE” is available, and [Guy] can check his notifications.

To achieve this, [Guy] is running a custom DNS server. It redirects all the lookups for push notifications on Android so they go nowhere. Placing the phone in the mailbox turns the re-directions off, so the phone can contact the usual servers and get its notifications as normal.

It’s a novel way of fighting against the constant attention suck of modern smartphones. Rather than being bombarded by notifications in real time, [Guy] instead has to take a significant intentional physical action to check the notifications. It cuts the willpower required and the interruptions to his work in a fell swoop.

We’ve featured [Guy’s] innovative and outside-the-box projects before, too. His smart pants were an absolute tour de force, I might add.

Continue reading “Mailblocks Makes Your Phone Work More Like The Post, Kinda?”

DIY Pneumatic Actuator Does Great In Action

Pneumatic actuators can be powerful and fast, making them very useful for all kinds of mechanical jobs. [Michael Rechtin] decided that while he could buy them off-the-shelf, he preferred to see if he could make his own via 3D printing. Despite the challenges, he succeeded!

Part of his success is because he knew when to take advantage of the strengths of 3D printed parts, and where they wouldn’t perform so well. To that end, the main body of the cylinder is actually a piece of PVC pipe. That’s because manufactured PVC pipe is far smoother and more regular than what you could reasonably achieve with a most 3D printers. The end caps, however, were printed and tapped to take standard air fittings. The piston was printed too, fitted with a steel cylinder rod and O-rings for sealing.

The double-acting cylinder performed remarkably well in testing, easily skewering an orange. The initial version did leak a touch, but later revisions performed better. Springs were also fitted for damping hits at either end which improved longevity, with a test rig racking up over 10,000 cycles without failure.

We love a design that is both easy to build at home and capable of great performance. We’ve featured some neat open-source pneumatic builds before, too.

Continue reading “DIY Pneumatic Actuator Does Great In Action”

Infrared Following Robot Built As Proof-of-Concept For Autonomous Luggage

Once upon a time, the poor humans of the past had to lug around suitcases and trunks with their own arms. Then, some genius figured out that you could just put wheels on and make everyone’s life a million times easier. Now, what if you didn’t even have push, because your luggage could just follow you instead? Well, students [Yuqiang Ge] and [Yiyang Zhao] have figured out a proof of concept for how that could work.

Their build is a small robotic platform that they assembled for their ECE5730 final project. The tiny wheeled robot is programmed to rotate on the spot until its infrared sensors pick up a signal. In turn, the user is intended to carry an infared beacon for it to lock onto. A pair of sensors are used on the robot platform, separated by a board to serve as a blind. The robot determines the relative signal strength from each sensor, and uses that to vary PWM signals to the two DC drive motors to steer the robot platform to seek and follow the infrared beacon.

It’s a neat idea, and looks to work pretty well in a university corridor. It even has an ultrasonic range sensor to (ideally) stop when it gets too close to the user. Whether it would survive the tumult of a crowded airport is another thing entirely, but that’s what the engineering process is about. Indeed, the very concept has been commercialized already!

Following-robots are a common student project, and one well worth exploring if you’re new to the robotic field.

Continue reading “Infrared Following Robot Built As Proof-of-Concept For Autonomous Luggage”

Digital Bike Horn Will Play Custom Sounds, Please Be Tasteful

When you’re out riding your bike, a horn can be a useful warning device to other road users and pedestrians alike. It can also be a source of fun and amusement, or annoyance, depending on the sounds it makes and how you use it. For the ultimate flexibility, you might like this digital bicycle horn that offers customizable sounds, as developed by [gokux].

The build has attractive two-tone components, consisting of a button pad for playing four sounds, and a sound module with a 3 watt speaker and battery pack. A Seeed Studio XIAO SAMD21 is the heart of the operation, with the microcontroller paired with a DFPlayer Mini which handles sound duties. When one of the four buttons is pressed, the microcontroller loads the relevant sound off an SD card, and plays it out over the speaker. For power, the build uses a lithium rechargeable battery with a healthy 1200 mAh capacity, which can be readily recharged thanks to a TP4056 charger module with a USB-C port.

It’s a nifty little build, and we love the Metal Gear Solid sounds. Though, we do wonder just how audible that 3 watt speaker is. If it proves inadequate, you could always step up to a much larger driver paired with a hefty audio amp if you so desire.

Continue reading “Digital Bike Horn Will Play Custom Sounds, Please Be Tasteful”

Raspberry Pi Pico Becomes MIDI-Compatible Synth

ECE 4760 is a microcontroller course that runs at Cornell every year, and it gives students a wide remit to pursue various kinds of microcontroller projects. [Pelham Bergesen] took the class and built himself a MIDI-controllable synthesizer out of a Raspberry Pi Pico.

[Pelham] coded a library to parse MIDI messages on the Pico, with the microcontroller’s UART charged with receiving the input data. MIDI is basically just serial at a baud rate of 31.25k, with a set message structure, after all. From there, the Pico takes the note data and plays the relevant frequencies by synthesizing square waves using a PWM output. A second PWM channel can also be blended with the first to generate more complex tones.  The synthesizer is designed to be used with a source of MIDI note data such as a keyboard controller; [Pelham] demonstrates the project in use with a Roland JD-XI. It’s a fairly basic synthesizer, but [Pelham] does a good job of explaining all the steps required to get this far. If you’ve never done an audio or MIDI project before, you might find his guide very helpful for the way it steps through the basics.

[Pelham] didn’t get to implement fancier features like direct digital synthesis (DDS) or analog audio effects before the class closed out. However, that would be an excellent project for anyone else developing their own Pico synthesizer. If you whip up something that sounds good, or even just interesting, be sure to notify us on the tipsline. Video after the break.

Continue reading “Raspberry Pi Pico Becomes MIDI-Compatible Synth”

$30 Guitar Build Shows What You Can Do With Amazon Parts

Most guitarists buy their axes fully assembled from big names like Fender, Gibson, and… maybe Yamaha? Sure. But there are a dedicated set that relish in mixing and matching parts and even building and assembling their own instruments. [Danny Lewis] decided to see what he could do with the cheapest guitar parts from Amazon and a body of his own design, and he put together something pretty passable for just $30.

The wood for the body was cut on a bandsaw, and was essentially free scrap sourced from old furniture. [Danny] went for an unconventional design using a roughly Telecaster outline and large cutouts either side of the bridge. The neck was free, by virtue of being an old Harmony neck sourced off Craigslist. We’d have preferred to see what could be done with a cheap Amazon neck, but it nonetheless fits the vibe of the build.

The guitar then received a $9.99 pickup and controls, an $8.80 solidtail bridge, and $11 tuning machines for the headstock. Strung up, it actually sounds passable. We’d want to throw it on a proper amp and give the whole thing a setup before fully assessing it, but hey, for $30, it’s hard to go wrong.

We do love some hacky guitars around here; we’ve even featured some with surprise effects gear built into the bodies. Video after the break.

Continue reading “$30 Guitar Build Shows What You Can Do With Amazon Parts”