Skip to content

Commit 6f83fb8

Browse files
committed
fix typos in existing blurb and minor comment update
1 parent 8dc7364 commit 6f83fb8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

ports/nordic/boards/arduino_nano_33_ble/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Arduino Nano 33 BLE and Nano 33 BLE Sense
22

33
The [Arduino Nano 33 BLE](https://store.arduino.cc/usa/nano-33-ble-with-headers) and
4-
[Arduino Nano 33 BLE Sense](https://store.arduino.cc/usa/nano-33-ble-sense) and
5-
are built around the NINA B306 module, based on Nordic nRF 52840 and containing
6-
a powerful Cortex M4F. Both include an onboard 9 axis Inertial Measurement Unit (IMU), the LSM9DS1.
7-
The Nano 33 BLE Sense adds an LPS22HB barometric pressure and temperature sensor,
8-
an ADPS-9960 digital proximity, ambient light, RGB, and gensture sensor,
4+
[Arduino Nano 33 BLE Sense](https://store.arduino.cc/usa/nano-33-ble-sense)
5+
are built around the NINA-B306 module, based on the Nordic nRF52840 and containing
6+
a powerful Cortex-M4F. Both include an onboard 9-axis Inertial Measurement Unit (IMU), the LSM9DS1.
7+
The Nano 33 BLE Sense adds an LPS22HB barometric pressure and temperature sensor, an HTS221 humidity sensor,
8+
an APDS-9960 digital proximity, ambient light, RGB, and gesture sensor,
99
and an MP34DT05 digital microphone.
1010

1111
Note: the Arduino Nano 33 BLE and BLE Sense do not include a QSPI external
@@ -15,11 +15,11 @@ filesystem.
1515
I2C pins `board.SCL1` and `board.SDA1` are not exposed and are used for onboard peripherals.
1616
Pin `board.R_PULLUP` must be set to high to enable the `SCL1` and `SDA1` pullups for proper operation.
1717

18-
Pin `board.VDD_ENV` applies power to the LSM9DS1, and must be high for it to be operational.
18+
Pin `board.VDD_ENV` applies power to the LSM9DS1, the LPS22HB, and the HTS221, and must be high for them to be operational.
1919

2020
Pins `board.MIC_PWR`, `board.PDMDIN`, and `board.PDMCLK` are for the Nano 33 BLE Sense onboard microphone.
2121

22-
Pin `board.INT_ADPS` is the interrupt pin from the ADPS-9960.
22+
Pin `board.INT_APDS` is the interrupt pin from the APDS-9960.
2323

2424
Pins `board.RGB_LED_R`, `board.RGB_LED_G`, and `board.RGB_LED_B`
2525
are the red, green and blue LEDS in the onboard RGB LED.

ports/nordic/boards/arduino_nano_33_ble/pins.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ static const mp_rom_map_elem_t board_module_globals_table[] = {
4848
{ MP_ROM_QSTR(MP_QSTR_RGB_LED_G), MP_ROM_PTR(&pin_P0_16) },
4949
{ MP_ROM_QSTR(MP_QSTR_RGB_LED_B), MP_ROM_PTR(&pin_P0_06) },
5050

51-
// Power line to LSM9DS1.
51+
// Power line to LSM9DS1, LPS22 and HTS221
5252
{ MP_ROM_QSTR(MP_QSTR_VDD_ENV), MP_ROM_PTR(&pin_P0_22) },
5353

5454
// Pullup voltage for SDA1 and SCL1

0 commit comments

Comments
 (0)