Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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.
This short tutorial shows how to update the resolution for your ADC, a new feature available on the UNO R4 Minima board.
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down