From 8513adfd3cf8c8ef28a7a99ac00e67565930236c Mon Sep 17 00:00:00 2001 From: Andrew Walbran Date: Fri, 17 Mar 2023 17:17:11 +0000 Subject: [PATCH] Add more hints for compass exercise. --- src/exercises/bare-metal/compass.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/exercises/bare-metal/compass.md b/src/exercises/bare-metal/compass.md index 233b5c40..67fc2de7 100644 --- a/src/exercises/bare-metal/compass.md +++ b/src/exercises/bare-metal/compass.md @@ -3,7 +3,12 @@ We will read the temperature from an I2C compass, and log the readings to a serial port. Hint: check the documentation for the [`lsm303agr`](https://docs.rs/lsm303agr/latest/lsm303agr/) and -[`microbit-v2`](https://docs.rs/microbit-v2/latest/microbit/) crates. +[`microbit-v2`](https://docs.rs/microbit-v2/latest/microbit/) crates, as well as the +[micro:bit hardware](https://tech.microbit.org/hardware/). The LSM303AGR Inertial Measurement Unit +is connected to the internal I2C bus. TWI is another name for I2C, so the I2C master peripheral is +called TWIM. You can also look at the +[nRF52833 datasheet](https://infocenter.nordicsemi.com/pdf/nRF52833_PS_v1.5.pdf) if you want, but it +shouldn't be necessary for this exercise. If you have time, try displaying it on the LEDs somehow too, or use the buttons somehow.