Raspberry Pi には A/D コンバータが内蔵されていません。デジタル入出力、アナログ出力に加えてアナログ入力を行うためには外部 IC を利用する必要があります。ここでは I2C デバイスの ADS1015 を利用します。事前に I2C 設定を行っておいてください。
ADS1015 を扱うための専用ライブラリが Python で提供されています。
以下のコマンドでインストールします。
sudo pip install adafruit-ads1x15
以前は Adafruit-Raspberry-Pi-Python-Code レポジトリで提供されていましたが、管理が煩雑になったため分離されて pip での提供に変更になったようです。
Over time we found it difficult to manage so much code in a single repository, and couldn't easily put the code on Python's package index for simple installation. Now we've broken out all of the previous Python code into individual GitHub repositories, and we've loaded all of these repositories on the Python package index so they can be installed with pip.
回路図は以下の通りです。10k 可変抵抗で A/D 変換を試してみます。Raspberry Pi のピン配置はこちらです。
sample.py (公式ページにもサンプルコードがあります)
#!/path/to/python
# -*- coding: utf-8 -*-
import Adafruit_ADS1x15
import time
CHANNEL = 0
GAIN = 1
adc = Adafruit_ADS1x15.ADS1015()
while True:
print(adc.read_adc(CHANNEL, gain=GAIN))
time.sleep(0.5)
GAIN の値は A0 端子に入力される電圧によって変更します。
上記設定における ADS1015 の分解能は 11bit (2048) です。3.3V のアナログ入力がなされた場合の値はおおよそ 2048*(3.3/4.096) = 1650
です。