Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 2.65 KB

README.md

File metadata and controls

62 lines (45 loc) · 2.65 KB

JLifx

Screenshot

main release Coverage Status Maven Central

Small LIFX Wifi LED bulb control library and utility written in Java.

This project is not, in any way, affiliated or related to LIFX Labs.

Implementation is based on the specification by LIFX Labs (https://lan.developer.lifx.com/docs/introduction)

Installation

Command line tool

Run the build-cli.sh script to build the executable JAR jlifx.

Library

For Maven, add the following entry to your pom.xml (check https://search.maven.org/artifact/io.github.robvanderleek/jlifx for latest $VERSION):

    ...
    <dependencies>
        ...
        <dependency>
            <groupId>io.github.robvanderleek</groupId>
            <artifactId>jlifx</artifactId>
            <version>$VERSION</version>
        </dependency>
    </dependencies>
    ...

Usage

As command line tool

Build the executable JAR and run it from the command line, this will display the supported commands:

$ ./jlifx

Examples:

./jlifx switch all off
./jlifx color all red
./jlifx color livingroom red
./jlifx blink gateway
./jlifx blink 192.168.178.50 3
./jlifx rainbow all
./jlifx rainbow all 30

As library

Examples that show how to use the API: