npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

litra

v4.5.0

Published

A driver for controlling Logitech Litra devices connected via USB, including the Logitech Litra Glow and Logitech Litra Beam, from a CLI or your JavaScript code

Downloads

30

Readme

Logitech Litra

This driver allows you to control USB-connected Logitech Litra lights using a CLI or from JavaScript code.

The following Logitech Litra devices are supported:

With this driver, you can:

  • Turn your light on and off
  • Check if the light is on or off
  • Set and get the brightness of your light
  • Set and get the temperature of your light

Compatibility

This library:

  • only works with Litra devices connected via USB. Devices connected via Bluetooth are not supported.
  • is only tested on macOS Monterey (12.5) and Windows 11. It's powered by node-hid, which is compatible with other macOS versions, Windows and Linux, so it would be expected to work there too, but your mileage may vary 🙏

Using as a command line tool

Make sure you have Node.js available on your machine, and then install the package with npm install -g litra.

With the package installed:

  • Use the litra-on, litra-off and litra-toggle commands to turn your light on and off.
  • Use the litra-brightness command to set your Litra's brightness to a percentage of its maximum (e.g. litra-brightness 90).
  • Use the litra-brightness-lm command to get or set your Litra's brightness to a value in Lumen (e.g. litra-brightness 250).
  • Use the litra-temperature-k command to get or set your Litra's temperature to a value in Kelvin (e.g. litra-temperature-k 6500).

All of the these commands support a --serial-number/-s argument to specify the serial number of the device you want to target. If you only have one Litra device, you can omit this argument. If you have multiple devices, we recommend specifying it. If it isn't specified, the "first" device will be picked, but this isn't guaranteed to be stable between command runs.

You can also use:

  • litra-devices to list Litra devices connected to your machine, including in JSON format with --json
  • litra-identify to interactively identify the serial numbers of your Litra devices, if you have multiple connected

Each CLI command can also be called with --help for more detailed documentation.

Using as a JavaScript library

Installation

Simply add the litra Node.js package to your package.json and install it:

npm install --save litra

Usage

Checking if a Litra device is plugged in

The findDevice function checks your computer to find whether a Logitech Litra device is plugged in.

If it is, it returns an object representing the device, which you can pass into other function. If it isn't, it returns null.

import { findDevice } from 'litra';

const device = findDevice();

if (device) {
  console.log(`Found a ${device.type} device connected`);

  // Do something
} else {
  // Blow up
}

If you're a huge fan of Litra devices and you have multiple plugged in at the same time, use findDevices instead:

const devices = findDevices();

if (devices.length > 0) {
  console.log(`Found ${devices.length} devices connected`);
  for (let i = 0; i < devices.length; ++i) {
    console.log(`Device ${i + 1}: ${devices[i].type}`);
  }

  // Do something
} else {
  // Blow up
}

Turning your Litra device on or off

Find your device with findDevice, and then use the simple turnOn and turnOff functions. They just take one parameter: the device.

You can also use the isOn function to check if your device is on/off.

import { findDevice, turnOff, turnOn, isOn } from 'litra';

const device = findDevice();

// Turn your light on, then turn it off again after 5 seconds
if (device) {
  turnOn(device);

  if (isOn(device)) {
    console.log(
      `Your device is now on!`,
    );
  }

  setTimeout(() => {
    turnOff(device)

    if (!isOn(device)) {
      console.log(
        `Your device is now off!`,
      );
    }
  }, 5000));
}

Alternatively, you can use the toggle function to switch your device on if it's off and vice-versa.

import { findDevice, toggle } from 'litra';

const device = findDevice();

// Turn your light on if it's currently off, and vice-versa
toggle();

Setting and getting the brightness of your Litra device

You can set the brightness of your Litra device, measured in Lumen, using the setBrightnessInLumen function.

To get the current brightness of your device, use the getBrightnessInLumen function.

The Litra Glow supports brightness between 20 and 250 Lumen. The Litra Beam and Litra Beam LX support brightness between 20 and 400 Lumen.

You can programatically check what brightness levels are supported by your device. Once you know what brightness levels are supported, you can set the brightness in Lumen. If you try to set a value that isn't allowed by your device, an error will be thrown:

import {
  findDevice,
  getMaximumBrightnessInLumenForDevice,
  getMinimumBrightnessInLumenForDevice,
  setBrightnessInLumen,
} from 'litra';

const device = findDevice();

if (device) {
  const minimumBrightness = getMinimumBrightnessInLumenForDevice(device);
  const maximumBrightness = getMaximumBrightnessInLumenForDevice(device);

  console.log(
    `The minimum allowed brightness is ${minimumBrightness} and the maximum is ${maximumBrightness}`,
  );

  setBrightnessInLumen(device, 150);

  // Will return 150
  getBrightnessInLumen(device);
}

You can also set brightness level to a percentage with setBrightnessPercentage if you don't want to think in Lumen:

import { findDevice, setBrightnessPercentage } from 'litra';

const device = findDevice();

if (device) {
  setBrightnessPercentage(device, 75);
}

Setting the temperature of your Litra device

You can set the temperature of your Litra device, measured in Kelvin, using the setTemperatureInKelvin function.

The getTemperatureInKelvin function can be used to get the current temperature your device is set to.

All supported Litra devices support temperatures which are multiples of 100 between 2700 and 6500 Kelvin (i.e.. 2700, 2800, 2900, etc.).

You can check programatically what temperature levels are supported by your device. Once you know what temperature levels are supported, you can set the temperature in Kelvin. If you try to set a value that isn't allowed by your device, an error will be thrown:

import {
  findDevice,
  getAllowedTemperaturesInKelvinForDevice,
  getMaximumTemperatureInKelvinForDevice,
  getMinimumTemperatureInKelvinForDevice,
  setTemperatureInKelvin,
} from 'litra';

const device = findDevice();

if (device) {
  const minimumTemperature = getMinimumTemperatureInKelvinForDevice(device);
  const maximumTemperature = getMaximumTemperatureInKelvinForDevice(device);
  const allowedTemperatures = getAllowedTemperaturesInKelvinForDevice(device);

  console.log(
    `The minimum allowed temperature is ${minimumTemperature} and the maximum is ${maximumTemperature}`,
  );
  console.log(`The following temperature are allowed: ${allowedTemperatures.join(', ')}`);

  setTemperatureInKelvin(device, 6500);

  // Should return 6500
  getTemeratureInKelvin(device);
}

Using with Raycast

Litra integrates with Raycast so you can manage your Litra device from the Raycast launcher.

To use the integration, just install this package globally with npm install -g litra, add the "Logitech Litra" extension from the Raycast Store (source code here), find the "Manage Devices" command and then follow the instructions to configure the extension.

Using with Oversight

Litra integrates with Oversight to allow you to automatically turn your Litra device on or off when your webcam turns on and off. This allows you to be illuminated every time you join a video call!

To use the integration, just point Oversight at the litra-oversight CLI command. You can find the path of the binary on Unix machines by running which litra-oversight from a terminal after installing this package.

If you have multiple Litra devices, they will all be targeted when litra-oversight runs