Skip to content

v3.0.0

Latest

Choose a tag to compare

@guyc guyc released this 29 Apr 00:41
· 9 commits to master since this release

Breaking changes: most methods that use gpio now take the gpio implementation object as a parameter to the constructor rather than constructing it internally. e.g.

switch = gaugette.capswitch.CapSwitch(SWITCH_PIN)

becomes

gpio = gaugette.gpio.GPIO()
led = gaugette.rgbled.RgbLed(gpio, R_PIN,R_PIN,B_PIN)