Skip to content

Commit 010595e

Browse files
authored
Fixed typos in notes (#155)
1 parent a192a01 commit 010595e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: spi/bme280_spi/bme280_spi.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/* Example code to talk to a bme280 humidity/temperature/pressure sensor.
1414
1515
NOTE: Ensure the device is capable of being driven at 3.3v NOT 5v. The Pico
16-
GPIO (and therefor SPI) cannot be used at 5v.
16+
GPIO (and therefore SPI) cannot be used at 5v.
1717
1818
You will need to use a level shifter on the SPI lines if you want to run the
1919
board at 5v.
@@ -52,7 +52,7 @@ int16_t dig_H2, dig_H4, dig_H5;
5252
/* The following compensation functions are required to convert from the raw ADC
5353
data from the chip to something usable. Each chip has a different set of
5454
compensation parameters stored on the chip at point of manufacture, which are
55-
read from the chip at startup and used inthese routines.
55+
read from the chip at startup and used in these routines.
5656
*/
5757
int32_t compensate_temp(int32_t adc_T) {
5858
int32_t var1, var2, T;

0 commit comments

Comments
 (0)