interface ScannedBootloader {
    address: number;
    deviceType: "die" | "charger";
    name: string;
    pixelId: number;
    rssi: number;
    systemId: string;
    timestamp: Date;
    type: "bootloader";
}

Implemented by

Properties

address: number

Bluetooth MAC address, 48 bits, Not available on iOS.

deviceType: "die" | "charger"

The type of Pixels device.

name: string

The Pixels die name.

pixelId: number

The unique Pixel id of the device (if applicable).

rssi: number

The last RSSI value measured by the peripheral.

systemId: string

The unique id assigned by the system to the Bluetooth peripheral.

timestamp: Date

Timestamp when the advertisement data was received.

type

Device type is Bootloader.