npm install limitlessledThe limitlessled module provides a driver to connect and communicate over the network with the WiFi controller device.
The WiFi bridge in it's default state act as a WiFi Access Point, providing standalone wireless network. It controls the LEDs acting as a RC. It can be configured to work over your LAN.
Note that the WiFi bridge should be connected to your LAN. Once it's configured and accessible over LAN you can control your LED bulbs.
This package provides a programmatic interface for the WiFi bridge.
Currently only the Bright Dual White Light Bulb is supported.
The driver uses UDP to communicate with the bridge, packets are dropped.
-----
npm install limitlessled``javascript
var Controller = require('limitlessled');
var leds = new LedController({
port: 8899,
host:'192.168.1.1'
});
leds.all().ledsOn(function(){
leds.zone(3).coolerColor();
});
`
[limitless]: http://limitlessled.com
[examples]: https://github.com/goliatone/limitlessled/tree/master/examples
[documentation]: https://github.com/goliatone/limitlessled/tree/master/docs