FreakingGenius - v0.1.0
    Preparing search index...

    Interface BridgeCapabilities

    Hardware capabilities reported by the edge device on initial connection.

    Sent inside a CapabilityReportMessage.

    interface BridgeCapabilities {
        deviceId: string;
        firmwareVersion: string;
        hasPressureSensitivity: boolean;
        maxPressureLevels: number;
        refreshRateHz: number;
        screenHeight: number;
        screenWidth: number;
        supportsColor: boolean;
    }
    Index

    Properties

    deviceId: string

    Unique device identifier (serial number or UUID).

    firmwareVersion: string

    Firmware / software version string running on the device.

    hasPressureSensitivity: boolean

    true if the stylus reports analogue pressure values.

    maxPressureLevels: number

    Number of distinct pressure levels the stylus hardware can report.

    refreshRateHz: number

    Display refresh rate in Hz.

    screenHeight: number

    Physical screen height in pixels.

    screenWidth: number

    Physical screen width in pixels.

    supportsColor: boolean

    true if the screen supports colour rendering (vs greyscale e-ink).