NetworkConnectionStatus: Message<"meshtastic.NetworkConnectionStatus"> & {
    ipAddress: number;
    isConnected: boolean;
    isMqttConnected: boolean;
    isSyslogConnected: boolean;
}

Ethernet or WiFi connection status

Type declaration

  • ipAddress: number

    IP address of device

    from field: fixed32 ip_address = 1;

  • isConnected: boolean

    Whether the device has an active connection or not

    from field: bool is_connected = 2;

  • isMqttConnected: boolean

    Whether the device has an active connection to an MQTT broker or not

    from field: bool is_mqtt_connected = 3;

  • isSyslogConnected: boolean

    Whether the device is actively remote syslogging or not

    from field: bool is_syslog_connected = 4;

from message meshtastic.NetworkConnectionStatus