Match exposure time to intval2 logic. Try a 5 second exposure time.
This commit is contained in:
parent
16f8675339
commit
43213cc6ce
|
@ -243,12 +243,15 @@ intval.setDir = function (val = true) {
|
||||||
return log.warn('Direction must be represented as either true or false')
|
return log.warn('Direction must be represented as either true or false')
|
||||||
}
|
}
|
||||||
intval._state.dir = val
|
intval._state.dir = val
|
||||||
|
log.info('setDir', { direction : dir ? 'forward' : 'backward' })
|
||||||
}
|
}
|
||||||
intval.setTime = function (val = 0) {
|
intval.setTime = function (val = 0) {
|
||||||
intval._state.frame.time = val
|
intval._state.frame.time = val
|
||||||
|
log.info('setTime', { time : val })
|
||||||
}
|
}
|
||||||
intval.setDelay = function (val = 0) {
|
intval.setDelay = function (val = 0) {
|
||||||
intval._state.frame.delay = val
|
intval._state.frame.delay = val
|
||||||
|
log.info('setDelay', { delay : val })
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Begin a single frame with set variables or defaults
|
* Begin a single frame with set variables or defaults
|
||||||
|
@ -284,9 +287,9 @@ intval.frame = function (dir = null, time = null) {
|
||||||
if (time !== null && time !== 0) {
|
if (time !== null && time !== 0) {
|
||||||
setTimeout(intval._pause, intval._state.frame.open)
|
setTimeout(intval._pause, intval._state.frame.open)
|
||||||
if (dir) {
|
if (dir) {
|
||||||
setTimeout(intval._startFwd, 1000)
|
setTimeout(intval._startFwd, (time - intval._state.frame.open))
|
||||||
} else {
|
} else {
|
||||||
setTimeout(intval._startBwd, 1000)
|
setTimeout(intval._startBwd, (time - intval._state.frame.open))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,4 +4,4 @@ const intval = require('../lib/intval')
|
||||||
|
|
||||||
intval.init()
|
intval.init()
|
||||||
|
|
||||||
intval.setTime(1000)
|
intval.setTime(5000)
|
Loading…
Reference in New Issue