For years, protected natural areas have faced the challenge of illegal vehicles entering core zones, threatening delicate ecosystems. Despite legal protections, these intrusions cause harm to soil, plants, and wildlife.
Inspired by advances in sound recognition technology, we created a smart system that listens to nature’s sounds — distinguishing animal calls, weather, and human activity from unauthorized vehicles. By combining Arduino hardware with acoustic analysis, our device acts as a silent guardian, monitoring protected zones around the clock.
When a suspicious vehicle is detected, an instant SMS alert is sent to park authorities, enabling quick action to protect these vital ecosystems. Our project represents a modern solution to an age-old problem, using technology to preserve the natural world.
SolutionBased on systems that detect sound, our program can identify and isolate the sounds related to the vehicles that most frequent illegal traffic areas. In addition to detecting sounds related to nature, animals, wheat and the presence of humans, to improve efficiency and make a more accurate analysis of whether what it is detecting is really an illegal vehicle.
This technology will be installed at strategic points in the core areas, where irregularities are frequented, monitoring the restricted area 24 hours a day and sending a notification, at the time of detection, via SMS to the authorities of the national park where it has been installed.
UsersThe main user of this project would be national park authorities, rangers, environmental protection bodies or environmental NGOs that need the monitoring of certain areas restricted to vehicles to preserve nature in areas with great biodiversity.
ConnectivityOur system is designed to ensure reliable and immediate communication between the sound detection sensors and the end user. When the Arduino-based sensor identifies the sound of an unauthorized vehicle, it automatically sends an SMS alert to the registered user associated with that monitoring area.
To begin receiving alerts, users must complete a simple registration process. First, they sign up by providing essential information such as their organization's phone number, email address, company name, and by creating a secure user profile and password. During this step, users also input the specific locations they wish to monito, r typically the areas most affected by unauthorized vehicle traffic.
Once registered, users select the subscription plan that best suits their needs, depending on the duration of use and the number of devices they want to deploy. The available subscription options are:
- Free Trial: allows one device with up to 3 detections, but without access to detection history or advanced configuration.
- Monthly Plan: €20 per device per month, renewable monthly. Includes unlimited alerts, access to 20 days of detection history, and basic support
- Quarterly Plan: €55 per device every quarter. Offers the same benefits as the monthly plan, with the addition of medium-level priority support.
- Annual Plan: €200 per device per year. Includes all features from previous plans plus top priority support
After the account is fully activated, the system starts operating in real time. Whenever a vehicle sound is detected in any of the configured locations, an SMS alert is instantly sent to the user, allowing them to take immediate action to protect the natural area.
This seamless connectivity ensures that park authorities and environmental organizations can respond faster, more efficiently, and without the need for constant physical presence in remote protected zones.
Machine learningTo implement intelligent sound detection in our system, we utilized the Edge Impulse platform to train a machine learning model capable of recognizing different types of acoustic events. Our dataset was structured into two primary categories:
- Type 1: Vehicle Sounds: Motorcycle, Truck
- Type 2: Environmental Sounds: Storm, Thunder, Wind, Human Voices, Other ambient sounds
The objective was for the model to accurately distinguish between natural environmental sounds and unauthorized vehicle noise, triggering alerts only when relevant intrusions occurred.
Unfortunately, our model did not deliver the desired accuracy. One of the major challenges was that certain environmental sounds — particularly wind and thunder — produced audio patterns similar to motorized vehicles. This led to false positives and misclassifications. Additionally, many sound samples sourced from open datasets contained overlapping noises, further complicating classification and confusing the model during training.
To improve future iterations of the model, we recommend:
- Recording audio directly in the target environment, capturing realistic and context-specific vehicle and nature sounds.
- Expanding the dataset to include a wider range of sounds, including various animal calls, several types of vehicles and motors, and different types of terrain noise.
- Cleaning the dataset to avoid mixed or low-quality samples that can degrade model performance.
- Experimenting with additional features and model architectures in Edge Impulse to improve real-time inference accuracy.
For real-time audio detection and processing, we used the XIAO nRF52840 Sense, a compact and efficient microcontroller equipped with an onboard microphone. The firmware was developed using the Arduino IDE, and we based our initial implementation on the Nano BLE33 microphone streaming example, adapting it to our specific hardware and use case.
Our modified code enabled:
- Continuous microphone data capture
- Communication with the Edge Impulse inference engine
- Integration of a LoRaWAN module to establish a long-range, low-power connection suitable for remote areas
The final goal was to send an SMS alert to park authorities when a vehicle was detected. While the LoRaWAN transmission of detection data was implemented, we were not able to complete the full integration of the SMS alert system due to time constraints and hardware limitations. The full code is available in the end.
ConclusionOur project demonstrates a concept that applies machine learning and wireless communication to address an ongoing issue in conservation: the unauthorized presence of vehicles in protected natural areas. Although our model had limitations in prediction accuracy and full SMS functionality, it lays the bases for a scalable, automated solution.
By permantly listening to sounds, this system allows park authorities to react quickly, reduce damage, and better preserve ecosystems — all with minimal human intervention.
With further refinement and field testing, this silent guardian could become a valuable asset in the global effort to protect biodiversity and natural heritage.
Comments