Deep Trekker BRIDGE API - v1.0.3
    Preparing search index...

    Type Alias Device

    Device

    Device interface is a base interface for interacting with derived device types such as vehicles, reels, cameras, etc. In order to properly parse and generate the derived interface data, an appropriate schema must be selected. This can be done by parsing the device's

    and mapping the associated device schema.

    type Device = {
        ip?: string;
        model: DeviceModel;
        version?: DeviceVersion;
    }
    Index

    Properties

    Properties

    ip?: string

    IP address

    Deep Trekker internal device model numbers. This can be used for selecting the associated device schema.

    version?: DeviceVersion

    Version info for the device

    {
    "hardware": "1.0.0", //Hardware version of the device.
    "software": "1.0.0", //Software version of the device.
    "branchInfo": "main" //Branch that the software was compiled from
    }