Skip to content

Commit d1f921a

Browse files
authored
Merge pull request #2744 from arduino/gibix/r4-analogResolution-link
fix(R4): broken link in analogReadResolution
2 parents 78f84b8 + 9e40993 commit d1f921a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

content/hardware/02.uno/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The goals of this tutorials are:
2525

2626
An analog-to-digital converter (ADC) transforms an analog signal to a digital one. The standard resolution on Arduino boards is set to 10-bit (0-1023). The UNO R4 Minima supports up to 14-bit resolutions, which can provide a more precise value from analog signals.
2727

28-
To update the resolution, you will only need to use the [analogReadResolution()](https://reference.arduino.cc/reference/en/language/functions/zero-due-mkr-family/analogreadresolution/) command.
28+
To update the resolution, you will only need to use the [analogReadResolution()](https://docs.arduino.cc/language-reference/en/functions/analog-io/analogReadResolution/) command.
2929

3030
To use it, simply include it in your `setup()`, and use `analogRead()` to retrieve a value from an analog pin.
3131

@@ -42,4 +42,4 @@ void loop(){
4242

4343
## Summary
4444

45-
This short tutorial shows how to update the resolution for your ADC, a new feature available on the UNO R4 Minima board.
45+
This short tutorial shows how to update the resolution for your ADC, a new feature available on the UNO R4 Minima board.

content/hardware/02.uno/boards/uno-r4-wifi/tutorials/adc-resolution/adc-resolution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The goals of this tutorials are:
2727

2828
An analog-to-digital converter (ADC) transforms an analog signal to a digital one. The standard resolution on Arduino boards is set to 10-bit (0-1023). The UNO R4 WiFi supports up to 14-bit resolutions, which can provide a more precise value from analog signals.
2929

30-
To update the resolution, you will only need to use the [analogReadResolution()](https://reference.arduino.cc/reference/en/language/functions/zero-due-mkr-family/analogreadresolution/) command.
30+
To update the resolution, you will only need to use the [analogReadResolution()](https://docs.arduino.cc/language-reference/en/functions/analog-io/analogReadResolution/) command.
3131

3232
To use it, simply include it in your `setup()`, and use `analogRead()` to retrieve a value from an analog pin.
3333

0 commit comments

Comments
 (0)