Posts | Comments

Planet Arduino

Archive for the ‘data logger’ Category

Researchers at Linköping University in Sweden have developed an Arduino-based logger to measure levels of methane and carbon dioxide in greenhouse environments. The device also implements a DHT22 temperature and humidity sensor, data from which can be correlated with gas readings. Figures are stored on an SD card using an Adafruit data logging shield.

Importantly, the team’s study outlines a procedure for calibrating the methane sensor module at atmospheric concentrations, much lower than its normal use. The entire unit can be made for around €200, or about $235 USD. While an inexpensive method for monitoring CO2 has been available for some time, this fills in the need for a low-cost methane sensor that could be used for distributed measurements.

More information on the greenhouse gas logger can be found in the researchers’ paper.

Logging data with an Arduino is old-hat for most Hackaday readers. However, [Patricia Beddows] and [Edward Mallon] had some pretty daunting requirements. Their sensors were going underground and underwater as part of an effort to study conditions underwater and in caves. They needed to be accessible, yet rugged. They didn’t want to use batteries that would be difficult to take on airplanes, but also wanted more than a year of run time. You can buy all that, of course, if you are willing to pay the price.

Instead, they used off-the-shelf Arduino boards connected together inside PVC housings. Three alkaline AA batteries are compact and give them more than a year of run time. They wrote a journal paper to help other scientists use the same techniques for the Sensors journal published by the Multidisciplinary Digital Publishing Institute.

If you regularly read Hackaday, you probably won’t find the electronic part of the build remarkable. However, that’s kind of the point, as this is all off-the-shelf and inexpensive. They do however modify the boards in some cases to allow the controller to power them down, for example.

In fact, they put a lot of thought into reducing power requirements. Since your eye is more sensitive to green, for example, they use green LEDs with very low currents as indicators. They also speed up the serial bus going to sensors because they found that the increased power required was more than offset by finishing the transaction faster (and, thus, going back to sleep sooner).

The PVC enclosures are also interesting. The paper shows some practical deployments in some very harsh conditions. If you want more practical details, the Cave Pearl project has been blogging about their development of these loggers for a while. They have a good “how to” page, as well.

If an Arduino seems too last-year for you, we’ve seen long-duration logging done with ESP8266s and ESP32s. However, they did use lithium-ion cells. Spoiler alert: The ESP8266 lasts longer than the ESP32. If you want to minimize power when sending things out over a network connection, consider MQTT.

Create a digital bird feeder that can monitor weather and bird activity.

Read more on MAKE

The post Make a Bird Activity Monitor and Feeder with Arduino appeared first on Make: DIY Projects and Ideas for Makers.

Wanting to see data from their high school’s HAB launch, 9th grader “Spaceshark” and a few of his classmates decided to build their own data tracker.

According to the project’s write-up, Spaceshark’s school has an astronomy club which sends HABs to the edge of space. Although the 360-degree video embedded here would be enough to satisfy most people’s curiosity, this team wanted more data!

Spaceshark’s group proceeded to create a data logger using an Arduino Uno, along with sensors to collect data on the satellite’s latitude and longitude coordinates. Altitude, wind speeds, time, and the satellites in view can also be recorded, saving readings on a microSD card for later analysis.

Since these type of balloons can reach heights of 100,000 feet, the fact that the boards used could get quite cold, as well as the question of whether or not the GPS used would work at that altitude, had to be considered. You can find more details of this build on its Instructables page here.

Jan
10

Temperature Data Logger Logs Temperature Over Time

arduino, arduino hacks, data logger, green hacks, temp logger Comments Off on Temperature Data Logger Logs Temperature Over Time 

Temperature Data Logger[Husham] not only likes his electronics projects but clearly enjoys documenting them as well. He’s written a nice Instructable on a Temperature Data Logger that he has built and thankfully makes his code available for others to use. The end product is cleanly designed and made for weather-proof outdoor applications.

As you may expect, the brains behind this operation is an Arduino. It is coupled with a Real Time Clock to maintain accurate timing as well as an SD Card Module which is used to store the data collected. In this case, the temperature is read by a LM35 temperature sensor and that value, along with the time, is recorded to a .csv file on the SD card in one minute intervals.

There is also an LCD screen that displays the date, time and current temperature. To save battery life the LCD backlight is normally off. It can be turned on using a magnet that interacts with a hall effect sensor on the top of the case. This worked so well that [Husham] installed a second hall effect sensor on the side of the case that resets the Arduino. Speaking of the case, it is a weather proof PVC electrical box with a conduit adapter installed on the bottom side. A battery pack made up of two used laptop cells housed in a piece of conduit supplies 7.2 volts to the Arduino and other components. Unfortunately, there’s no word on how long the battery pack lasts. Once the data is logged, the SD card can be removed and the .csv file opened in spreadsheet software to make a graph showing temperature change over time.


Filed under: Arduino Hacks, green hacks
Jan
10

Temperature Data Logger Logs Temperature Over Time

arduino, arduino hacks, data logger, green hacks, temp logger Comments Off on Temperature Data Logger Logs Temperature Over Time 

Temperature Data Logger[Husham] not only likes his electronics projects but clearly enjoys documenting them as well. He’s written a nice Instructable on a Temperature Data Logger that he has built and thankfully makes his code available for others to use. The end product is cleanly designed and made for weather-proof outdoor applications.

As you may expect, the brains behind this operation is an Arduino. It is coupled with a Real Time Clock to maintain accurate timing as well as an SD Card Module which is used to store the data collected. In this case, the temperature is read by a LM35 temperature sensor and that value, along with the time, is recorded to a .csv file on the SD card in one minute intervals.

There is also an LCD screen that displays the date, time and current temperature. To save battery life the LCD backlight is normally off. It can be turned on using a magnet that interacts with a hall effect sensor on the top of the case. This worked so well that [Husham] installed a second hall effect sensor on the side of the case that resets the Arduino. Speaking of the case, it is a weather proof PVC electrical box with a conduit adapter installed on the bottom side. A battery pack made up of two used laptop cells housed in a piece of conduit supplies 7.2 volts to the Arduino and other components. Unfortunately, there’s no word on how long the battery pack lasts. Once the data is logged, the SD card can be removed and the .csv file opened in spreadsheet software to make a graph showing temperature change over time.


Filed under: Arduino Hacks, green hacks
The Pax Instruments T400 Temperature LoggerScientists working in a lab are just folks. Like motor heads with cars, we have our favourite makes and models—except with scientists, it's all about the lab equipment.

Read more on MAKE

Sep
21
The Carbon Origins Apollo data logger boardThis is the story of a group of college students who moved to the Mojave Desert, bought a house, painted it white, and turned it into a make-shift lab. Then they went out to launch rockets.

Read more on MAKE

Jan
23

Data-logging made simple with Arduino

data logger, logger, logging, projects, prototyping, RTC, sd, shield, tutorial Comments Off on Data-logging made simple with Arduino 

One of the best capabilities provided by Arduino regards its very high modularity, which helps users to quickly translate ideas into physical artifact, as practically demonstrated by Mauro, which shows on his blog how to build a simple data-logger by properly combining different shields. By using few additional components (mainly resistors and buttons) a fully-functional data logger can be easily implemented.

More information can be found here.

[Via: Mauro Alfieri's blog]

Oct
19

Stacking GPS, GSM, and an SD card into an Arduino shield

arduino, arduino hacks, cellphones hacks, data logger, data logging, GPRS, gps, gps hacks, gsm, shield Comments Off on Stacking GPS, GSM, and an SD card into an Arduino shield 

A few years ago, [Phang Moh] and his compatriots were asked by a client if they could make a vehicle tracking device for oil tankers all around Indonesia. The request of putting thousands of trackers on tanks of explosives was a little beyond [Phang Moh]‘s capability, but he did start tinkering around with GPS and GSM on an Arduino.

Now that tinkering has finally come to fruition with [Phang]‘s TraLog shield, a single Arduino shield that combines GPS tracking with a GSM and GPRS transceiver. There’s also an SD card thrown in for good measure, making this one of the best tracking and data logging shields for the Arduino.

The shield can be configured to send GPS and sensor data from devices attached to an I2C bus to remote servers, or a really cool COSM server. [Phang] is selling his TraLog for $150, a fairly good deal if you consider what this thing can do.

Seems like the perfect piece of kit for just about any tracking project, whether you want to know the location of thousands of oil tankers or just a single high altitude balloon.

Tip ‘o the hat to [Brett] for finding this one.


Filed under: arduino hacks, cellphones hacks, gps hacks


  • Newsletter

    Sign up for the PlanetArduino Newsletter, which delivers the most popular articles via e-mail to your inbox every week. Just fill in the information below and submit.

  • Like Us on Facebook