Bees have been facing the threat of extinction for more than fifteen years. Indeed, from 30 to 40 % of bee colonies died within the last decade in Europe. This is an alarming situation for the environment since bees are the most important pollinators and therefore, an integral part of our ecosystem. Moreover, an economic issue arises. Indeed, for example in France, honey production is the additional income for more than 54, 000 beekeepers and the main one for about 2, 000 others.
Our goal is to enable beekeepers, professional or amateur, to monitor their hive remotely. Our solution is designed to save them unnecessary trips to their production site, and therefore save time. Our device is a connected sensor kit that collects data every 10 minutes and sends them to the beekeeper. This informs him on the state of his bee colonies and the quality of their environment. Our product is easy to use and affordable (about 150 €)comparedtoothercommercialized systems.
Data studiedTo monitor the hive's integrity we chose to study :
- Indoor temperature (+/- 0.5 °C)
- Outdoor temperature (+/- 0.5 °C)
- Outdoor Humidity (+/- 2%)
- Weight (+/- 0.2 kg)
We also spent a large amount of time working on an Artificial Intelligence (AI) which would have been able to indicate whether or not there was a queen bee and if there were any bees at all. Unfortunately, we were not able to implement our neural network (NN) since exporting it proved to be more intricate than expected.
The Mbed source file is available to download in the Code tab.
For our system to work, we developed the software on Mbed. With the code we can :
- Initialize all the sensors.
For each sensors, we assigned a pin.
- Get value measurements for each sensors every ten minutes.
Indoor temperature : We chose to use the DS18B20 temperature sensor. Indeed, this model already proved its efficiency in previous similar projects.
Outdoor temperature and humidity : We chose the DHT22 temperature and humidity sensor.
Weight : We choose to use a strain gauge to collect weight values.
- Send data that we have collected to Sigfox Backend.
- Put the micro-controller in sleep when we aren't sending data.
Because Sigfox limits the number of messages one can send per day, we can only dispatch 140 messages within 24 hours. Therefore, we can only measure once every ten minutes.
To create our Artificial Intelligence, we decided to train a neural network to analyze sound frequency in a hive. To that end, we used Edge Impulse which is a development platform. It allows you to conceive a device with embedded machine learning effortlessly.
After creating an Edge Impulse account and a project, we had the choice between two methods to train our neural network.
The first one required the use of and IoT discovery kit which we connected to Edge Impulse following this tutorial. Then, to develop an AI able to recognize different sound frequencies, we followed the steps as explained here.
The second methods did not required the B-L475E-IOT01A2 board. However, it was extremely time consuming. Indeed, after searching and downloading data sets (to bee or not to bee and The Hiveeyes Community), each sound sample had to be hand cut and uploaded in our design. For the majority of our project, we chose this method since we were unable to collect samplings directly from a hive.
To begin, we created an impulse design and set the parameters required to train our AI. Because we are dealing with bees, we needed to take a bigger window size than the one demonstrated in the tutorial. We chose to use an MFCC bloc to train our neural network, but it was not our only option. The MFE and Spectogram blocks could have also served to train the AI. Depending on the range of frequency studied, either bloc could have worked better than the others.
Next, we determined the number of training cycle, the learning rate and the minimum confidence rating to set as these parameters influence the accuracy of the model considerably. At the end, a confusion matrix showed the accuracy of our NN. When we were unsatisfied with the results, we uploaded additional data and retrain our model.
As you can see, our NN struggled to recognize when there were bees. We were not able to retrain it due to a lack of data and time.
The last step would have been to export our AI on our STM board.
PCB MakingThe Kicad project file with all sources are available to download in the Schematics tab.
The first step of PCB making is to do an electrical schematic with every component.
Afterwards, we followed a tutorial to conceive our board and associated our temperature sensors to grove connectors prints for a sturdier device.
While designing the printed circuit board, we noticed some pins (D7, D8, and A7) would not allow us to collect our desired set of data. This is due to how the Nucleo STM32 is made, so before printing the board make sure to test every pin.
Throughout our project, we produced 2 PCBs. As mentioned earlier, at first we wanted to be able to study the hive's sound frequencies. As a result, we designed and printed a circuit board that would allow us to collect sound samples with a microphone.
Since then, we had to design a second one to reduce our energy consumption. Considering the fact that, at that point, we were resigned not to implement the AI, we decided to downsize our system as much as possible.
Once the design was completed, we generated the Gerber files necessary to print our circuit board. For this project, we had access to a desktop PCB milling machine for all of our printings but you can send your files to a manufacturer.
Sigfox and UbidotsTo gather our data from a remote location, we used the Sigfox Network.
To set this up, we had to activate our Wisol device here. Then, we created and signed in on a Ubidots account and added a new device.
The next step is to we configure a Callback following this tutorial.
Last, we created a user interface on Ubidots with a Dashboard to facilitate data examination.
To make our system autonomous, we chose to use a battery. The latter can be charged with solar energy thanks to the Lipo Rider Pro board which converts the energy received from the solar panel into a storable one.
Then, to feed our system, we soldered wires going from the Lipo Rider Pro to our PCB. We added an ON/OFF switch to make our system easier to use.
To reduce energy consumption, we decided to use a 5 - 3.3 Volt converter (LDO) instead of using the one embedded in the controller. Indeed, by doing this step, we were enable to take out the solder bridges SB9 and SB14 on the bottom layer of our micro-controller. We also removed the LEDs as circle below.
Unsoldering these elements must be done last since reprogramming the board would be impossible afterwards.
First and foremost, we recommend you to use a double layered H chassis to fix the strain gauge and stabilize the hive. Some manufacturers can construct it for you. Otherwise, you can do it yourself as pictured in the drawing below.
The strain gauge (gray) is screwed to the underside of the top H chassis (dark brown) and to the upper side of the bottom one (light brown). We recommend using sturdy and water-resistant material such as aluminum.
Once the system was tested and in working order, we chose a size-adapted hermetic box. Afterwards, we placed each element meticulously in order to optimize space. We had to drill holes in the sides of the box so that our sensors could read inside the hive. Once each component was in its designated place, we screwed the lid on and hot glued around the sensors to make it waterproof.
Comments
Please log in or sign up to comment.