From 7db3257179f862f7be8acd7a89fd3478d34a0f66 Mon Sep 17 00:00:00 2001 From: Rodrigo Garcia Date: Wed, 7 Aug 2024 01:43:07 -0300 Subject: [PATCH] fix(doc): analogReadMilliVolts Fixes the documentation. typo. volts->Volts --- docs/en/api/adc.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/api/adc.rst b/docs/en/api/adc.rst index 99c4ebb1141..1e2952289bf 100644 --- a/docs/en/api/adc.rst +++ b/docs/en/api/adc.rst @@ -21,7 +21,7 @@ ADC OneShot mode The ADC OneShot mode API is fully compatible with Arduino's ``analogRead`` function. -When you call the ``analogRead`` or ``analogReadMillivolts`` function, it returns the result of a single conversion on the requested pin. +When you call the ``analogRead`` or ``analogReadMilliVolts`` function, it returns the result of a single conversion on the requested pin. analogRead ^^^^^^^^^^ @@ -36,7 +36,7 @@ This function is used to get the ADC raw value for a given pin/ADC channel. This function will return analog raw value (non-calibrated). -analogReadMillivolts +analogReadMilliVolts ^^^^^^^^^^^^^^^^^^^^ This function is used to get ADC raw value for a given pin/ADC channel and convert it to calibrated result in millivolts.