diff --git a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md index 0df2ae9f53..ab75b53273 100644 --- a/content/hardware/02.uno/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md +++ b/content/hardware/02.uno/boards/uno-r4-minima/tutorials/adc-resolution/adc-resolution.md @@ -25,7 +25,7 @@ The goals of this tutorials are: 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. -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. +To update the resolution, you will only need to use the [analogReadResolution()](https://docs.arduino.cc/language-reference/en/functions/analog-io/analogReadResolution/) command. To use it, simply include it in your `setup()`, and use `analogRead()` to retrieve a value from an analog pin. @@ -42,4 +42,4 @@ void loop(){ ## Summary -This short tutorial shows how to update the resolution for your ADC, a new feature available on the UNO R4 Minima board. \ No newline at end of file +This short tutorial shows how to update the resolution for your ADC, a new feature available on the UNO R4 Minima board. diff --git a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/adc-resolution/adc-resolution.md b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/adc-resolution/adc-resolution.md index 9c093fb817..4889fb0c21 100644 --- a/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/adc-resolution/adc-resolution.md +++ b/content/hardware/02.uno/boards/uno-r4-wifi/tutorials/adc-resolution/adc-resolution.md @@ -27,7 +27,7 @@ The goals of this tutorials are: 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. -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. +To update the resolution, you will only need to use the [analogReadResolution()](https://docs.arduino.cc/language-reference/en/functions/analog-io/analogReadResolution/) command. To use it, simply include it in your `setup()`, and use `analogRead()` to retrieve a value from an analog pin.