Raspberry Pi アナログ入力 (I2C A/D コンバータ)
[最終更新] (2019/06/03 00:52:39)
最近の投稿
注目の記事

ADS1015 について

Raspberry Pi には A/D コンバータが内蔵されていません。デジタル入出力、アナログ出力に加えてアナログ入力を行うためには外部 IC を利用する必要があります。ここでは I2C デバイスの ADS1015 を利用します。事前に I2C 設定を行っておいてください。

Uploaded Image

Python ライブラリを用いたサンプル

ADS1015 を扱うための専用ライブラリが Python で提供されています。

Adafruit_Python_ADS1x15

以下のコマンドでインストールします。

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 のピン配置はこちらです。

Uploaded Image

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 端子に入力される電圧によって変更します。

  • 2/3: 0.0V - 6.144V
  • 1: 0.0V - 4.096V
  • 2: 0.0V - 2.048V
  • 4: 0.0V - 1.024V
  • 8: 0.0V - 0.512V
  • 16: 0.0V - 0.256V

上記設定における ADS1015 の分解能は 11bit (2048) です。3.3V のアナログ入力がなされた場合の値はおおよそ 2048*(3.3/4.096) = 1650 です。

他の言語で利用するための検討

この続きが気になる方は

Raspberry Pi アナログ入力 (I2C A/D コンバータ)

残り文字数は全体の約 21 %
くろねこ
100 円
関連ページ