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/features.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
<FeatureDescription>
2
2
3
-
The Arduino UNO R4 Minima is a 32-bit microcontroller based on the Renesas RA4M1 (Arm® Cortex®-M4) with an operating voltage of 5 V. It has 14 digital I/O, 6 analog inputs with up to 14-bit resolution, a clock speed of 48 MHz, and 32 kB SRAM, 256 kB flash memory & 8 kB of EEPROM.
3
+
The UNO R4 Minima features a microcontroller based on the Renesas RA4M1 (Arm® Cortex®-M4) with an operating voltage of 5 V. It has 14 digital I/O, 6 analog inputs with up to 14-bit resolution, a clock speed of 48 MHz, and 32 kB SRAM, 256 kB flash memory & 8 kB of EEPROM.
4
4
5
5
This boards also features a 12-bit DAC, RTC and can emulate an HID.
6
6
@@ -37,7 +37,7 @@ Power your UNO R4 Minima board through the VIN Pin with any voltage between 6-24
37
37
</Feature>
38
38
39
39
<Featuretitle="CAN Bus"image="communication">
40
-
Connect your board to other CAN devices.
40
+
Connect your board to other CAN devices. This requires an external transceiver.
@@ -124,7 +124,7 @@ The **UNO R4 Minima** has 6 analog input pins (A0-A5) that can be read by using
124
124
value = analogRead(pin, value);
125
125
```
126
126
127
-
The reference voltage of these pins is 5V.
127
+
The reference voltage of these pins is 5 V.
128
128
129
129
### PWM
130
130
@@ -176,7 +176,7 @@ The **UNO R4 Minima** features a total of digital 14 pins. Though some of them s
176
176
| 14 | SDA | Serial communication |
177
177
| 15 | SCL | Serial communication |
178
178
179
-
The reference voltage of all digital pins is 5V.
179
+
The reference voltage of all digital pins is 5 V.
180
180
181
181
## DAC
182
182
@@ -291,13 +291,13 @@ void loop() {
291
291
292
292
## I2C
293
293
294
-
I2C lets you connect multiple I2C compatible devices in series using only two pins. The controller will send out information through the I2C bus to a 7bit address, meaning that the technical limit of I2C devices on a single line is 128. Practically, you're never gonna reach 128 devices before other limitations kick in.
294
+
I2C lets you connect multiple I2C compatible devices in series using only two pins. The controller will send out information through the I2C bus to a 7-bit address, meaning that the technical limit of I2C devices on a single line is 128. Practically, you're never gonna reach 128 devices before other limitations kick in.
295
295
296
296
The **UNO R4 Minima** has one I2C bus which is marked with SCL and SDA. They are shared with A4 (SDA) and A5 (SCL) which owners of previous UNO's are familiar with. The pullups are not mounted on the PCB but there are footprints to do so if needed.
297
297
298
298
The pins used for I2C on the **UNO R4 Minima** are the following:
299
-
- SDA - D14
300
-
- SCL - D15
299
+
- SDA - D14 or A4
300
+
- SCL - D15 or A5
301
301
302
302

303
303
@@ -311,8 +311,6 @@ Inside `void setup()` you need to initialize the library, and initialize the I2C
311
311
312
312
```arduino
313
313
Wire.begin() //SDA & SDL
314
-
Wire1.begin(); //SDA1 & SDL1
315
-
Wire2.begin(); //SDA2 & SDL2
316
314
```
317
315
318
316
And to write something to a device connected via I2C, we can use the following commands:
0 commit comments