2014-11-04 18:25:20 +00:00
|
|
|
.. _pyb.ADC:
|
|
|
|
|
2014-10-31 22:21:37 +00:00
|
|
|
class ADC -- analog to digital conversion: read analog values on a pin
|
|
|
|
======================================================================
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
.. only:: port_pyboard
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
Usage::
|
|
|
|
|
|
|
|
import pyb
|
|
|
|
|
|
|
|
adc = pyb.ADC(pin) # create an analog object from a pin
|
|
|
|
val = adc.read() # read an analog value
|
|
|
|
|
|
|
|
adc = pyb.ADCAll(resolution) # creale an ADCAll object
|
|
|
|
val = adc.read_channel(channel) # read the given channel
|
|
|
|
val = adc.read_core_temp() # read MCU temperature
|
|
|
|
val = adc.read_core_vbat() # read MCU VBAT
|
|
|
|
val = adc.read_core_vref() # read MCU VREF
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
.. only:: port_wipy
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
Usage::
|
|
|
|
|
|
|
|
import pyb
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-08-10 14:44:20 +00:00
|
|
|
adc = pyb.ADC(pin) # create an analog object on one of the 4 ADC channels
|
2015-06-10 21:29:56 +00:00
|
|
|
val = adc.read() # read an analog value
|
2015-08-10 14:44:20 +00:00
|
|
|
adc.deinit() # disable the adc channel
|
|
|
|
adc.init() # enable the adc channel
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Constructors
|
|
|
|
------------
|
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
.. only:: port_pyboard
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
.. class:: pyb.ADC(pin)
|
|
|
|
|
|
|
|
Create an ADC object associated with the given pin.
|
|
|
|
This allows you to then read analog values on that pin.
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
.. only:: port_wipy
|
|
|
|
|
2015-08-10 14:44:20 +00:00
|
|
|
.. class:: pyb.ADC(pin)
|
2015-06-10 21:29:56 +00:00
|
|
|
|
2015-08-10 14:44:20 +00:00
|
|
|
Create an ADC object associated with the given pin.
|
2015-06-10 21:29:56 +00:00
|
|
|
This allows you to then read analog values on that pin.
|
2015-08-10 14:44:20 +00:00
|
|
|
For more info check the `pinout and alternate functions
|
|
|
|
table. <https://raw.githubusercontent.com/wipy/wipy/master/docs/PinOUT.png>`_
|
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
.. warning::
|
|
|
|
|
|
|
|
ADC pin input range is 0-1.4V (being 1.8V the absolute maximum that it
|
2015-07-28 21:03:53 +00:00
|
|
|
can withstand). When GP2, GP3, GP4 or GP5 are remapped to the
|
2015-06-10 21:29:56 +00:00
|
|
|
ADC block, 1.8 V is the maximum. If these pins are used in digital mode,
|
|
|
|
then the maximum allowed input is 3.6V.
|
2014-10-31 01:37:19 +00:00
|
|
|
|
|
|
|
Methods
|
|
|
|
-------
|
|
|
|
|
|
|
|
.. method:: adc.read()
|
|
|
|
|
|
|
|
Read the value on the analog pin and return it. The returned value
|
|
|
|
will be between 0 and 4095.
|
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
.. only:: port_pyboard
|
|
|
|
|
2015-07-22 18:37:21 +00:00
|
|
|
.. method:: adc.read_timed(buf, timer)
|
2015-06-10 21:29:56 +00:00
|
|
|
|
2015-07-22 18:37:21 +00:00
|
|
|
Read analog values into ``buf`` at a rate set by the ``timer`` object.
|
|
|
|
|
|
|
|
``buf`` can be bytearray or array.array for example. The ADC values have
|
|
|
|
12-bit resolution and are stored directly into ``buf`` if its element size is
|
|
|
|
16 bits or greater. If ``buf`` has only 8-bit elements (eg a bytearray) then
|
|
|
|
the sample resolution will be reduced to 8 bits.
|
|
|
|
|
|
|
|
``timer`` should be a Timer object, and a sample is read each time the timer
|
|
|
|
triggers. The timer must already be initialised and running at the desired
|
|
|
|
sampling frequency.
|
|
|
|
|
|
|
|
To support previous behaviour of this function, ``timer`` can also be an
|
|
|
|
integer which specifies the frequency (in Hz) to sample at. In this case
|
|
|
|
Timer(6) will be automatically configured to run at the given frequency.
|
|
|
|
|
|
|
|
Example using a Timer object (preferred way)::
|
|
|
|
|
|
|
|
adc = pyb.ADC(pyb.Pin.board.X19) # create an ADC on pin X19
|
|
|
|
tim = pyb.Timer(6, freq=10) # create a timer running at 10Hz
|
|
|
|
buf = bytearray(100) # creat a buffer to store the samples
|
|
|
|
adc.read_timed(buf, tim) # sample 100 values, taking 10s
|
|
|
|
|
|
|
|
Example using an integer for the frequency::
|
|
|
|
|
2015-06-10 21:29:56 +00:00
|
|
|
adc = pyb.ADC(pyb.Pin.board.X19) # create an ADC on pin X19
|
|
|
|
buf = bytearray(100) # create a buffer of 100 bytes
|
|
|
|
adc.read_timed(buf, 10) # read analog values into buf at 10Hz
|
|
|
|
# this will take 10 seconds to finish
|
|
|
|
for val in buf: # loop over all values
|
|
|
|
print(val) # print the value out
|
|
|
|
|
|
|
|
This function does not allocate any memory.
|
|
|
|
|
|
|
|
.. only:: port_wipy
|
|
|
|
|
2015-08-10 14:44:20 +00:00
|
|
|
.. method:: adc.init()
|
2015-06-10 21:29:56 +00:00
|
|
|
|
|
|
|
Enable the ADC channel.
|
|
|
|
|
2015-08-10 14:44:20 +00:00
|
|
|
.. method:: adc.deinit()
|
2015-06-10 21:29:56 +00:00
|
|
|
|
|
|
|
Disable the ADC channel.
|