Raspberry Pi aids conservation work
Fox Hunt

© Lead Image © donatas1205, 123RF.com
As a countermeasure to predators of rare ground-breeding birds, live traps are monitored by a microcontroller and a Raspberry Pi.
In a nature reserve in northern Germany, foxes and martens threaten rare ground-breeding birds. Although the park supervisor catches the predators with live traps, checking the traps is time consuming and expensive in this virtually inaccessible area. Between 40 and 50 traps have to be monitored, which means long and mostly unnecessary inspections.
The use of modern technology would minimize the considerable effort involved in regularly checking the traps by having a microcontroller and Raspberry Pi team up to monitor the traps electronically and send an automatic alarm when one of the traps is triggered. However, the path from this idea to its implementation took longer than originally thought.
One of the challenges was the lack of mobile Internet in the sparsely populated area, although text message services are available. A previous article [1], in which one of us described how to set up a 3G hotspot with a Rasp Pi and a UMTS [2] stick, was the basis for the collaboration on this project.
The Idea
The basic idea is simple: The PIC16F690 microcontroller with nanoWatt Technology uses a sensor, such as a ball switch or magnetic contact, to monitor the state of the trap and uses the PIC internal analog-to-digital converter (ADC) to monitor the battery voltage. When the trap is closed or the battery voltage is too low, the microcontroller stimulates a connected Rasp Pi and signals the status. The Rasp Pi then sends a text message to the supervisor over a connected UMTS stick, and the supervisor then transports the captured animal away or replaces the battery.
For the status of the trap, the Rasp Pi uses two GPIOs as input (one for the latch and one for the battery). At first glance, the script required seems very simple, because reading GPIOs and sending text messages can be implemented quickly, thanks to the large software base in Raspbian. However, the devil is in the details, because the solution has to be very robust: You would not want a captive animal to die in a trap because text messaging fails.
The Rasp Pi therefore not only has to read out the signals from the PIC but also report back the status. To do this, the setup requires two more GPIOs: one pin for the status and a second that indicates a shutdown to the PIC, which then switches off the power and saves the battery. In the event of a fault, the PIC stimulates the Pi after five minutes for another attempt. After a successful text message transmission, the PIC remains inactive until a reset, which the supervisor must handle.
An optional component is a real-time clock (RTC). Because the Rasp Pi does not make contact with a network, it cannot update its time. The RTC provides the right time for each boot, which means that all log messages have the correct time stamp. The text messages now also contain the transmission time in addition to the case number and the case or power status.
Microcontroller
The PIC16F690 is located on a carrier board that plugs directly into the Rasp Pi GPIO strip (Figure 1). The diagram and the parts list, as well as all programs, are on GitHub [3]. (English versions are available on the Linux Pro Magazine anonymous FTP site [4].)

The PIC16F690 by Microchip was chosen because it works with particularly economical nanoWatt Technology. In sleep mode, a watchdog timer monitors the PIC so that the power consumption from the battery is only about 1-1.5µA. Among other things, the controller has 18 I/O pins, an internal oscillator, a 10-bit ADC with 12 channels, flash memory for 4096 words, 256-byte SRAM, and interrupt on change (IOC) at ports A and B. Transfer of data to a 4x16 LCD uses software I2C and the PCF8574 I/O expander. This solution allows transmission at up to 100kHz; the PIC can then be operated at a maximum of 4MHz. This data transfer variant saves I/O pins.
The PIC is set to sleep mode for about five minutes after configuration. It then wakes up and controls the trapdoor sensor and battery voltage. If everything is OK, it will switch to sleep mode again. In this case, the Rasp Pi is left out. If no animal is trapped, a battery charge is sufficient for about a half a year in this setup.
Only when an event occurs (trap closes, battery dies) does the Rasp Pi boot and send a text message. The Pi reports a transmission failure to the PIC, which "remembers" it. After another five minutes, the Rasp Pi starts resending the text and does so repeatedly until the transfer is successful. The system then returns to the idle phase.
The chip is programmed with assembler in a special single-step mode. The information is forwarded by software I2C and pluggable auxiliary boards and is visualized on an LCD with four lines of 16 characters each (Figure 2).
The PIC is connected to the Rasp Pi through four GPIOs (Figure 3). GPIOs 17 and 27 inform the Rasp Pi of the status of a trap, which in turn sets GPIO 22 to HIGH during program startup and to LOW in the event of an error. The shutdown signal comes through GPIO 10. After the value changes to HIGH, the PIC gives the Rasp Pi another minute to shut down and then turns off the power (Figure 4). If the Rasp Pi takes too long (e.g., because a text message is pending), the PIC still strictly regulates the current. The Pi loses no data, apart from some log messages.
However, the PIC alone is not enough for the circuit. Another critical component is the boost converter (Figure 5), which uses the 3.0-4.2V battery voltage to generate the 5V required by the Rasp Pi. First, the XL6009 switching regulator module (up to 4A) was used. However, because this was no longer reliable enough in the lower voltage range of 3-3.5V, the ML8205 (2A) module was given preference, which runs smoothly down to 3V. For test purposes, a switch mode power supply connected with an adjustable step-up converter replaces the lithium polymer (LiPo) battery, which means it is possible to stimulate undervoltage without problem.
The pull-up/pull-down resistors integrated in Rasp Pi seem to be some of the least known components of the small computer and proved to be a particular challenge. Although the GPIOs are well documented, with many tutorials about connecting with external pull-up or pull-down resistors, hardly any articles about the internal resistors can be found.
These pull-ups can be configured using the WiringPi library. Once set up, Rasp Pi saves the status, but it can no longer be read out. The data is probably stored in an EEPROM-like cell that cannot cope with arbitrary write operations. However, none of this is documented and is one downside of the Rasp Pi hardware not being completely open.
Rasp Pi Tasks
When the PIC switches on power, the Rasp Pi boots and works directly on its tasks: reading GPIOs, searching for modem, setting PIN code, sending text message, informing PIC, and shutting down again. Ideally, this should take no more than two minutes. However, the implementation has to intercept various error situations.
The /etc/rc.local
file starts the /usr/local/sbin/fuchsfalle.sh
processing script at the end of the boot process. It then monitors in a loop to see whether the script stops again. After a configurable amount of time, it terminates it regardless of its status, informs the PIC about the failure, and shuts down the system. The Rasp Pi tries to prevent the hard shutdown caused by the PIC.
The search for the modem, the setting of the PIN code, and the sending of text messages all make several attempts in a loop, which proves to be a useful precautionary measure in practice. Sometimes it takes a while for the UMTS stick modem to become available. From time to time, setting the PIN or sending text messages also requires several attempts.
The Rasp Pi behavior is controlled by the central configuration file /boot/fuchsfalle.cfg
. The storage location was chosen because it is located in the first FAT-formatted partition and can therefore also be accessed from Windows. However, on the Windows side, you will need an editor that also saves the file in UTF-8 format, which is common on Linux. Notepad++ does a good job of this.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
News
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.
-
Command-Line Only Peropesis 2.1 Available Now
The latest iteration of Peropesis has been released with plenty of updates and introduces new software development tools.
-
TUXEDO Computers Announces InfinityBook Pro 14
With the new generation of their popular InfinityBook Pro 14, TUXEDO upgrades its ultra-mobile, powerful business laptop with some impressive specs.
-
Linux Kernel 6.3 Release Includes Interesting Features
Although it's not a Long Term Release candidate, Linux 6.3 includes features that will benefit end users.
-
Arch-Based blendOS Features Cool Trick
If you're looking for a Linux distribution that blends Linux, Android, and web apps together, blendOS might be what you're looking for.