You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added arm64 to the cpu field in package.json for installing on 64-bit Raspberry Pis
6.0.1 (2019-2-21)
Fixed some outdated package.json info
6.0.0 (2019-2-21)
BREAKING CHANGE: Changed the pigpio clock mode from PCM to PWM.
This allows I2S to be used alongside this module
This means that hardware PWM DOES NOT WORK. In other words, you cannot use this module alongside raspi-pwm, which Raspi IO used to do prior to version 10.0.0.
5.1.1 (2019-2-20)
Updated dependencies
5.1.0 (2018-12-6)
Updated TypeScript to v3. Note: the compiled output changed as I previously didn't set the compiled output target flag correctly.
Added module export to conform with Core IO types
5.0.0 (2018-4-21)
Updated to pigpio 1
BREAKING CHANGE: Dropped support for Node 4.
4.0.1 (2017-9-12)
Updated dependencies. The breaking changes in dependencies do not break the behavior of this module.
4.0.0 (2017-9-12)
BREAKING CHANGE: dropped support for Node.js < 4.0.0, and now enforce it via package.json "engines" field.
SORT OF BREAKING-ISH CHANGE: dropped support for attempting to install on non-arm platforms via package.json's "cpu" field.
Attempting to install this on a non-Raspberry Pi platform before gave a bunch of obtuse errors, so this doesn't actually change the ability to install raspi-soft-pwm, but does make it fail earlier and harder.
3.0.0 (2017-04-26)
Updated the project to TypeScript
BREAKING CHANGE: changed write() to accept a duty cycle between 0 and 1 instead of an integer between 0 and the range to match raspi-pwm