Neighbor: Message<"meshtastic.Neighbor"> & {
    lastRxTime: number;
    nodeBroadcastIntervalSecs: number;
    nodeId: number;
    snr: number;
}

A single edge in the mesh

Type declaration

  • lastRxTime: number

    Reception time (in secs since 1970) of last message that was last sent by this ID. Note: this is for local storage only and will not be sent out over the mesh.

    from field: fixed32 last_rx_time = 3;

  • nodeBroadcastIntervalSecs: number

    Broadcast interval of this neighbor (in seconds). Note: this is for local storage only and will not be sent out over the mesh.

    from field: uint32 node_broadcast_interval_secs = 4;

  • nodeId: number

    Node ID of neighbor

    from field: uint32 node_id = 1;

  • snr: number

    SNR of last heard message

    from field: float snr = 2;

from message meshtastic.Neighbor