Skip to content

Tags: gucchisk/SwiftyGPIO

Tags

0.10.0-alpha

Toggle 0.10.0-alpha's commit message
Support bouncetime

0.9.13

Toggle 0.9.13's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fixed indexes in i2c_smbus_read_block_data

As usual, the first element in the buffer is the size while the rest is the actual data.

0.9.12

Toggle 0.9.12's commit message

Verified

This commit was signed with the committer’s verified signature.
uraimo uraimo
Added pull up/down support

0.9.11

Toggle 0.9.11's commit message

Verified

This commit was signed with the committer’s verified signature.
uraimo uraimo
Updated README.md

0.9.10

Toggle 0.9.10's commit message
I2C read_word fixed

Promote to int32 before shifting

0.9.9

Toggle 0.9.9's commit message
UART adaptations for modern Raspbian (uraimo#56)

- Modernized tty naming ("serial0" / "serial1")
- Added 2400 / 4800 speeds
- refactored SysFSUART init() to take a list of devices to try in order of preference (first successful wins)

0.9.8

Toggle 0.9.8's commit message

Verified

This commit was signed with the committer’s verified signature.
uraimo uraimo
Added I2C,SPI,UART and updated GPIOs for CHIP

The board supports a sysfs interface for basic PWM functionality too,
but that requires a bit more work.
Note that while I2C and UART will work out of the box, SPI requires a
modified device tree.

0.9.7

Toggle 0.9.7's commit message

Verified

This commit was signed with the committer’s verified signature.
uraimo uraimo
Fixed null pointer issue for I2C

Closes uraimo#53.

0.9.6

Toggle 0.9.6's commit message

Verified

This commit was signed with the committer’s verified signature.
uraimo uraimo
Cleaned up comments, abort on error opening ADC

0.9.5

Toggle 0.9.5's commit message

Verified

This commit was signed with the committer’s verified signature.
uraimo uraimo
Delayed I2C device open

Didn't notice this during testing since I was using SysFSI2C directly,
the I2CInterface objects initialization in the presets was crashing
since /dev/i2c-0 normally does not exist. Moved open(), fd will now be
tested and the device will be opened when needed.