Closed dtex closed 6 years ago
Required for stepper motor step speeds that are not a factor of 1000 steps/second or anytime acceleration is used (when using standardFirmata).
temporal.resolution(0.1)
temporal.resolution(0.01)
Date.now()
process.hrtime()
I'm gonna change this. Right now the significance of the passed time param changes with the resolution. That's dumb. Will resubmit.
Required for stepper motor step speeds that are not a factor of 1000 steps/second or anytime acceleration is used (when using standardFirmata).
temporal.resolution(0.1)
ortemporal.resolution(0.01)
to get resolution down to .1 or .01 ms.Date.now()
when resolution = 1, but switches toprocess.hrtime()
for the higher resolutions.