-
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? |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
It means that once you have done the calibration once, you can copy the values and just create a constant
calibration
variable with them instead of callinglet calibration = calc_calibration(...)