You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.
What's the best approach to handling a received signal on a sensor?
It seems emit_signal is called? However no signal will be emitted?
for receiver in receivers:
# propagate the signal if it changes the value of this node
if receiver is not None and self.capability[receiver]['value'] != value:
self.emit_signal(receiver, value)
I could check the value of the sensor everytime I receive a message but this is inefficient...
The text was updated successfully, but these errors were encountered:
What's the best approach to handling a received signal on a sensor?
It seems emit_signal is called? However no signal will be emitted?
I could check the value of the sensor everytime I receive a message but this is inefficient...
The text was updated successfully, but these errors were encountered: