Skip to content

Commit 49ccb25

Browse files
committed
Fix assets and typs
1 parent bd0b268 commit 49ccb25

33 files changed

+101
-100
lines changed
363 KB
Loading
Binary file not shown.

content/hardware/03.nano/boards/nano-33-ble-rev2/datasheet/datasheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Arduino® Nano 33 BLE Rev2
44
type: maker
55
---
66

7-
![](assets/featured.png)
7+
![](assets/featured.jpg)
88

99
# Description
1010

Binary file not shown.

content/hardware/03.nano/boards/nano-33-ble-rev2/product.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ forumCategorySlug: '/hardware/nano-family/nano-33-ble/159'
77
certifications: [CE,UKCA]
88
---
99

10-
The Arduino Nano 33 BLE Rev2 shares its pinout with the classic Arduino Nano but builds on the nRF52840 microcontroller with 1MB CPU Flash Memory. Featuring a 9-axis inertial measurement unit and the possibility for Bluetooth® Low Energy connectivity.t can help you to create your next Bluetooth® Low Energy enabled project.
10+
The Arduino Nano 33 BLE Rev2 shares its pinout with the classic Arduino Nano but builds on the nRF52840 microcontroller with 1MB CPU Flash Memory. Featuring a 9-axis inertial measurement unit and the possibility for Bluetooth® Low Energy connectivity. It can help you to create your next Bluetooth® Low Energy-enabled project.

content/hardware/03.nano/boards/nano-33-ble-rev2/tech-specs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ Pins:
1212
Connectivity:
1313
Bluetooth®: NINA-B306
1414
Sensors:
15-
IMU: LBMI270 (3-axis accelerometer + 3-axis gyroscope) + BMM150 (3-axis Magnetometer)
15+
IMU: BMI270 (3-axis accelerometer + 3-axis gyroscope) + BMM150 (3-axis Magnetometer)
1616
Communication:
1717
UART: RX/TX
1818
I2C: A4 (SDA), A5 (SCL)
1919
SPI: D11 (COPI), D12 (CIPO), D13 (SCK). Use any GPIO for Chip Select (CS).
2020
Power:
21-
I/O Voltage: 3.3V
22-
Input voltage (nominal): 5-18V
21+
I/O Voltage: 3.3 V
22+
Input voltage (nominal): 5-18 V
2323
DC Current per I/O Pin: 10 mA
2424
Clock speed:
2525
Processor: nRF52840 64MHz

content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/ble-cheat-sheet.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The Nano 33 BLE Rev2 can be programmed through the **Arduino IDE 2**. To install
6363

6464
The Nano 33 BLE Rev2 can be programmed through the **Web Editor**. To get started with your board, you will only need to install a plugin, which is explained in the guide below:
6565

66-
- [Getting started with the Web Editor](/arduino-cloud/guides/cloud-editor)
66+
- [Getting Started with the Web Editor](/arduino-cloud/guides/cloud-editor)
6767

6868
## Using OpenMV IDE
6969

@@ -91,12 +91,12 @@ The Nano 33 BLE Rev2 has 8 analog pins, that can be used through the `analogRead
9191
value = analogRead(pin, value);
9292
```
9393

94-
***Please note: pin `A4` and `A5` should be used for I2C only.***
94+
***Please note: pins `A4` and `A5` should be used for I2C only.***
9595

9696

9797
### PWM Pins
9898

99-
Pins **D2-D12** and **A0-A7** supports PWM (Pulse Width Modulation).
99+
Pins **D2-D12** and **A0-A7** support PWM (Pulse Width Modulation).
100100
***Pins A4, A5 and D11, D12 are not recommended for PWM as they have I2C & SPI buses attached.***
101101

102102
```arduino
@@ -221,7 +221,7 @@ The pins used for SPI (Serial Peripheral Interface) on the Nano 33 BLE Rev2 are
221221
- (SCK) - D13
222222
- (CS/SS) - Any GPIO
223223

224-
***The signal names MOSI, MISO and SS has been replaced by COPI (Controller Out, Peripheral In), CIPO (Controller In, Peripheral Out) and CS (Chip Select).***
224+
***The signal names MOSI, MISO and SS have been replaced by COPI (Controller Out, Peripheral In), CIPO (Controller In, Peripheral Out) and CS (Chip Select).***
225225

226226
To use SPI, we first need to include the [SPI](https://www.arduino.cc/en/reference/SPI) library.
227227

@@ -308,11 +308,11 @@ Serial1.write("Hello world!");
308308

309309
The Nano 33 BLE Rev2 supports Bluetooth® through the [u-blox NINA-B306](https://docs.arduino.cc/resources/datasheets/NINA-B3-series.pdf) module. To use this module, we can use the [ArduinoBLE](https://www.arduino.cc/en/Reference/ArduinoBLE) library.
310310

311-
![ Bluetooth® module.](assets/Nano33_ble_rev2_ble.png)
311+
![ Bluetooth module.](assets/Nano33_ble_rev2_ble.png)
312312

313-
## Bluetooth®
313+
## Bluetooth
314314

315-
To enable Bluetooth® on the Nano 33 BLE Rev2, we can use the [ArduinoBLE](https://www.arduino.cc/en/Reference/ArduinoBLE) library, and include it at the top of our sketch:
315+
To enable Bluetooth on the Nano 33 BLE Rev2, we can use the [ArduinoBLE](https://www.arduino.cc/en/Reference/ArduinoBLE) library, and include it at the top of our sketch:
316316

317317
```arduino
318318
#include <ArduinoBLE.h>
@@ -338,19 +338,19 @@ Start advertising:
338338
BLE.advertise();
339339
```
340340

341-
Listen for Bluetooth® Low Energy peripherals to connect:
341+
Listen for Bluetooth Low Energy peripherals to connect:
342342

343343
```arduino
344344
BLEDevice central = BLE.central();
345345
```
346346

347347
### Tutorials
348348

349-
- [Controlling Nano 33 BLE Rev2 RGB LED via Bluetooth®](/tutorials/nano-33-ble/bluetooth)
349+
- [Controlling Nano 33 BLE Rev2 RGB LED via Bluetooth](/tutorials/nano-33-ble/bluetooth)
350350

351351
## USB Keyboard
352352

353-
To use the board as a keyboard, you can refer to the [USBHID](https://github.com/arduino/ArduinoCore-mbed/tree/master/libraries/USBHID) library that can be found inside the core.
353+
To use the board as a keyboard, you can refer to the [USB HID](https://github.com/arduino/ArduinoCore-mbed/tree/master/libraries/USBHID) library that can be found inside the core.
354354

355355
You first need to include the libraries and create an object:
356356

Loading

0 commit comments

Comments
 (0)