-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: fixed BMP180 #231
fix: fixed BMP180 #231
Conversation
Reviewer's Guide by SourceryThis pull request refactors the BMP180 sensor class to improve its accuracy and readability. The changes include the addition of module-level constants, new methods for reading calibration values, updated temperature and pressure calculations, and the removal of redundant code. These updates are based on the BMP180 datasheet and reference libraries from Adafruit. File-Level Changes
Tips
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @AsCress - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider replacing the print statement in init with proper logging for debugging information.
- Great job on improving the code structure and accuracy. Consider adding more type hints to further enhance code readability and maintainability.
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment to tell me if it was helpful.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apologies for the late review, I've been traveling this week with spotty internet access.
491cc0d
to
414061b
Compare
@bessman I have (tried to) implement all the changes you suggested. This PR is now up-to-date with my changes. |
@bessman I've made all the changes that we discussed and that you've suggested. Now, the Let me know if there's something still not quite right style-wise :)) |
Looks good, thank you! |
Fixes the
BMP180
sensor.The following libraries were used as a reference: -
Screenshots / Recordings
Here, is a screenshot of the readings. These are consistent with the results provided by other python and Arduino drivers.

@bessman Please let me know your views on this.
Summary by Sourcery
Fix BMP180 sensor functionality and refactor the BMP180 class to enhance readability and support multiple operating modes.
Bug Fixes:
Enhancements: