Public Lab Research note


This is an upgrade for riffle. Try building it and report back how it goes.

Riffle Beta project - Methane Gas Sensor

by Bob | June 17, 2016 17:38 17 Jun 17:38 | #13205 | #13205

Leaking natural gas infrastructure is a known problem. A major component of natural gas is methane, which is a greenhouse gas.

I was inspired by recent efforts to map these leaks (https://www.edf.org/climate/methanemaps/city-snapshots) to assemble my own datalogging gas sensor. I've combined a Riffle, a methane gas sensor and a GPS receiver... the Sniffle!

For the past few years, natural gas has been leaking in my own neighborhood. The utility company responsible for repairs has not fixed it, probably because it's not an "explosion hazard". But the natural gas odor is very noticeable.

The goal is to have a handheld unit which can be carried around to areas with known gas leaks, sampling a few times per minute. The data could then be imported into a map to visualize the levels of methane detected. The analog sensor is not calibrated with a known standard, so the logged data is just a range 0-1024.

My initial attempts to program the Riffle included the analog methane sensor (MQ-4), the built-in real time clock, SD card, and GP-735 GPS module (using the SoftwareSerial Library) but I found the compiled sketch was too large for the ATmega328P. The GPS receiver also includes a timestamp with its latitude and longitude data, so I decided to not use the RTC for this project.

The MQ-4 gas sensor uses a 5V heater element as part of its circuit, which I have wired to the VBAT pin on the 2x7 header. The sensor appears to work OK at this lower voltage. Further testing is needed - a 5V boost circuit could be added. The analog out is wired to A0 on the Riffle.

The GP-735 GPS module is a TTL-UART device, running at 9600 baud. The Riffle is already using the hardware serial port for the CH340G usb converter, so I setup a software serial port on D3/D2.

The next steps will be to improve the logging of the GPS signal, to alert when the fix has been acquired or lost, and work on the mapping of the collected data. See update below.

Riffle-MQ6-sensor-2.jpg

A secondary project was to design a 3D-printable battery clip, to secure the Li-ion battery to the main Riffle board.

sniffle-2.jpg

The assembled Sniffle.

Update: I've reworked the Riffle code to improve handling of the GPS data. Originally I was using the SoftwareSerial and MicroNMEA libraries, but the GPS signal fixing and data quality was inconsistent. Switching to NeoSWSerial and TinyGPS++ libraries was an improvement. This also allowed me to utilize the Riffle RTC again, with the DS3232RTC library. The RTC timestamp and temperature can now be logged along with the gas sensor readings independent of a valid GPS fix.

I carried the reprogrammed Sniffle on hike to the top of a local summit. This was a test of the sensor in an area of (hopefully) low gas contamination and a test of the GPS module, including altitude data, in an area with a forest canopy. The larger data points are stronger gas readings, the lighter greens are for higher altitudes. It appears the gas sensor was detecting less methane near the summit. At lower elevations the methane readings were slightly higher, perhaps due to nearby wetlands. Wetlands can be a natural source of methane.

testhike-20160716-small.png

A D3.js scatterplot of GPS and sensor data.

The plot below shows gas sensor readings overlaid on a map in the area of a known gas leak from a buried utility gas pipe. The large red data point is my verification of the sensor functionality by directly exposing it to a source of butane gas. The smaller orange-brown data point is the location of the gas leak as it emerges from the ground through an inspection hole drilled in the pavement by the utility company. The plot was created using D3.js / Leaflet / OpenStreetMap.

sensormap.20160716.png

A collection of sensor readings overlayed on a map.

I have a few ideas for next steps with the design of the Sniffle. A tall walking stick might provide a simple frame to attach the components. The Riffle, battery, and GPS mounted at the top of the stick - for the best GPS signal reception and visibility of the status LED. The gas sensor mounted near the lower end of the stick, closer to the source of ground-based leaks, where sensor readings might be strongest.

Another idea is to add a small OLED display, to provide more detailed feedback than the single blue LED. I will need to determine if there is enough program space / RAM left on the ATmega328P for the OLED.


I made this Help out by offering feedback! Browse other activities for "riffle"


People who made this (0)

None yet. Be the first to post one!


I did this Help out by offering feedback! Browse other activities for "riffle"


People who did this (0)

None yet. Be the first to post one!


4 Comments

Nice battery clip. I covered the back of my Riffle with adhesive Velcro hooks and wrapped some adhesive Velcro loops around the battery. But I might have to print one of your clips anyhow.

It looks like you moved the 2x7 header on the proto board. Well done.

Reply to this comment...


After 3D printing the battery clip, you may need to press the battery arms together while snapping it onto the Riffle board. I uploaded the battery clip source file, so you can modify it using 123D Design. I flipped the 2x7 header on the protoboard using a hot-air rework tool. I also replaced the ATmega328P because the original chip stopped responding - I suspect accidental overvoltage destroyed it.

Reply to this comment...


I support the use of the term Sniffle! Lauren Sullivan would probably agree!

the battery clip will also be tres useful

Reply to this comment...


It will work with UNO? Also your GPS module is so expensive, I try similar project with Beitian BN-280 and NeoGPS library.

Is this a question? Click here to post it to the Questions page.

Reply to this comment...


Login to comment.