Am I A Cyborg Now? Achieving A Sixth Sense Through Tech


Fascinated by a story of how a magnetic implant imparted a “sixth sense” in its host, engineer and enthusiastic geek Marek Majkowski was eager to test this supplemental sense without the invasive surgery. With the help of cheap hardware like the Arduino and a little open-sourc code, he did just that.

Title image remixed from Makushin Alexey/Shutterstock.

Some time ago I’ve read about a guy that had a magnet implanted in the pinky finger.


The author seems to have made the implant mostly for fun only later he discovered that it sometimes “ticks” in and gives a “sixth sense”:

Photo by Dann Berg.

When people discuss magnet implants giving a “sixth sense,” this is what they’re talking about. I was working retail at the time, and I believe the first thing I noticed was the vibrations from the fan inside the cash register.

Later he discoverers more things about the environment:

The best part of having the magnet implant was discovering invisible magnetic fields when I wasn’t actually looking. The first experience I had with this was walking through the intersection of Broadway and Bleecker in Manhattan. I passed through this intersection a few times before realising that my finger would tingle at a certain spot. After paying a bit more attention, I realised that I was feeling something underground. At first, I assumed it was a subway car, but later came to the conclusion that it was most likely the subway power generator, or the giant fan that was cooling these generator.

Having a sixth sense sounds exciting, but implanting a piece of metal in your body is quite invasive. Even ignoring such details like finding a surgeon willing to perform the operation, the prospects of a possible magnet corrosion and not being able to get an MRI scan are major downsides.

Deciding that an implant may not be for me I started to wonder: why not to try “emulate” the thing? Of course, any kind of “emulation” is inferior to real sensation in your finger, but at least I will be able to figure out if the whole idea is worthwhile without cutting myself.

Tinkering mode: ON

Devices that are used to detect magnetic fields are called magnetometers. They are quite common spread — detecting magnetic field direction is exactly what compasses do. And most likely you have one in your phone.

Having previously played with Arduino I thought about building a very simple device that could be worn and would notify the user about magnetic field fluctuations.

From Dann’s post I understand that he can only sense field fluctuations, but having a computer I’m able to detect more sophisticated changes in the field.

Hardware setup

So I decided to start simple — Arduino, with a magnetometer connected to it and a simple buzzer. I decided to re-use my iPod armband and wear the device on my left arm. The device will count the absolute strength of the magnetic field and if it is stronger than threshold inform me with the buzzer. I guess that’s called wearable computing nowadays.

Magnetometer

I’m not an electrical engineer, even simple tasks like getting data from the magnetometer might be problematic in an Arduino world. Luckily I found a blog post describing an Arduino talking to a simple magnetometer. The magnetometer unit in use is HMC6352. For $US35 it’s expensive — but at least it’s very simple.


The chip is simple, works with Arduino out of the box and accepts input voltage in a scale perfect for this project 2.7V-5.2V. But unfortunately it was not good enough for my usage — readings from only two axis were inconsistent and I often missed interesting facts due to the lack of the third axis.

My next choice was HMC5883L for $US15. The decent alternative might be MAG3110 for the same price but a bit more sensitive. I chose HMC due to a better documentation, namely this blog post.

The big problem with those chips is voltage — both operate in around 2V – 3.6V range (not the usual 5V as in USB).

Arduino

Wearing a normal Arduino Uno Board is not practical, fortunately there are many alternatives. I chose Arduino LilyPad Simple. On hindsight, Arduino Fio or Pro Mini might have been better options.

LilyPad can be powered with either from a Li-Po battery or from an USB (FTDI) interface. The latter is mostly useful for development. Most importantly, LilyPad does not provide a 3.3V power output like Uno Board does.

Our precious magnetometer HMC5883L will blow up when powered with 5V. In order to comprehend that I used a voltage regulator from LM1117 family. I got 3.3V one, as that was the only thing available in shop at a time.

With a regulator used to power magnetometer I could connect it to LilyPad and power it either from Li-Po battery and from USB.

Oh, it’s worth noting that the regulator is useful even when using Li-Po battery as a power source — although the battery is rated as 3.7V, according to Wikipedia you should expect voltage ranging from 2.7V when discharged to 4.23V when charged.

Buzzer

Sorting out the buzzer was simple; SparkFun provide ready-to-use buzzers crafted for LilyPad.

Soldering time

To be frank, the electronics here aren’t very sophisticated, here’s a schema (with power supply omitted):

Unfortunately this setup didn’t work very well. Once the buzzer was turned on, the magnetometer stopped working. This happened only when powered from battery (not from USB).

I suspected there might be a voltage drop when the motor in the buzzer is started, and the magnetometer is a sensitive beast. To compensate that I added a capacitor between the VCC and GND pins on the HMC5883. This seems to solve the problem, but frankly I don’t know if that’s correct. I don’t know if it’s legal to put a capacitor behind LM1117 regulator. Maybe the capacitor should be plugged in near the battery. (Dear lazyweb: help!)

Updated schema:


Schema with an extra capacitor

The final result (including the battery):

The result!

Software

The program for Arduino is available on my github (but don’t expect high quality software).

One of the more interesting parts is setting up the magnetometer, the hardcoded values are taken from the HMC5883L datasheet:

void setupHMC5883L(){
        compass.SetScale(8.1);
        compass.SetRegisterA(0, 5, 0);
        compass.SetMeasurementMode(Measurement_Continuous);
}

I’m not really interested in the direction of Earth’s magnetic north, only in the absolute strength of the magnetic field. To get that I’m using the Euclidean distance function:

        return sqrt(scaled.XAxis * scaled.XAxis +
                    scaled.YAxis * scaled.YAxis +
                    scaled.ZAxis * scaled.ZAxis);

And that’s basically it. In fact the program doesn’t do much: continuously reads data from the magnetometer and if the strength of the magnetic field goes above the threshold it turns on the buzzer with proportional power.

The threshold must be set quite carefully to cut off Earth’s magnetic field, which is between 0.25 – 0.65 Gauss. I used the threshold of 0.7 Gauss.

Results


Am I a cyborg now?

I wore the device for some time and it actually works. I quickly found out that the buzzer needs to be directly touching the skin to be felt.

(Side note: wearing naked electronics may freak out people on the streets, I don’t recommend that).

When wearing the device I could feel “stuff”, mostly electrical devices. Friends were laughing at me when during a walk I was stopping suddenly and doing few steps back to identify the source of the magnetic field (it was usually a utility box). There were also places where I couldn’t identify the source of the field.

After all that, I agree that being able to feel the magnetic field is a great fun.

Am I a cyborg now? [Marek’s totally not insane idea of the day]

After fruitful encounters with topics as programmingindustrial robots or exploiting every hidden feature ofTCP/IP options for tracing networking traffic, Mareksettled for ‘scalability’ as his main field ofinterest, one that he attacks with a magic swordlabeled ‘asynchrony’. He likes to keep asking ‘Does itscale?’Marek enjoys London, though he had to trade ridingmotorbike in Warsaw for daily commuting by tube.


The Cheapest NBN 50 Plans

Here are the cheapest plans available for Australia’s most popular NBN speed tier.

At Lifehacker, we independently select and write about stuff we love and think you'll like too. We have affiliate and advertising partnerships, which means we may collect a share of sales or other compensation from the links on this page. BTW – prices are accurate and items in stock at the time of posting.

Comments


9 responses to “Am I A Cyborg Now? Achieving A Sixth Sense Through Tech”

Leave a Reply