Skip to content

Commit

Permalink
fix: add missing white control prompt during setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sinedied committed Jun 28, 2023
1 parent 074c211 commit a7910b0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,14 @@ export class DmxHue {
{
type: 'confirm',
name: 'colorloop',
message: 'Enable colorloop feature',
default: Util.config.get('colorloop') || false
message: 'Enable colorloop feature (when RGB channels are set to 1)',
default: Util.config.get('colorloop') ?? false
},
{
type: 'confirm',
name: 'white',
message: 'Enable white control feature (adds 2 DMX channels per light)',
default: Util.config.get('white') ?? false
},
{
type: 'confirm',
Expand Down

0 comments on commit a7910b0

Please sign in to comment.