Is it possible to "force" send SensorDoor value regularly?
I am using magnetic sensor together with interrupt feature but when sensor status is change too fast before main loop is finished, sensor value remains in wrong state until magnetic sensor value is physically changed again.
So I would like to set that SensorDoor value will be set regularly like e.g. temperature sensors values. I tried to add:
door.setReportIntervalMinutes(5);
But it does not work in this case. Value is not reported based on this interval. Only way how to get SensorDoor value back to right state is physically change its value (open/close magnetic sensors).
Btw Nodemanager is really awsome. Great work!