Custom Sensor Head Turns 3D Printer Into Capacitive Scanner

The best thing about owning a 3D printer or CNC router may not just be what you can additively or subtractively create with it. With a little imagination you can turn your machine into a 3D scanner, and using capacitive sensors to image items turns out to be an interesting project.

[Nelson]’s scanner idea came from fiddling with some capacitive sensors at work, and with a high-resolution capacitance-to-digital sensor chip in hand, he set about building a scan head for his printer. In differential mode, the FDC2212 sensor chip uses an external LC tank circuit with two plain sensor plates set close to each other. The sensor plates form an air-dielectric variable capacitor, and the presence of an object can be detected with high sensitivity. [Nelson]’s custom sensor board and controller ride on a 3D-printed bracket and scan over the target on the printer bed. Initial results were fuzzy, but after compensating for room temperature variations and doing a little filtering on the raw data, the scans were… still pretty fuzzy. But there’s an image there, and it’s something to work with.

Need a slightly more approachable project to get your feet wet with capacitive sensors? Maybe you should use your phone’s touchscreen as a 2D-capacitive scanner.

[via r/electronics]

Raspberry Pi Home Automation For The Holidays

When you want to play around with a new technology, do you jump straight to production machinery? Nope. Nothing beats a simplified model as proof of concept. And the only thing better than a good proof of concept is an amusing proof of concept. In that spirit [Eric Tsai], alias [electronichamsters], built the world’s most complicated electronic gingerbread house this Christmas, because a home-automated gingerbread house is still simpler than a home-automated home.

fya59blixaq00y3-largeYeah, there are blinky lights and it’s all controlled by his smartphone. That’s just the basics. The crux of the demo, however, is the Bluetooth-to-MQTT gateway that he built along the way. A Raspberry Pi with a BTLE radio receives local data from BTLE sensors and pushes them off to an MQTT server, where they can in principle be read from anywhere in the world. If you’ve tried to network battery-powered ESP8266 nodes, you know that battery life is the Achilles heel. Swapping over to BTLE for the radio layer makes a lot of sense.

Continue reading “Raspberry Pi Home Automation For The Holidays”

Flexible, Sensitive Sensors From Silly Putty And Graphene

Everyone’s favorite viscoelastic non-Newtonian fluid has a new use, besides bouncing, stretching, and getting caught in your kid’s hair. Yes, it’s Silly Putty, and when mixed with graphene it turns out to make a dandy force sensor.

To be clear, [Jonathan Coleman] and his colleagues at Trinity College in Dublin aren’t buying the familiar plastic eggs from the local toy store for their experiments. They’re making they’re own silicone polymers, but their methods (listed in this paywalled article from the journal Science) are actually easy to replicate. They just mix silicone oil, or polydimethylsiloxane (PDMS), with boric acid, and apply a little heat. The boron compound cross-links the PDMS and makes a substance very similar to the bouncy putty. The lab also synthesizes its own graphene by sonicating graphite in a solvent and isolating the graphene with centrifugation and filtration; that might be a little hard for the home gamer to accomplish, but we’ve covered a DIY synthesis before, so it should be possible.

With the raw materials in hand, it’s a simple matter of mixing and kneading, and you’ve got a flexible, stretchable sensor. [Coleman] et al report using sensors fashioned from the mixture to detect the pulse in the carotid artery and even watch the footsteps of a spider. It looks like fun stuff to play with, and we can see tons of applications for flexible, inert strain sensors like these.

Continue reading “Flexible, Sensitive Sensors From Silly Putty And Graphene”

Detecting Water With And Without Headaches

In Texas — at least around Houston — we don’t have basements. We do, however, have bilges. Both of these are subject to taking on water when no one is paying attention. A friend of mine asked me what I thought of an Instructable that showed how to make a water sensor using a few discrete components. The circuit would probably work — it relied on the conductivity of most water to supply enough current to a bipolar transistor’s base to turn it on.

It is easy to overthink something like this, so I told my friend he should go with something a little more old-fashioned. I don’t know the origin of it, but it is older than I am. You can make a perfectly good water detector with things you probably already have around the house. My point isn’t that you should (or shouldn’t) construct a homemade water sensor. My point is that you don’t always need to go to the high-tech solution.

Continue reading “Detecting Water With And Without Headaches”

Biologically Inspired Sensors Turned Into Silicon

For the last three and a half Billion years, evolution has built sensors. The nerves on your fingertips are just as good as any electronic touch sensor, a retina is able to detect a single photon, and the human ear is more finely tuned than the best microphones.

At the 2016 Hackaday SuperConference, Dr. Christal Gordon, educator and engineer, talked about the hardware behind our wetware. While AI researchers are still wondering if they have to define consciousness, there’s still a lot that medicine, psychology, and neuroscience can teach us about building better hardware with simple tools, just like nature has been doing for Billions of years.

Continue reading “Biologically Inspired Sensors Turned Into Silicon”

Ikea Desk Lamp That Will Defend Your Lungs

While some people may enjoy the occasional whiff of noxious smells — gasoline, axe body spray, etc — prolonged exposure to fumes is not good for your health. This goes for soldering too, isn’t it about time you added some abatement to your bench tools?

Inspired by some of the fume hoods we’ve featured before — take note, ye who art lacking projects — [Georg Sluyterman] put together his own Ikea lamp fume extractor.

The most striking feature is that it’s mounted on an Ikea desk lamp making for convenient positioning and minimal clutter. A NeoPixels strip lights up your soldering space while the PIR sensor activates the fan when it detects movement. A WeMos D1 Mini is included for WiFi connectivity but that feature still down the road a little bit. The functionality that is in place is still quite impressive; more on that after the break.

Continue reading “Ikea Desk Lamp That Will Defend Your Lungs”

DIY I2C Devices With ATtiny85

[Pawel] has a weather station, and its nerve-center is a Raspberry Pi. He wanted to include a light sensor but the problem is, the Pi doesn’t have a built-in ADC to read the voltage off the light-dependent resistor that he (presumably) had in his junk box. You can, of course, buy I2C ADC chips and modules, but when you’ve already got a microcontroller that has ADC peripherals on board, why bother?

[Pawel] wired up a tremendously simple circuit, downloaded some I2C slave-mode code, and added an LED for good measure. It’s all up on GitHub if you’re interested.

cropped_shot_2016-10-21-112958
Bright by Day, Dark by Night!

We’re covering this because we rarely see people coding for I2C slave devices. Everyone and their mom uses I2C to connect to sensors, for which the Arduino “Wire” library or “i2c-tools” on the Pi do just fine. But what do you do when you want to make the I2C device? [Pawel]’s project makes use of TinyWireS, a slave-mode SPI and I2C library for AVR ATtiny Arduino projects.

Here, [Pawel] just wanted a light sensor. But if you’re building your own devices, the sky is the limit. What’s the most esoteric I2C sensor that you can imagine? (And is it really the case that we haven’t seen an I2C slave device hack since 2010?)