nanoleafy-js
Version:
An API client & command-line tool for the Nanoleaf Aurora light.
24 lines (19 loc) • 389 B
JavaScript
;
const
API = require('../index'),
chalk = require('chalk');
function builder(yargs) {}
function handler(argv)
{
const aurora = new API();
aurora.mode().then(v =>
{
console.log(`color mode == ${chalk.bold.green(v)}`);
});
}
module.exports = {
command: 'mode',
describe: 'get the current color mode for the Aurora',
builder,
handler
};