Some sensors are able to generate an interupt when a certain metric value is exceeded. When enabled, you will receive an update of the metric value if the threshold is exceeded.
We allow to define two thresholds, i.e., threshold low and threshold high. When a metric value exceeds the threshold high (TH)
an interrupt is generated. In contrast, only when a metric value goes below threshold low (TL)
an interrupt occurs. This allow us to get updates in three distinct manners.
In all cases an interrupt is generated when the metric value exceeds TH
or when is falls below TL
. When playing with the TH
and TL
configuration we can manipulate when we want an update.
-
If we are interested to be notified when a value is higher than
TH
or lower thanTL
, we define:TH
with a higher value asTL
. For example: if we want to get sensor data when a sound level exceeds 100 dB or when it is lower dan 80 dB, we setTH=100
andTL=80
. -
If we are interested when a value enters the area between
TH
andTL
,TL
has a higher value thanTH
. For example: if we want to get sensor data when a sound level is between 80 and 100 dB, we setTH=80
andTL=100
. -
If we want to know when a metric value crosses a specific value, we can define
TH
equal toTL
. For example: if we want to get sensor data when a sound level crosses 85 dB, regardless if the sound level was higher or lower before, we setTH=85
andTL=85
.
In the figure below, dashed horizontal lines indicate when sensor data is transmitted to the gateway.
In the table below you can find the minimum and maximum values TL
and TH
can take, for each physical quantity and each sensor.
Sensor type | Physical quantity | minimum | maximum |
---|---|---|---|
Sound level sensor | Sound level (dB) | 75 | 120 |
Environmental sensor | Temperature (°C) | -40 | 100 |
Environmental sensor | Air pressure (hPa) | 0 | 65000 |
Environmental sensor | Humidity (%) | 0 | 100 |
Environmental sensor | Air quality (no unit) | 0 | 600 |
Button sensor | - (no thresholding) | - (no thresholding) | - (no thresholding) |
Light sensor | Illuminance (lux) | 0 | 65535 |
Power | Battery voltage (V) | 0 | 4.20 |
Pay attention! Due to the manner in which sound levels are calculated, the measured sound level is always at least 70 dB. Therefore it does not make sense to try to measure ‘quiet’ sounds. It is also not allowed to set thresholds lower than 75 dB, as this will lead to constant data transmission, which consume a lot of power and will drain the battery.