Skip to content

Commit

Permalink
feat: change the min calibration speed to be 70 kph
Browse files Browse the repository at this point in the history
  • Loading branch information
David Teirney committed Jun 23, 2022
1 parent 3d66cac commit 6322370
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- `est_battery_range`
- Nissan Leaf specific metrics used for SOC, SOH and estimated range
- Reduce bandwidth by only sending frequent data for calibration (every 10
seconds) when the driving speed is greater than 30 kph
seconds) when the driving speed is greater than 70 kph
- Reduce bandwidth by changing the determination of a significant telemetry
change to take into account whether the vehicle is charging, and only send if
the power changes by more than 1 kW.
Expand Down
2 changes: 1 addition & 1 deletion lib/abrp.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// NOTE: const in duktape implementation is not much more than var offers
// https://wiki.duktape.org/postes5features
const DEBUG = false
const MIN_CALIBRATION_SPEED = 30 // kph
const MIN_CALIBRATION_SPEED = 70 // kph
const OVMS_API_KEY = '32b2162f-9599-4647-8139-66e9f9528370'
const VERSION = '2.0'

Expand Down

0 comments on commit 6322370

Please sign in to comment.