Or do you just want some warning, a few seconds that could save your life.
This project will allow you to hook up a seismic sensor to a router through the Ethernet shield and host a webpage off of the SD card on the shield. This webpage will then display information about the seismic sensor and the history of its activity.
All the data for the seismic sensor is stored in a Pachube feed and then displayed on the webpage as several graphs.
You will need:
- Arduino
- Preferably an Arduino with large memory, I used the Arduino Mega 2560
- You can use one with less memory, you just might have to remove some stuff from the sketch
- Ethernet Shield
- Micro SD Card
- Pachube account:
- Piezoelectric Sensor
- Breadboard
- Resistors, Capacitors, Diode
- Check the section on building the circuit for more details on values
- 5 x Op-Amps - Single-supply compatible
- or you can build it with dual supplies, whatever floats your boat :p
- You can get away with using only 3 - 4 op amps, the rest I use is for amplification
- Solid Wire of course!
I assume you already have:
- Router
- Computer
- Would be pretty magical to surf the net without these
- Extra Ethernet cable
- USB cable for the arduino
- Un-destroyed analog pin on your arduino
Step 1: The Circuit - Sensor
They come with an optional weight attached to the end, but I found that the weight was not enough.
The frequency of earthquakes is between 1 - 20 Hz, but with even the heaviest weight the resonant frequency was in the KHz.
So to reduce the resonant frequency and get some useful signals, I took some washers slapped them on a bolt and some nuts and experimented. I used a Oscilloscope with FFT and changed the weight on the tip of the film until frequencies of around 40Hz were the largest. If you don't own an oscilloscope, just add a little weight and then hit the sensor. It should flop around for about half a second to a second before coming to rest.
Once you have the sensor tuned to the right frequency, place it in your breadboard at one end, you're going to need the space for the rest of the circuit.
As you can see from the picture, I taped down the base of the sensor. This is because the leads on the piezo film is flat, and tends to be loose inside the breadboard, so any vibrations tend to get lost in the movement of the leads.
Taping it so that the base can't move will ensure that your data is accurate!
Step 2: The Circuit - Charge Amp
A Charge Amp takes the charge across a capacitor and translates it into a voltage. If you know your electronics you can see that it is essentially an integrator, which prevents the charge across the Piezo film, which acts like a capacitor, from discharging quickly.
This allows you to turn it into a stable voltage signal.
I used an LM324N, a quad op amp, to create the charge amp portion of the circuit.
If you follow the schematic on the last picture, you should get an AC signal at the output floating on 2.5Vdc [ If you are using a 5 volt supply ]
Step 3: The Circuit - Shaping the Signal
We can do this by chopping off the bottom half of the wave with a diode and biasing it so that the diode is just-just turned on.
Now you have a waveform sitting on 0Vdc with only the positive peaks of the signal being read by the ADC.
I used a small signal, low voltage drop diode and then forward biased it with 0.45V.
You can stop here or further amplify the circuit, but that is completely up to you.
For this instructable I will stop here, since it isn't really meant to be an instructable on designing single supply amplifiers :p
This PDF from Texas Instruments can give you a good idea how to build them:
http://www.ti.com/lit/an/sloa058/sloa058.pdf
Step 4: Hookan It Up
- You need a wire from the Vcc portion on your breadboard to the 5V slot on your Arduino
- A wire from the ground line on your breadboard to the GND pin on the Arduino
- The output, either of the second stage or optional amplification stage, should be connected to one of the analog input pins
Next: Programming!
Step 5: Programming - Arduino Side
First, a flowchart on how the program operates is shown in the first three pictures.
The program has been provided as well for download, just enter your own Pachube information and you are off to the races!
Libraries you may need:
#include <SPI.h>
#include <SdFat.h>
#include <SdFatUtil.h>
#include <Ethernet.h>
#include <EthernetDHCP.h>
Google for any you are missing, they are generally the first result if you include "Arduino" in your search
Step 6: Programming - HTML Side
The rest are just filler.
Attached is what my site looks like and the html for it.
In "index.htm" you will find the code for the buttons I have there.
To make a button you just need to include in you website:
<form METHOD=get action="/">
<input type=hidden name=cmd value=gettime>
<input type=submit value="Text on Button">
</form>
This will create a form button which, when clicked, will send a GET command to your Arduino.
With the button I have here, the Arduino will receive
"GET /?cmd=gettime HTTP1.1/0"
As you can see, the NAME value get's inserted right after the "?"; the VALUE value is what is after the "="
The third line tells you what the button does and looks like, with the TYPE determining how it reacts to being pushed, and the VALUE showing up as text on the button.
The ACTION portion on the front line is a little stranger.
With the "/" in there, the button will send "/?cmd" to the arduino, but you could type in "www.google.com" in there, and the button will attempt to send "/?cmd" to google's servers.
webpage.zip196 KBStep 7: Fini
That is, as long as it is near a reliable power source and a router!
I hope that some of you will brave this project,
FOR SCIENCE!
















































Visit Our Store »
Go Pro Today »




where do you bought the sensos?
Thanks
I am making my own film sensor and want to use your circuit to check the output signal. and First i want to simulate in the Altium designer to determine the components' value. may i use a sinusoidal source to replace the LDT piezo film in the circuit
If you can't make a variable capacitor, you can use timed switches to put capacitors in parallel at different times during the simulation.
I may need to connect the film and build the circuit to test it practically and check for consistent result. However, could you co-operate in answering a few queries?
1. As my piezo will vibrate/bend, I am supposed to get a voltage output as seen in the datasheet (frequency vs open circuit voltage graph). When the signal is passed through the charging amp as you designed, I am supposed to get a stable, amplified voltage level variation right? (e.g. in arduino, sample value would be between 0 and 1023 for a range of vibration producing 0~5V). I am asking this because I am supposed to get no voltage when piezo doesn't vibrate, and say get a 2.5V when desired frequency oscillation occurs, right? Would I get such output from the circuit you have shown Sir?
If you get your own op-amp chip, look up the data sheet and hook up the inverting/non-inverting up like it is in the schematic and ignore the pin numbers on the schematic
I was wondering if the LM324 pin configurations were correct. As far as i can remember, considering IC1A for example,
Vcc >> pin 4
GND >> pin 11
In- >> pin 2
In+ >> pin 3
Vout >> pin 1
might be a good help for starters, don't you agree? :)
Great work (Y)
A 30-80Hz detector might sense trucks rumbling by or heavy footsteps, but not earthquake ground vibration unless it's from furniture falling over.
A great resource is http://psn.quake.net/ with many DIY seismometer designs.
Thanks for the resource though!
If you wanted to lower the resonant frequency of the sensor, it's as simple as adding more weight on the sensor.
If I didn't want to shorten the sketch nor by an Arduino Mega, could I use an external EEPROM?
There are also some efficiency improvements that can be made to save more space.
I was just not concerned with that since the MEGA has so much space on it
A good example:
I use a float to compare a previous measurement with the next measurement
A more efficient way would be to just use the A/D converter's integer value for both, and then convert it to voltage/float right before sending it to pachube.
The walkway to my front door is a wood deck of 2x4s and I've been trying to think of a way to illuninate it as people walk across it.
All you would have to do is remove some weight from the sensor and change the caps in the charge amp section to lower values to amplify higher frequencies