-
-
Notifications
You must be signed in to change notification settings - Fork 87
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
Fixed incorrect formula to find new amperage scale using battery charger measurement in Wiki #519
Fixed incorrect formula to find new amperage scale using battery charger measurement in Wiki #519
Conversation
✅ Deploy Preview for origin-betaflight-com ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
docs/development/Battery.md
Outdated
amperage_meter_scale = old_amperage_meter_scale * (mAh_recharged / cleanflight_reported_mAh_drawn) | ||
= 400 * (1500 / 2000) | ||
= 300 | ||
amperage_meter_scale = old_amperage_meter_scale * (cleanflight_reported_mAh_drawn / mAh_recharged) |
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.
amperage_meter_scale = old_amperage_meter_scale * (cleanflight_reported_mAh_drawn / mAh_recharged) | |
amperage_meter_scale = old_amperage_meter_scale * (reported_mAh_drawn / mAh_recharged) |
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.
@haslinghuis I have now removed the cleanflight prefix from the formula
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.
@ramkrishna757575 removed other non related references (for the sake of consistency) - hope you appreciate.
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.
@ramkrishna757575 removed other non related references (for the sake of consistency) - hope you appreciate.
sure...thanks for the review and the updates to the PR :)
|
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.
Removed other non related references
The battery charger measurement method to tune the amperage scale state the formula as:
This is incorrect. The actual formula should be: