Releases: MrYsLab/pymata-express
PRs #37 and #38
Incorporates DHTStable
This release resolves issue #36. It only affects DHT processing and requires FirmataExpress version 1.2.0.
Fix for issue #31
This fix only affects Windows users and not Linux or macOS. For Windows Python 3.8.3 or greater will need to be used.
Added MANIFEST.in to pick up the pypi_desc.md file.
Sdist did not pick up the pypi_desc.md file, so a MANIFEST.in was needed to do so. There are not code changes to this release.
Support i2c reads with no register specified
v1.17 Allow i2c reads with no register specified
Repaired DHT 11 support
Pymata-express and FirmataExpress were both updated to support the DHT11. Please make sure to install version 1.1.1 of FirmatExpress on your Arduino before using this release.
DHT11 fixes
v1.15 Fixed DHT11 type comparison
New Features Added
- Support for DHT humidity/temperature sensors added.
- Support for StandardFirmataWiFi added.
- Incorporated pull request #18 to optionally allow loop to stay open on shutdown.
Fix for issue #18
This release fixes issue #15
This release addresses several open issues
This release addresses and closes the following issues:
NOTE: That there are breaking changes for the data provided to callback functions:
Callback | Prior To Version 1.11 | Version 1.11 And Above |
---|---|---|
analog input | [pin, current reported value, pin_mode, timestamp] | [pin_mode = 2, pin, current reported value, pin_mode, timestamp] |
digital input | [pin, current reported value, pin_mode, timestamp] | [pin_mode = 0, pin, current reported value, pin_mode, timestamp] |
hc-sr04 | [pin, distance] | [pin_mode=12, trigger pin number, distance, timestamp] |
i2c | [Device address, data bytes] | [pin_mode=6, i2c device address, data bytes, timestamp] |