You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/02.hero/boards/uno-r4-minima/tutorials/cheat-sheet/cheat-sheet.md
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ The UNO R4 Minima can be programmed either via the Arduino IDE, Arduino Web Edit
47
47
48
48
### Arduino IDE
49
49
50
-
To install the board in the Arduino IDE, search for "Renesas" in the board manager, and install the core/package.
50
+
To use the board in the Arduino IDE, you need to install the latest version of the **Arduino UNO R4 Boards**package from the boards manager.
51
51
52
52
Read more in the [Getting Started with the UNO R4 Minima](/tutorials/uno-r4-minima/minima-getting-started) guide.
53
53
@@ -344,6 +344,8 @@ The UNO R4 Minima board features two separate hardware serial ports.
344
344
- One port is exposed via USB-C®, and
345
345
- One is exposed via RX/TX pins.
346
346
347
+
This is one of the few things that are distinctly different from UNO R3 to UNO R4, as the UNO R3 only features one hardware serial port, that is connected to **both** the USB port and the RX/TX pins on the board.
348
+
347
349
### Native USB
348
350
349
351
Sending serial data to your computer is done using the standard `Serial` object. I
@@ -395,7 +397,7 @@ keyboard.press('W');
395
397
mouse.move(x,y);
396
398
```
397
399
398
-
This support is enabled by the [keyboard](https://www.arduino.cc/reference/en/language/functions/usb/keyboard/) and [mouse](https://www.arduino.cc/reference/en/language/functions/usb/mouse/) libraries that are pre-bundled into the core and require no installation.
400
+
This support is enabled by the [keyboard](https://www.arduino.cc/reference/en/language/functions/usb/keyboard/) and [mouse](https://www.arduino.cc/reference/en/language/functions/usb/mouse/) libraries that you can install from the library manager in the IDE.
399
401
400
402
To learn more about the HID capabilities of the UNO R4 Minima, check out the [HID Guide](/tutorials/uno-r4-minima/usb-hid).
The Arduino UNO R4 WiFi is designed around the 32-bit microcontroller RA4M1 from [Renesas](https://www.renesas.com/us/en) while also featuring a ESP32 module for Wi-Fi® and Bluetooth® connectivity. Its distinctive 12x8 LED matrix makes it possible to prototype visuals directly on the board, and with a QWIIC connector, you can create projects plug-and-play style.
7
+
The Arduino UNO R4 WiFi is designed around the 32-bit microcontroller RA4M1 from [Renesas](https://www.renesas.com/us/en) while also featuring a ESP32 module for Wi-Fi® and Bluetooth® connectivity. Its distinctive 12x8 LED matrix makes it possible to prototype visuals directly on the board, and with a Qwiic connector, you can create projects plug-and-play style.
-`Arduino_LED_Matrix.begin()` - Initialises the LED matrix itself, making it ready to display frames.
245
-
-`Arduino_LED_Matrix.autoscroll()` - Sets an automatic time interval in ms for the matrix to scroll through the frames.
246
-
-`Arduino_LED_Matrix.next()` - Manually moves to the next frame.
247
-
-`Arduino_LED_Matrix.on()` - Manually turn a single pixel on.
248
-
-`Arduino_LED_Matrix.off()` - Manually turn a single pixel off.
249
-
250
244
## DAC
251
245
252
246
The UNO R4 WiFi also has a DAC with up to 12-bit resolution, that can act as a genuine analog output pin which means it's even more capable than PWM pins.
@@ -431,6 +425,8 @@ The UNO R4 WiFi board features 2 separate hardware serial ports.
431
425
- One port is exposed via USB-C®, and
432
426
- One is exposed via RX/TX pins.
433
427
428
+
This is one of the few things that are distinctly different from UNO R3 to UNO R4, as the UNO R3 only features one hardware serial port, that is connected to **both** the USB port and the RX/TX pins on the board.
429
+
434
430
The pins used for UART on the UNO R4 WiFi are the following:
435
431
436
432
| Pin | Function |
@@ -489,7 +485,7 @@ keyboard.press('W');
489
485
mouse.move(x,y);
490
486
```
491
487
492
-
This support is enabled by the [keyboard](https://www.arduino.cc/reference/en/language/functions/usb/keyboard/) and [mouse](https://www.arduino.cc/reference/en/language/functions/usb/mouse/) libraries that are pre-bundled into the core and require no installation.
488
+
This support is enabled by the [keyboard](https://www.arduino.cc/reference/en/language/functions/usb/keyboard/) and [mouse](https://www.arduino.cc/reference/en/language/functions/usb/mouse/) libraries that you can install from the library manager in the IDE.
493
489
494
490
To learn more about the HID capabilities of the UNO R4 WiFi, check out the [HID Guide](/tutorials/uno-r4-wifi/usb-hid).
0 commit comments