Modular Blocks Help Fight Disease

When engineering a solution to a problem, an often-successful approach is to keep the design as simple as possible. Simple things are easier to produce, maintain, and use. Whether you’re building a robot, operating system, or automobile, this type of design can help in many different ways. Now, researchers at MIT’s Little Devices Lab have taken this philosophy to testing for various medical conditions, using a set of modular blocks.

Each block is designed for a specific purpose, and can be linked together with other blocks. For example, one block may be able to identify Zika virus, and another block could help determine blood sugar levels. By linking the blocks together, a healthcare worker can build a diagnosis system catered specifically for their needs. The price tag for these small, simple blocks is modest as well: about $0.015, or one and a half cents per block. They also don’t need to be refrigerated or handled specially, and some can be reused.

This is an impressive breakthrough that is poised to help not only low-income people around the world, but anyone with a need for quick, accurate medical diagnoses at a marginal cost. Keeping things simple and modular allows for all kinds of possibilities, as we recently covered in the world of robotics.

Continue reading “Modular Blocks Help Fight Disease”

Location Sharing With Google Home

With Google’s near-monopoly on the internet, it can be difficult to get around in cyberspace without encountering at least some aspect of this monolithic, data-gathering giant. It usually takes a concerted effort, but it is technically possible to do. While [Mat] is still using some Google products, he has at least figured out a way to get Google Home to work with location data without actually sharing that data with Google, which is a step in the right direction.

[Mat]’s goal was to use Google’s location sharing features through Google Home, but without the creepiness factor of Google knowing everything about his life, and also without the hassle of having to use Google Maps. He’s using a few things to pull this off, including a NodeRED server running on a Raspberry Pi Zero, a free account from If This Then That (IFTTT), Tasker with AutoRemote plugin, and the Google Maps API key. With all of that put together, and some configuration of IFTTT he can ask his Google assistant (or Google Home) for location data, all without sharing that data with Google.

This project is a great implementation of Google’s tools and a powerful use of IFTTT. And, as a bonus, it gets around some of the creepiness factor that Google tends to incorporate in their quest to know all the data.

Continue reading “Location Sharing With Google Home”

Build Your Own Avionics Suite, If You Dare

If you’re really interested in aircraft and flying, there are many ways to explore that interest. There are models of a wide range of sizes and complexities that are powered and remote-controlled, and even some small lightweight aircraft that can get you airborne yourself for a minimum of expense. If you’re lucky enough to have your own proper airplane, though, and you’re really into open source projects, you can also replace your airplane’s avionics kit with your own open source one.

Avionics are the electronics that control and monitor the aircraft, and they’re a significant part of the aircraft’s ability to fly properly. This avionics package from [j-omega] (who can also be found on hackaday.io) will fit onto a small aircraft engine and monitor things like oil temperature, RPM, coolant temperature, and a wide array of other features of the engine. It’s based on an ATmega microcontroller, and has open-source schematics for the entire project and instructions for building it yourself. Right now it doesn’t seem like the firmware is available on the GitHub page yet, but will hopefully be posted soon for anyone who’s interested in an open-source avionics package like this.

The project page does mention that this is experimental as well, so it might not be advised to use in your own personal aircraft without some proper testing first. That being said, if you’ve heard that warning and have decided just to stay on the ground, it’s possible to have a great experience without getting in a real airplane at all.

Antique Lighthouse Lens Via CNC

Before the invention of the high-powered LED, and even really before the widespread adoption of electric lights in general, lighthouses still had the obligation of warning ships of dangers while guiding them into various safe harbors. They did this with gas lights and impressive glass lenses known as Fresnel lenses which helped point all available light in the correct direction while reducing weight and material that would otherwise be used in a conventional lens.

Now, a company in Florida is using acrylic in reproductions of antique Fresnel lenses. At first glance, it seems like acrylic might not be the best substitute for glass, but the company is able to achieve extreme precision using a CNC machine and then polishing and baking the acrylic which makes it transparent and excellent for use in lighthouse lenses like this. The reproduction lenses are built out of brass, and the lens elements are glued in place with a special adhesive. It’s a convincing replication worthy of use in any lighthouse.

Be sure to check out the video below to see how these lenses are built, and although we’re not entirely sure what exactly is being sprayed on the lenses when they are being polished, perhaps someone in the comments section can illuminate that for us. Of course, there are other uses for Fresnel lenses than in lighthouses, and we’ve seen some great examples of them put to use for many different applications.

Continue reading “Antique Lighthouse Lens Via CNC”

Modular Robotics: When You Want More Robots In Your Robot

While robots have been making our lives easier and our assembly lines more efficient for over half a century now, we haven’t quite cracked a Jetsons-like general purpose robot yet. Sure, Boston Dynamics and MIT have some humanoid robots that are fun to kick and knock over, but they’re far from building a world-ending Terminator automaton.

But not every robot needs to be human-shaped in order to be general purpose. Some of the more interesting designs being researched are modular robots. It’s an approach to robotics which uses smaller units that can combine into assemblies that accomplish a given task.

We’ve been immersing ourselves in topics like this one because right now the Robotics Module Challenge is the current focus of the Hackaday Prize. We’re looking for any modular designs that make it easier to build robots — motor drivers, sensor arrays, limb designs — your imagination is the limit. But self contained robot modules that themselves make up larger robots is a fascinating field that definitely fits in with this challenge. Join me for a look at where modular robots are now, and where we’d like to see them going.

Continue reading “Modular Robotics: When You Want More Robots In Your Robot”

Open-source Circuit Simulation

For simple circuits, it’s easy enough to grab a breadboard and start putting it together. Breadboards make it easy to check your circuit for mistakes before soldering together a finished product. But if you have a more complicated circuit, or if you need to do response modeling or other math on your design before you start building, you’ll need circuit simulation software.

While it’s easy to get a trial version of something like OrCAD PSpice, this software doesn’t have all of the features available unless you’re willing to pony up some cash. Luckily, there’s a fully featured free and open source circuit simulation software called Qucs (Quite Universal Circuit Simulator), released under the GPL, that offers a decent alternative to other paid circuit simulators. Qucs runs its own software separate from SPICE since SPICE isn’t licensed for reuse.

Qucs has most of the components that you’ll need for professional-level circuit simulation as well as many different transistor models. For more details, the Qucs Wikipedia page lists all of the features available, as does the project’s FAQ page. If you’re new to the world of circuit simulation, we went over the basics of using SPICE in a recent Hack Chat.

Thanks to [Clovis] for the tip!

Unlocking Drones With Go

Looking for a first project in a relatively new language that’ll stretch your abilities? [Ron] was, so he hacked a commercially available drone and opened up a lot of its functionality, while writing the client software in Go.

The drone is a DJI Tello, which has some impressive hardware like a 14-core Intel processor and excellent video processing abilities. There’s also a vibrant community and a lot of support, making it the ideal platform for a project like this. It communicates to a base station via WiFi, and using some tools like the Wireshark [Rob] was able to decipher a lot of the communications and create a whole new driver for the drone. While the drone can be controlled in the traditional way, users can also write programs to control the drone as well.

The project is both an impressive feat in reverse engineering an inexpensive drone, and a fun example of programming in the Go language. Because of the fun and excitement of drones, they have become a popular platform on which to hack, from increasing their range to becoming a platform for developing AI.