Skip to content

Commit

Permalink
fix(jsconfbp): Added one more channel
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Sep 26, 2019
1 parent f4e85bf commit 0d760f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/utils/dmx/CameoHydrabeam100RGBW.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import PanTiltParam from './param/PanTiltParam'
import RangeParam from 'fivetwelve/lib/param/RangeParam.js'
import HiResParam from 'fivetwelve/lib/param/HiResParam.js'


import DmxDevice from './DmxDevice.js'

export default class CameoHydrabeam100RGBW extends DmxDevice {
Expand Down
5 changes: 3 additions & 2 deletions src/utils/dmx/InvolightLedPar170.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@ export default class InvolightLedPar170 extends DmxDevice {
super(Object.assign({}, options, {
params: {
dimmer: new RangeParam(1, { min: 0, max: 255 }),
color: new RgbParam([2, 3, 4])
color: new RgbParam([2, 3, 4]),
white: new RangeParam(5, { min: 0, max: 255 })
}
}))

this.layout = {}
this.layout.width = 1
this.layout.height = 1

this.channels = 4
this.channels = 5
this.weight = 1.2
}
}

0 comments on commit 0d760f9

Please sign in to comment.