-
I have a technical question about the Meshtastic app (Android, 2.5.21): |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The logic right now is that a node is considered "online" if you last heard from it less than 2 hours ago: /**
* true if the device was heard from recently
*/
val isOnline: Boolean
get() {
val now = System.currentTimeMillis() / 1000
val timeout = 2 * 60 * 60
return (now - lastHeard <= timeout)
} If you open the Users tab it should sort by last heard by default, so the top nodes in the list with a last heard time of < 2h will be these online nodes. |
Beta Was this translation helpful? Give feedback.
The logic right now is that a node is considered "online" if you last heard from it less than 2 hours ago:
If you open the Users tab it should sort by last heard by default, so the top nodes in the list with a last heard time of < 2h will be these online nodes.