18 lines
No EOL
453 B
JavaScript
18 lines
No EOL
453 B
JavaScript
module.exports = {
|
|
ALL: 'all',
|
|
RANDOM: 'random',
|
|
|
|
MODE_SET: 'set',
|
|
MODE_MORPH: 'morph',
|
|
MODE_BLINK: 'blink',
|
|
MODE_PULSE: 'pulse',
|
|
MODE_POWEROFF: 'poweroff',
|
|
|
|
ARG_CONFIG: '--config',
|
|
ARG_CONFIG_SHORT: '-c',
|
|
ARG_LIST: '--list',
|
|
ARG_LIST_SHORT: '-ls',
|
|
|
|
DURATION_DEFAULT: require('../config.json').api.post.duration.default || 1000,
|
|
DELAY_DEFAULT: require('../config.json').api.post.delay.default || 500
|
|
} |