ambx
TypeScript icon, indicating that this package has built-in type declarations

0.0.11 • Public • Published

amBX

Node.JS wrapper for AMBX's and Philips' gaming lights.

amBX speakers and wallwasher © Koninklijke Philips N.V. All image rights reserved

Installation & Requirements

Install using NPM

npm i ambx

This package uses node-usb, make sure to have libusb installed.

Getting Started

To create a new instance, use

import { CreateDevice, Lights } from 'ambx';

(async () => {
    try {
        // Create instance. Will throw if no amBX device is found
        const myAMBX = await CreateDevice();
        // Set the center wallwasher to red
        await myAMBX.SetColor(Lights.WallCenter, 255, 0, 0);
    } catch (e) {
        console.log('Something went wrong:', e);
    }
})();

Methods

tbd

/ambx/

    Package Sidebar

    Install

    npm i ambx

    Weekly Downloads

    0

    Version

    0.0.11

    License

    AGPL-3.0-or-later

    Unpacked Size

    40.8 kB

    Total Files

    9

    Last publish

    Collaborators

    • newyanko