2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Raspberrypi3でlirc設定して赤外線リモコン受信するまで

Last updated at Posted at 2018-01-27

記事を見ると色々書いてあるが,今時点(2018/01/27)では以下の手順でうまく動作した.
全てラズパイ上,もしくはsshでラズパイに接続して作業を行う.
sudo suとかでrootになっておくと手っ取り早い.

lircnの入手

sudo apt-get install lirc

設定

  1. /boot/config.txtの編集
    24番pinをin,25番pinをoutに設定する例:下記を追記
dtoverlay=lirc-rpi:gpio_out_pin=24,gpio_in_pin=25,gpio_in_pull=up
  1. /etc/lirc/hardware.confの編集  
    スクリーンショット 2018-01-27 16.34.27.png

  2. /etc/lirc/lircd.confの編集
    冒頭の#UNCONFIGUREDを消す

  3. 再起動
    sudo reboot

/etc/init.d/lirc restartなどのコマンドでlircの再起動ではうまくいかず,ラズパイ自体の再起動が必要だった.

確認方法

  • dmesg | grep lirc
    スクリーンショット 2018-01-27 16.35.58.png

  • lsmod | grep lirc
    スクリーンショット 2018-01-27 16.36.27.png

上記のようになっていれば設定は終了

赤外線の受信

  • 赤外線リモコン受信モジュール:PL-IRM0101-3(データシート)
    PL-IRM1261-C438(データシート)も使ってみたがリモコンを向けてもいないのに信号が止まらなくてイマイチだった.
    (繋ぎ方はシート見て頑張って)

  • 受信  

    • lircデーモンの停止
      /etc/init.d/lirc stop
    • mode2 -d /dev/lirc0で待ち受けが始まる  

    スクリーンショット 2018-01-27 17.22.21.png
    受信モジュールに向けてリモコンのボタン押してみてこんなのが出てこれば受信している.

参考

2
5
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?