制造商零件编号 KIT-14298
RASPBERRY PI ZERO W BASIC KIT
SparkFun Electronics
License: See Original Project Raspberry Pi SBC
Introduction
Read Time: ~ 15 minutes
Build Time: ~ 60 - 90 minutes
How much impact can the human body handle? Whether it’s football, rock climbing, or a bicycle accident, knowing when to seek immediate medical attention after a collision is incredibly important, especially if there are no obvious signs of trauma. This tutorial will teach you how to build your very own impact force monitor!
This open-source project uses a Raspberry Pi Zero W and an LIS331 accelerometer to monitor and alert the user of potentially dangerous G-forces. Of course, feel free to modify and adapt the system to suit your various citizen science needs.
Note: Build fun stuff with the Impact Force Monitor! However, please don't use it as a substitute for professional medical advice and diagnosis. If you feel that you have taken a serious fall, please visit a qualified and licensed professional for proper treatment.
Suggested Reading
To keep this tutorial short n' sweet (er, well, as much as possible), I’m assuming you’re starting with a functional Pi Zero W. Need some help? No problem! Here’s a full setup tutorial.
We’ll also be connecting to the Pi remotely (aka wirelessly). For a more thorough overview of this process check out this tutorial on making a “headless” Raspberry Pi:
INTRO TO THE (HEADLESS) RASPBERRY PI!
Stuck or Want to Learn More? Here Are Some Handy Resources:
Also, check out the datasheet for the LIS331.
Required Materials
To follow along with this tutorial, you will need the following materials. You may not need everything though depending on what you have. Add it to your cart, read through the guide, and adjust the cart as necessary.
The items in the wishlist include:
Tools
You will also need the following tools.
But Wait! What is Impact Force??
Fortunately, the term “impact force” is pretty straightforward: the amount of force in an impact. Like most things though, measuring it requires a more precise definition. The equation for impact force is:
where F is the impact force, KE is the kinetic energy (energy of motion), and d is the impact distance, or how much the object crunches.
There are two key takeaways from this equation:
Force is typically measured in Newtons (N), but impact force may be discussed in terms of a “G-Force”, a number expressed as a multiple of g, or earth’s gravitational acceleration (9.8 m/s2). When we use units of G-force, we are measuring an object’s acceleration relative to free fall towards the earth. Technically speaking, g is an acceleration, not a force. However, it is useful when talking about collisions because acceleration (the change in speed and/or direction) is what damages the human body.
For this project, we’ll use G-force units to determine if an impact is potentially dangerous and deserving of medical attention. Research has found that g-forces above 9G can be fatal to most humans (without special training), and 4-6G can be dangerous if sustained for more than a few seconds.
Knowing this, we can program our impact force monitor to alert us if our accelerometer measures a G-force above either of these thresholds. Hooray, science!
For more information, read about impact force and G-force on Wikipedia!
Configure the Pi Zero W
Gather your Raspberry Pi Zero and peripherals to configure the Pi to be headless!
Enable WiFi, SSH, and I2C.
Restart the Pi and Log In Remotely.
We can now ditch the HDMI and peripherals, woohoo!
Build it: Electronics!
Here’s the electrical schematic for this project:
Note: The LIS331 breakout board in the schematic is an older version -- use the pin labels for guidance.
Here’s the pinout for the Pi Zero W for reference:
Click here to view the PDF
Connect the LIS331 Accelerometer to the Pi’s GPIO
Solder and carefully remove any flux residue on the accelerometer and Pi GPIO’s header pins.
Then connect jumper wires between the LIS331 breakout board and Pi between the following pins:
To make it easier to connect the sensor to the Pi Zero, a custom adapter was made by using a female header and jumper wires. Heat shrink was added after testing the connections.
Add an Alert LED!
Solder a current limiting resistor to the negative LED leg (shorter leg) and add shrink wrap (or electrical tape) for insulation.
Use two jumper cables or header pins to connect the positive LED leg to GPIO26 and the resistor to GND (header positions 37 and 39, respectively).
Completed Setup
Connect the battery pack to the Pi’s input power to complete the setup!
Program It!
The Python code for this project is open-source! Here’s a link to the GitHub repository.
IMPACTFORCEMONITOR GITHUB REPO
For Folks New to Programming:
For Folks More Comfortable w/ the Technical ‘Deets:
All:
Before you run the program, double check that the accelerometer address is 0x19. Open the terminal window and install some helpful tools with this command:
sudo apt-get install -y i2c-tools
Then run the i2cdetect program:
i2cdetect -y 1
You’ll see a table of I2C addresses displayed as shown in the image below. Assuming this is the only I2C device connected, the number you see (in this case: 19) is the accelerometer address! If you see a different number, take note and change in the program (variable addr).
Quick Overview
The program reads the x, y, and z acceleration, calculates a g-force, and then saves the data in two files (in the same folder as the program code) as appropriate:
G-forces above our safety thresholds will also turn on our alert LED and keep it on until we restart the program. Stop the program by typing “CTRL+C” (keyboard interrupt) in the command terminal.
Here’s a photo of both data files created during testing:
Test the System!
Open the terminal window, navigate to the folder where you saved the program code using the cd command.
cd path/to/folder
Run the program using root privileges:
sudo python NameOfFile.py
Check that the acceleration values in the x, y, and z-direction are printing to the terminal window, are reasonable, and turn on the LED light if the g-force is above our thresholds.
Install It!
Once everything is working correctly, let’s make sure the impact force monitor can actually withstand impact!
Secure Connections
Use heat shrink tube and/or coat the electrical connections for the accelerometer and LED in epoxy.
For super durable, permanent installations, consider coating the whole shebang in epoxy: the Pi Zero, the LED, and the accelerometer (but NOT the Pi cable connectors or the SD card).
Warning! You can still access the Pi and do all the computer stuff, but a full coat of epoxy will prevent the use of the GPIO pins for future projects.
Alternatively, you can make or purchase a custom case for the Pi Zero, although check for durability.
Secure to a helmet, your person, or a mode of transportation like your skateboard, bicycle, or cat*!
*Note: I originally meant to type "car", but figured an impact force monitor for a cat might also yield some interesting data (with kitty's consent, of course).
Fully test that the Pi is securely fastened or the GPIO pins may become loose causing the program to crash.
Embedding the Circuit in a Helmet
There are a few methods of embedding the circuit into a helmet. Here’s my approach to a helmet installation:
If you have not already, connect battery to Pi (with battery off). Secure the accelerometer to the back of the Pi with nonconductive insulation in between (like bubble wrap or thin packing foam).
Measure the dimensions of the Pi Zero, accelerometer, LED, and battery connector combination. Add 10% on either side.
Draw a cutout for the project on one side of the helmet, with the battery connector facing towards the top of the helmet. Cut out the padding in the helmet leaving a few millimeters (~ 1/8 in.).
Place the sensor, Pi, and LED in the cutout. Cut pieces of the excess helmet padding or use packaging foam to insulate, protect, and hold the electronics in place.
Measure the battery’s dimensions, add 10%, and follow the same cutout for the battery. Insert the battery into the pocket.
Repeat the insulation technique for the battery on the other side of the helmet.
Hold the helmet padding in place with tape (your head will keep ‘em in place when you are wearing it).
Deploy!
Power up the battery pack!
Now you can remotely log into the Pi through SSH or remote desktop and run the program via the terminal. Once the program is running, it starts recording data.
When you disconnect from your home WiFi, the SSH connection will break, but the program should still log data. Consider connecting the Pi to your smartphone hotspot WiFi, or just log back in and grab the data when you get home.
To access the data, remotely log into the Pi and read the text files. The current program will always append data to the existing files – if you want to delete data (like from testing), delete the text file (via the desktop or use the rm command in the terminal) or create a new file name in the program code (in User Parameters).
If the LED is on, restarting the program will turn it off.
Now go forth, have fun in life, and check the data every so often if you happen to bump into something. Hopefully, it’s a small bump but at least you’ll know!
Adding More Features
Looking for improvements to the impact force monitor? It is outside the scope of the tutorial but try looking at the list below for ideas!
*Note: To hear the whooshing sounds associated with your acceleration! :D
Resources and Going Further
That’s a wrap, folks! Please let me know if you have any questions or comments by sharing your thoughts in, well, the comments! Thanks for reading & happy building!
For more information used in t, check out the resources below: