Skip to content
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

ADS 12 bit math issue #297

Closed
banoz opened this issue Sep 12, 2022 · 1 comment
Closed

ADS 12 bit math issue #297

banoz opened this issue Sep 12, 2022 · 1 comment

Comments

@banoz
Copy link
Contributor

banoz commented Sep 12, 2022

currentPressure = (ADS.getValue() - 333) / 222.25f; // 12bit

needs to be like this

currentPressure = (ADS.getValue() - 166) / 111.11f; // 12bit

@Zer0-bit
Copy link
Owner

Will change, thx.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants