Introduction: DIY Breath Sensor With Arduino (Conductive Knitted Stretch Sensor)

About: Hi! I'm an interdisciplinary artist experimenting with interactive electronic technologies to investigate the dynamic acts of listening, communicating and moving.

This DIY sensor will take the form of a conductive knitted stretch sensor. It will wrap around your chest/stomach, and when your chest/stomach expands and contracts so will the sensor, and consequently the input data that is fed to the Arduino. So keep in mind this isn't a totally accurate way to track every breath, and sometimes the movements of the body can influence the sensor to since it is all about how it stretches. Also, in terms of stability, I've found the range of numbers can jump around quite a bit if the sensor doesn't remain a consistent tightness around the body, but if you are just standing and breathing it is pretty accurate/sensitive at picking up the slight expansion of the chest for each breath.

There are quite a few DIY breath sensors I've found while researching on the internet, but they do not have all the specific information needed to get one made and connected to the Arduino yourself. Here are some of those sources I've pieced together to give you the full story in this tutorial:

http://www.kobakant.at/DIY/?p=1762

http://cargocollective.com/nelramon/i-Breathe

https://hackingthebody.wordpress.com/2014/01/03/bluetooth-stretch-breath-sensor/

http://itp.nyu.edu/~ek1669/blog/?p=769

Please Note: I am only a novice of electricity/circuits/arduino/coding, so I welcome any suggestions or corrections if you find any!

Step 1: Materials and Tools

    Materials/Tools:

      • A spool of conductive yarn (I bought this kind from Sparkfun: https://www.sparkfun.com/products/12806) (UPDATE: Looks like they retired it, so this should work from Adafruit: https://www.adafruit.com/product/603 )
      • A spool of elastic yarn, I used the brand HiKoo CoBaSi (I found that yarn with some stretch is better because this sensor relies on being able to expand and contract. If you use stiff yarn, the sensor won't expand and contract as well)
      • Velcro ( about 6 inches... can be multiple smaller parts, it is used for securing the sensor around yourself) OR A BINDER CLIP! (I've actually found a binder clip works easiest for getting a tight fit)
      • Normal sewing thread (~1 yard)
      • Knitting needles (I used size: 5)
      • Sewing needle
      • Resistor Kit (x1) (A range of different resistors is needed, the one you need depends on how long your band is, and the tightness of the stitches. I don't think you'll need one smaller than 10k though. Changing the levels of resistance changes the output numbers found in the serial monitor)
      • Alligator clips (x2)
      • Jumper Cables (x7)
      • Arduino Uno
      • Computer (PC or MAC)
      • USB A to B cable
      • Volt meter
      • Bread board

      Step 2: Knit

      Begin by knitting a 2" wide band combining both the conductive yarn and elastic yarn.

      Knit with the conductive and elastic yarn as if it was one piece of yarn!

      You can use a standard stitch. My band was 10 stitches across and about 30 inches long.

      If you don't know how to knit, Youtube is your friend. :) **Tip: Find videos that are specific to your dominant hand. This one helped me: https://www.youtube.com/watch?v=b21msW3cS34

      Step 3: Sew Velcro to Your Knitted Band (OPTIONAL)

      On one end of your knitted band sew a few inches of Velcro (I recommend using the hard/pokey Velcro half).

      ** OPTIONAL: If you don't have velcro, skip this step and just use a BINDER CLIP to hold the band in place around yourself. I've found a binder clip can actually work better to get a tight fit!

      Step 4: Sew More Velcro (OPTIONAL)

      Flip over your band and sew the other matching velcro (the soft half, if you used the hard half on the other side) onto the other end of your knitted band. You'll want the length of this velcro to be a bit longer, approx. 7 inches.

      *** Before you sew make sure when you wrap the band around yourself the velcro halves match up!

      ** OPTIONAL: If you don't have velcro, skip this step and just use a BINDER CLIP to hold the band in place around yourself. I've found a binder clip can actually work better to get a tight fit!

      Step 5: Build the Circuit

      Use the photos on this step to wire up your Arduino to the sensor.

      Attach 2 alligator clips to the knitted band, one on each end. The amount of stretch will only be measured between these 2 points. ** Be sure to clip the band securely and choose a spot where a lot of the conductive yarn is exposed, it is essential for the conductive yarn and metal clip to make contact (I've tried to check this connection with the Volt Meter, but I've found even if it is working it doesn't necessarily show that it is on the Volt Meter, I recommend wiring up the whole circuit and then seeing what the numbers look like in your serial monitor to see if it is working) **

      Use this Analog Input Tutorial provided by Arduino to help wire up your circuit. (Just substitute the photosensitive resistor with the knitted band + alligator clips, and it's the exact diagram/schematic you need).

      Step 6: Upload the Arduino Code to the Arduino

      If you've never used Arduino before please refer to this "getting started" page and download the Arduino Software (it's free!).

      Once you have the software downloaded on your computer, open up the program and follow these steps:

      1. Open up the "AnalogReadSerial" sketch. (File>Examples>Basics>ReadAnalogSerial).
      2. Connect the Arduino Uno (and attached circuit) to your computer via the USB A to B cable.
      3. Click "Upload" icon (looks like an arrow) in the sketch box (Make sure the correct board (Arduino Uno) and Serial port are selected under "Tools").
      4. Keep the Arduino connected to the computer and then click the "Serial Monitor" icon (Looks like a magnifying glass)
      5. This should open a box called the serial monitor, and you should see a stream of numbers. Stretch the sensor and watch the numbers change!

      TROUBLE SHOOTING TIPS IF YOU DON'T SEE A STREAM OF NUMBERS:

      • If you don't see any numbers or see a series of weird characters make sure that the baud rate is set to 9600 within the serial monitor drop down menu
      • Make sure all your connections are secure
      • Try a different level of resistor
      • Try clipping the alligator clips to a smaller section of your knitted band. If the conductive yarn is broken at some point between the alligator clips it won't work.

      Step 7: Test It Out!

      Wrap it around yourself and monitor the numbers while you breath! You may need to try different resistors to get the right range of numbers that work for your specific project.

      Experiment putting the band round different areas of your chest/stomach. You'll probablly need longer wires than the alligator clips once it is around yourself. I think it works best under your clothes, or on top of unbaggy clothes.

      Now you can take this code and sensor and modify it however you want, and apply it in a lot of different ways!

      Example idea: Make an LED change brightness with each breath.