Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | const packets = exports;
/*
* Device related packages
*/
packets.getService = require('./getService');
packets.stateService = require('./stateService');
packets.getHostInfo = require('./getHostInfo');
packets.stateHostInfo = require('./stateHostInfo');
packets.getHostFirmware = require('./getHostFirmware');
packets.stateHostFirmware = require('./stateHostFirmware');
packets.getWifiInfo = require('./getWifiInfo');
packets.stateWifiInfo = require('./stateWifiInfo');
packets.getWifiFirmware = require('./getWifiFirmware');
packets.stateWifiFirmware = require('./stateWifiFirmware');
packets.getLabel = require('./getLabel');
packets.setLabel = require('./setLabel');
packets.stateLabel = require('./stateLabel');
packets.getPower = require('./getPower');
packets.setPower = require('./setPower');
packets.statePower = require('./statePower');
packets.getVersion = require('./getVersion');
packets.stateVersion = require('./stateVersion');
packets.getInfo = require('./getInfo');
packets.stateInfo = require('./stateInfo');
packets.rebootRequest = require('./rebootRequest');
packets.rebootResponse = require('./rebootResponse');
packets.acknowledgement = require('./acknowledgement');
packets.echoRequest = require('./echoRequest');
packets.echoResponse = require('./echoResponse');
packets.getLocation = require('./getLocation');
packets.stateLocation = require('./stateLocation');
packets.getOwner = require('./getOwner');
packets.stateOwner = require('./stateOwner');
packets.getGroup = require('./getGroup');
packets.stateGroup = require('./stateGroup');
/*
* Light device related packages
*/
packets.getLight = require('./getLight');
packets.stateLight = require('./stateLight');
packets.setColor = require('./setColor');
packets.setWaveform = require('./setWaveform');
packets.setMultiZoneEffect = require('./setMultiZoneEffect');
packets.getTemperature = require('./getTemperature');
packets.stateTemperature = require('./stateTemperature');
packets.getInfrared = require('./getInfrared');
packets.setInfrared = require('./setInfrared');
packets.stateInfrared = require('./stateInfrared');
/*
* Sensor related packages
*/
packets.getAmbientLight = require('./getAmbientLight');
packets.stateAmbientLight = require('./stateAmbientLight');
/*
* MultiZone device related packages
*/
packets.getColorZones = require('./getColorZones');
packets.setColorZones = require('./setColorZones');
packets.stateZone = require('./stateZone');
packets.stateMultiZone = require('./stateMultiZone');
/*
* LIFX Switch device related packages
*/
packets.getRelayPower = require('./getRelayPower');
packets.setRelayPower = require('./setRelayPower');
packets.stateRelayPower = require('./stateRelayPower');
|