|
I am a newbie in the Rust Embedded world and I am taking first steps using BBC Microbit V2. From the fantastic book https://docs.rust-embedded.org, chapter 09, on LED Compass:
Somehow, my old brain is failing to understand the same static calibration once you got the first one part. Could someone please push me in the intended direction here? |
Answered by
eldruin
Jan 29, 2024
Replies: 1 comment 1 reply
|
It means that once you have done the calibration once, you can copy the values and just create a constant |
1 reply
Answer selected by
nsengupta
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It means that once you have done the calibration once, you can copy the values and just create a constant
calibrationvariable with them instead of callinglet calibration = calc_calibration(...)