@ginden/blinkstick-v2
    Preparing search index...

    Variable deviceDescriptionsConst

    deviceDescriptions: {
        BlinkStick: {
            description: { ledCount: 1 };
            test: (d: MinimalDeviceInfo) => boolean;
        };
        "BlinkStick Flex": {
            description: { ledCount: 32; variableLedCount: true };
            test: (d: MinimalDeviceInfo) => boolean;
        };
        "BlinkStick Nano": {
            description: { ledCount: 2 };
            test: (d: MinimalDeviceInfo) => boolean;
        };
        "BlinkStick Pro": {
            description: { ledCount: 192; variableLedCount: true };
            test: (d: MinimalDeviceInfo) => boolean;
        };
        "BlinkStick Square": {
            description: { ledCount: 8 };
            test: (d: MinimalDeviceInfo) => boolean;
        };
        "BlinkStick Strip": {
            description: { ledCount: 8 };
            test: (d: MinimalDeviceInfo) => boolean;
        };
        "BlinkStick Strip Mini": {
            description: { ledCount: 4 };
            test: (d: MinimalDeviceInfo) => boolean;
        };
    } = ...

    Known Blinkstick devices and their LED counts. Have a look at https://github.com/arvydas/blinkstick-python/blob/master/blinkstick/blinkstick.py#L302 to see existing code.

    Type declaration

    • ReadonlyBlinkStick: { description: { ledCount: 1 }; test: (d: MinimalDeviceInfo) => boolean }
    • Readonly ExperimentalBlinkStick Flex: {
          description: { ledCount: 32; variableLedCount: true };
          test: (d: MinimalDeviceInfo) => boolean;
      }
    • ReadonlyBlinkStick Nano: { description: { ledCount: 2 }; test: (d: MinimalDeviceInfo) => boolean }
    • Readonly ExperimentalBlinkStick Pro: {
          description: { ledCount: 192; variableLedCount: true };
          test: (d: MinimalDeviceInfo) => boolean;
      }
    • ReadonlyBlinkStick Square: { description: { ledCount: 8 }; test: (d: MinimalDeviceInfo) => boolean }
    • ReadonlyBlinkStick Strip: { description: { ledCount: 8 }; test: (d: MinimalDeviceInfo) => boolean }
    • ReadonlyBlinkStick Strip Mini: { description: { ledCount: 4 }; test: (d: MinimalDeviceInfo) => boolean }