zigbee-on-host
    Preparing search index...

    Type Alias PortOptions

    Example:

    {
    path: 'COM4',
    baudRate: 460800,
    rtscts: true,
    }
    type PortOptions = {
        baudRate?: number;
        path: string;
        rtscts?: boolean;
    }
    Index

    Properties

    baudRate?: number
    path: string
    rtscts?: boolean