Difference between revisions of "LoraBatBox"

From RevSpace
Jump to navigation Jump to search
(time synchronisation algorithm)
(24 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
   |Name=LoraBatBox
 
   |Name=LoraBatBox
 
   |Omschrijving=Monitoring bat boxes with LoRa
 
   |Omschrijving=Monitoring bat boxes with LoRa
 +
  |Picture=lorabatbox.jpg
 
   |Status=Initializing
 
   |Status=Initializing
 
   |Contact=bertrik
 
   |Contact=bertrik
Line 12: Line 13:
 
Some kinds of bats can even use a bat box to raise their young.
 
Some kinds of bats can even use a bat box to raise their young.
  
To check if a bat box is in use by bats, you can walk up to the box during the day and shine a light into it to see if there are any bats there.
+
To check if a bat box is in use by bats, you can walk up to the tree that the box is mounted on and shine a light into it to see if there are any bats there.
But I think it would be nice to investigate if this can be done automatically, without disturbing them with a light!
+
But I think it would be nice to investigate if this can be done automatically, without having to go to the individual box and without disturbing the bats with a light!
  
 
== Introduction ==
 
== Introduction ==
Line 19: Line 20:
 
Periodically (say once a day), the presence of bats is broadcast using a LoRa (long range) radio transmitter to a central place (e.g. the internet).   
 
Periodically (say once a day), the presence of bats is broadcast using a LoRa (long range) radio transmitter to a central place (e.g. the internet).   
  
== Design choices ==
+
== Design ==
To sense the presence of bats inside the bat box, I plan to use a PIR (passive infrared) which can detect movement of warm bodies.
+
 
A PIR typically has a low current requirement (say 70 uA), so it can probably be turned on most of the time.
+
[[File:pir-sensor.png|left|100px]]
 +
=== PIR movement detection ===
 +
To sense the presence of bats inside the bat box, I plan to use a PIR (passive infrared) detector module which can detect movement of warm bodies.
 +
A PIR typically has a low current requirement (say < 0.1 mA), so it can probably be turned on most of the time.
 
Sleeping bats will likely not trigger the movement detection, but that's OK I think, knowing when they enter or leave the bat box is probably enough info.
 
Sleeping bats will likely not trigger the movement detection, but that's OK I think, knowing when they enter or leave the bat box is probably enough info.
  
 +
==== PIR sensor investigation ====
 +
I ordered a couple of different mini PIR sensors, so I could do some measurements on which PIR sensor is the 'best', meaning good sensitivity and low quiescent current.
 +
 +
The table below shows some of the properties I measured, including the supply current.
 +
Some sensors use a little more when activated, but this was so little that I didn't write it down separately.
 +
Also, all sensors I bought seem to have an internal regulator, so every one was fed with 5V, which is then down-regulated to some lower voltage on board the PIR module. This can be a problem because I plan to use a single lithium cell so I have only about 3.2V available.
 +
 +
{|class="wikitable"
 +
! Image !! Price !! Claimed current !! Measured current !! Onboard regulator !! Remarks
 +
|-
 +
| [[File:pir1.png|link=https://nl.aliexpress.com/item/Mini-IR-Pyroelectric-Infrared-PIR-Motion-Human-Sensor-Automatic-Detector-Module-high-reliability-12mm-x-25mm/32749737125.html]] || USD 1.99 || < 0.1mA || 15 uA || HT7530-1 (3.0V) || <b>probably best candidate to investigate further: probably 3.3V compatible + very low idle current.</b> See also [http://unusualelectronics.co.uk/as312-am312-mini-pir-module-review/?v=796834e7a283 this page], explaining it contains an AS312 PIR sensor, with the electronics on the board basically only doing some voltage regulation
 +
|-
 +
| [[File:pir2.png|link=https://nl.aliexpress.com/item/New-Top-Selling-Mini-IR-Pyroelectric-Infrared-PIR-Automatic-Control-Safety-Protecting-Motion-Human-Sensor-Detector/32598988445.html]] || USD 2.19 || < 50uA || 1 mA || 7144 (4.4V) || probably worst candidate: high idle current, weird pitch (2mm?) connector, not 3.3V compatible!
 +
|-
 +
| [[File:pir3.png|link=https://nl.aliexpress.com/item/Mini-IR-Pyroelectric-Infrared-Human-Body-Sensor-Module-HC-SR505-Pint-sized-PIR-Motion-Detector-For/32691820649.html]] || USD 1.75 || <60uA || 75 uA || 7133 (3.3V) || aka HC-SR505, it looks like it misses a some part connecting to the OUT pin!
 +
|}
 +
 +
In relation to being 3.3V compatible, [http://randomnerdtutorials.com/modifying-cheap-pir-motion-sensor-to-work-at-3-3v/ here's a guide on modifying a PIR module for 3.3V].
 +
 +
[[File:ttn.png|right|100px]]
 +
=== LoRa / The-Things-Network ===
 
I think the LoRa radio technology is perfectly suited as a transmission medium for sending the bat box occupancy data.
 
I think the LoRa radio technology is perfectly suited as a transmission medium for sending the bat box occupancy data.
 
LoRa has a larger range than similar radio technologies, has relative immunity to narrow-band interference and allows for low-power transmissions.   
 
LoRa has a larger range than similar radio technologies, has relative immunity to narrow-band interference and allows for low-power transmissions.   
There are already several LoRa gateways provided by the-things-network (TTN) that can receive and forward the data for free (with a fair-use policy).
+
There are already several LoRa gateways provided by the-things-network (TTN) that can receive and forward the data for free (no subscription needed, fair-use policy).
 
If the LoRa network is down for some reason, no harm is done to the bats, possibly just a few days worth of data lost, and I think I can come up with a solution to that.
 
If the LoRa network is down for some reason, no harm is done to the bats, possibly just a few days worth of data lost, and I think I can come up with a solution to that.
  
[[File:HTB1PemDJpXXXXXHXpXXq6xXFXXXM.jpg|left|thumb]]
+
[[File:HTB1PemDJpXXXXXHXpXXq6xXFXXXM.jpg|right|200px]]
[[File:Lifepo4.jpg|right|thumb]]
+
=== ESP32 with LoRa ===
As the main processor, I plan to use an [https://en.wikipedia.org/wiki/STM32#STM32_F1 STM32 processor board]:
+
There are nice boards containing an ESP32 with a LoRa radio, I think I'll use this one instead of an STM32
* already voltage compatible (3.3V) with an RFM95 LoRa transceiver
 
* low-cost, processor board can be found for about E2,- each
 
* apparently has good low-power performance and sleep modes
 
* has a 32 kHz crystal on board, so it can run an RTC
 
  
 +
[[File:Lifepo4.jpg|right|100px]]
 +
 +
=== LiFePO4 Battery ===
 
To power the electronics, I plan to use a [https://en.wikipedia.org/wiki/Lithium_iron_phosphate_battery LiFePO4 battery].
 
To power the electronics, I plan to use a [https://en.wikipedia.org/wiki/Lithium_iron_phosphate_battery LiFePO4 battery].
A battery of this type has a voltage of around 3.3V, so it is capable of running the electronics directly, without a voltage regulator.
+
A battery of this type has a voltage of around 3.2V, so it is capable of running the electronics directly, without a voltage regulator.
 
It also has a quite large capacity (mAh per gram) and is relatively safe (doesn't catch fire easily, unlike some other lithium battery types).
 
It also has a quite large capacity (mAh per gram) and is relatively safe (doesn't catch fire easily, unlike some other lithium battery types).
 +
 +
Alternatively, just use a standard 18650 lithium cell and put a diode in series to drop the voltage by about 0.6V.
  
 
== Operation ==
 
== Operation ==
Line 46: Line 72:
 
Encoded using 1 bit per interval, we can send the result of one day in just 12 bytes (excluding overhead from the LoRaWAN protocol, about 13 bytes and our own overhead, e.g. a time stamp).
 
Encoded using 1 bit per interval, we can send the result of one day in just 12 bytes (excluding overhead from the LoRaWAN protocol, about 13 bytes and our own overhead, e.g. a time stamp).
  
If movement is detected by the PIR, the processor is woken up, notes the movement in internal memory and turns off the PIR so it can sleep for the rest of the 15 minute interval.  
+
If movement is detected by the PIR, the processor is woken up, it notes the movement in internal memory and turns off the PIR so it can sleep for the remainder of the 15 minute interval.  
 
This way, we conserve the maximum amount of energy in the battery and make it last as long as possible.
 
This way, we conserve the maximum amount of energy in the battery and make it last as long as possible.
 
(idea: use a solar panel to recharge).
 
(idea: use a solar panel to recharge).
Line 53: Line 79:
  
 
=== time synchronisation algorithm ===
 
=== time synchronisation algorithm ===
 +
To be replaced by the LoRaWAN time synchronisation feature?
 +
 
To do all of this, the LoraBatBox needs to know the time of course.
 
To do all of this, the LoraBatBox needs to know the time of course.
To keep the time, we can use the real-time-clock (RTC) onboard the STM32 processor.
+
To keep the time, we can use the (RTC) onboard the STM32 processor.
 
I plan to synchronize the time using the following algorithm:
 
I plan to synchronize the time using the following algorithm:
 
* in every "up-link" transmission from the bat box to the network, there is a field containing the UTC time (seconds since 1970/1/1) from the point of view of the bat box
 
* in every "up-link" transmission from the bat box to the network, there is a field containing the UTC time (seconds since 1970/1/1) from the point of view of the bat box
Line 65: Line 93:
 
When the bat box receives the down-link message, it applies the offset to its clock and so updates itself to the correct time.
 
When the bat box receives the down-link message, it applies the offset to its clock and so updates itself to the correct time.
 
It doesn't really matter how much time there is between an up-link and a down-link or when the down-link message is scheduled exactly, since the network sends a time *difference*, not an absolute time.
 
It doesn't really matter how much time there is between an up-link and a down-link or when the down-link message is scheduled exactly, since the network sends a time *difference*, not an absolute time.
Down-link messages are only sent when there is a large time error, so they should be relatively infrequent. This reduces the network load on the TTN.
+
Down-link messages are only sent when there is a large time error, so they should be relatively infrequent, reducing the network load on the TTN.
  
 
== Links ==
 
== Links ==
 
* https://developer.mbed.org/teams/Semtech/code/LoRaWAN-demo-76/
 
* https://developer.mbed.org/teams/Semtech/code/LoRaWAN-demo-76/
 +
* https://www.thethingsnetwork.org/labs/story/a-cheap-stm32-arduino-node
 +
  
 
== Future ideas ==
 
== Future ideas ==
Some silly ideas to be implemented in the future:
+
Challenges and ideas to be implemented in the future:
* add some kind of test signal, to verify the behaviour of the PIR, perhaps light a bulb once a day for a few seconds?
+
* find some way to keep the electronics safe from weather, e.g. wrap it all in a kind of silicone pouch
* measure other properties of the bat box, like temperature and relative humidity
 
* create a nice front-end that shows the received data in easy to understand map
 

Revision as of 08:02, 8 July 2019

Project LoraBatBox
Lorabatbox.jpg
Monitoring bat boxes with LoRa
Status Initializing
Contact bertrik
Last Update 2019-07-08

This page is an idea for adding LoRa capability to a bat box.

A popular kind of bat box is a flat wooden box with an opening on the bottom and mounted to a tree trunk or building. Bats can use these to sleep during the day (they hunt at night for insects). Some kinds of bats can even use a bat box to raise their young.

To check if a bat box is in use by bats, you can walk up to the tree that the box is mounted on and shine a light into it to see if there are any bats there. But I think it would be nice to investigate if this can be done automatically, without having to go to the individual box and without disturbing the bats with a light!

Introduction

The basic idea is to mount some piece of electronics in or on the bat box that monitors if there are any bats in there. Periodically (say once a day), the presence of bats is broadcast using a LoRa (long range) radio transmitter to a central place (e.g. the internet).

Design

Pir-sensor.png

PIR movement detection

To sense the presence of bats inside the bat box, I plan to use a PIR (passive infrared) detector module which can detect movement of warm bodies. A PIR typically has a low current requirement (say < 0.1 mA), so it can probably be turned on most of the time. Sleeping bats will likely not trigger the movement detection, but that's OK I think, knowing when they enter or leave the bat box is probably enough info.

PIR sensor investigation

I ordered a couple of different mini PIR sensors, so I could do some measurements on which PIR sensor is the 'best', meaning good sensitivity and low quiescent current.

The table below shows some of the properties I measured, including the supply current. Some sensors use a little more when activated, but this was so little that I didn't write it down separately. Also, all sensors I bought seem to have an internal regulator, so every one was fed with 5V, which is then down-regulated to some lower voltage on board the PIR module. This can be a problem because I plan to use a single lithium cell so I have only about 3.2V available.

Image Price Claimed current Measured current Onboard regulator Remarks
Pir1.png USD 1.99 < 0.1mA 15 uA HT7530-1 (3.0V) probably best candidate to investigate further: probably 3.3V compatible + very low idle current. See also this page, explaining it contains an AS312 PIR sensor, with the electronics on the board basically only doing some voltage regulation
Pir2.png USD 2.19 < 50uA 1 mA 7144 (4.4V) probably worst candidate: high idle current, weird pitch (2mm?) connector, not 3.3V compatible!
Pir3.png USD 1.75 <60uA 75 uA 7133 (3.3V) aka HC-SR505, it looks like it misses a some part connecting to the OUT pin!

In relation to being 3.3V compatible, here's a guide on modifying a PIR module for 3.3V.

Ttn.png

LoRa / The-Things-Network

I think the LoRa radio technology is perfectly suited as a transmission medium for sending the bat box occupancy data. LoRa has a larger range than similar radio technologies, has relative immunity to narrow-band interference and allows for low-power transmissions. There are already several LoRa gateways provided by the-things-network (TTN) that can receive and forward the data for free (no subscription needed, fair-use policy). If the LoRa network is down for some reason, no harm is done to the bats, possibly just a few days worth of data lost, and I think I can come up with a solution to that.

HTB1PemDJpXXXXXHXpXXq6xXFXXXM.jpg

ESP32 with LoRa

There are nice boards containing an ESP32 with a LoRa radio, I think I'll use this one instead of an STM32

Lifepo4.jpg

LiFePO4 Battery

To power the electronics, I plan to use a LiFePO4 battery. A battery of this type has a voltage of around 3.2V, so it is capable of running the electronics directly, without a voltage regulator. It also has a quite large capacity (mAh per gram) and is relatively safe (doesn't catch fire easily, unlike some other lithium battery types).

Alternatively, just use a standard 18650 lithium cell and put a diode in series to drop the voltage by about 0.6V.

Operation

The basic idea is to indicate whether movement was detected within intervals of 15 minutes. So each day the electronics see 96 such intervals (24 hours, 4 intervals per hour). Encoded using 1 bit per interval, we can send the result of one day in just 12 bytes (excluding overhead from the LoRaWAN protocol, about 13 bytes and our own overhead, e.g. a time stamp).

If movement is detected by the PIR, the processor is woken up, it notes the movement in internal memory and turns off the PIR so it can sleep for the remainder of the 15 minute interval. This way, we conserve the maximum amount of energy in the battery and make it last as long as possible. (idea: use a solar panel to recharge).

Once a day, at some random time, the bat box sends all the data collected so far to the network application connected to the TTN.

time synchronisation algorithm

To be replaced by the LoRaWAN time synchronisation feature?

To do all of this, the LoraBatBox needs to know the time of course. To keep the time, we can use the (RTC) onboard the STM32 processor. I plan to synchronize the time using the following algorithm:

  • in every "up-link" transmission from the bat box to the network, there is a field containing the UTC time (seconds since 1970/1/1) from the point of view of the bat box
  • upon reception (a few seconds later), the network application compares the time field sent by the bat box with the actual time
  • if the difference is beyond some threshold (say 2 minutes), it prepares a down-link transmission with the required offset to correct the time
  • when the bat box receives the down-link transmission, it updates its clock with the correction offset.

So, for example if a bat box powers up with no knowledge of the time at all, it'll start at UTC time 0. The network application will note a huge time error and prepare a down-link message with the correct offset. When the bat box receives the down-link message, it applies the offset to its clock and so updates itself to the correct time. It doesn't really matter how much time there is between an up-link and a down-link or when the down-link message is scheduled exactly, since the network sends a time *difference*, not an absolute time. Down-link messages are only sent when there is a large time error, so they should be relatively infrequent, reducing the network load on the TTN.

Links


Future ideas

Challenges and ideas to be implemented in the future:

  • find some way to keep the electronics safe from weather, e.g. wrap it all in a kind of silicone pouch