aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/arduino/analogreference.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-12-21 10:27:37 -0500
committerMarti Bolivar <mbolivar@mit.edu>2010-12-21 10:27:37 -0500
commitc45bccad44187da27505cf5808424e709e3f54a1 (patch)
tree18a459a50f8d0551ba046e30462c93999d982725 /docs/source/arduino/analogreference.rst
parent84fd2532a7f23d20354ff590790b3f892cb7e7d7 (diff)
parentd5ad2a27f4e69e6cc9324331945937c983c30366 (diff)
downloadlibrambutan-c45bccad44187da27505cf5808424e709e3f54a1.tar.gz
librambutan-c45bccad44187da27505cf5808424e709e3f54a1.zip
Merge branch 'master' into debug-serialusb.
Chose debug-serialusb version in cases of conflict. Conflicts: libmaple/usb/usb_callbacks.c
Diffstat (limited to 'docs/source/arduino/analogreference.rst')
-rw-r--r--docs/source/arduino/analogreference.rst66
1 files changed, 0 insertions, 66 deletions
diff --git a/docs/source/arduino/analogreference.rst b/docs/source/arduino/analogreference.rst
deleted file mode 100644
index 9a25169..0000000
--- a/docs/source/arduino/analogreference.rst
+++ /dev/null
@@ -1,66 +0,0 @@
-.. _arduino-analogreference:
-
-analogReference(type)
-=====================
-
-Description
------------
-
-Configures the reference voltage used for analog input (i.e. the
-value used as the top of the input range). The options are:
-
-
-
-
-- DEFAULT: the default analog reference of 5 volts (on 5V Arduino
- boards) or 3.3 volts (on 3.3V Arduino boards)
-- INTERNAL: an built-in reference, equal to 1.1 volts on the
- ATmega168 or ATmega328 and 2.56 volts on the ATmega8.
-- EXTERNAL: the voltage applied to the AREF pin is used as the
- reference.
-
-
-
-Parameters
-----------
-
-type: which type of reference to use (DEFAULT, INTERNAL, or
-EXTERNAL).
-
-
-
-Returns
--------
-
-None.
-
-
-
-Warning
--------
-
-**If you're using an external reference voltage (applied to the AREF pin), you must set the analog reference to EXTERNAL before calling analogRead().**
-Otherwise, you will short together the active reference voltage
-(internally generated) and the AREF pin, possibly damaging the
-microcontroller on your Arduino board.
-
-
-
-Alternatively, you can connect the external reference voltage to
-the AREF pin through a 5K resistor, allowing you to switch between
-external and internal reference voltages. Note that the resistor
-will alter the voltage that gets used as the reference because
-there is an internal 32K resistor on the AREF pin. The two act as a
-voltage divider, so, for example, 2.5V applied through the resistor
-will yield 2.5 \* 32 / (32 + 5) = ~2.2V at the AREF pin.
-
-
-
-See also
---------
-
-
-- `Description of the analog input pins <http://arduino.cc/en/Tutorial/AnalogInputPins>`_
-- `analogRead <http://arduino.cc/en/Reference/AnalogRead>`_\ ()
-
-