Hi! This is a great lib. Don't think I could've gotten going with out it. I'm trying to program some Tile lights. The basic apis work appropriately, but the actual Tile requests fail. I've tried extending the library doing the following, but I'm getting errors across the board.
LifxLanDevice.prototype.tileGetDeviceChain = function(params) {
return this._request(701, params);
};
LifxLanDevice.prototype.tileStateDeviceChain = function(params) {
return this._request(702, params);
};
LifxLanDevice.prototype.tileSetUserPosition = function(params) {
return this._request(703, params);
};
LifxLanDevice.prototype.tileGetTileState64 = function(params) {
return this._request(707, params);
};
LifxLanDevice.prototype.tileStateTileState64 = function(params) {
return this._request(711, params);
};
LifxLanDevice.prototype.tileSetTileState64 = function(params) {
return this._request(715, params);
};
Any Ideas!?
Thanks in advance :)
Hi! This is a great lib. Don't think I could've gotten going with out it. I'm trying to program some Tile lights. The basic apis work appropriately, but the actual Tile requests fail. I've tried extending the library doing the following, but I'm getting errors across the board.
Any Ideas!?
Thanks in advance :)