私的AI研究会? > SDK on RasPi
#ref(): File not found: "20200209_142556_001s.jpg" at page "画像一覧"
#ref(): File not found: "20200216_092138_001s.jpg" at page "画像一覧"
$ arecord -l **** ハードウェアデバイス CAPTURE のリスト **** カード 1: Device [USB PnP Sound Device], デバイス 0: USB Audio [USB Audio] サブデバイス: 1/1 サブデバイス #0: subdevice #0b. 再生ハードウェアデバイスのリストでスピーカーを見つけ、カード番号とデバイス番号を書き留める。
$ aplay -l **** ハードウェアデバイス PLAYBACK のリスト **** カード 0: ALSA [bcm2835 ALSA], デバイス 0: bcm2835 ALSA [bcm2835 ALSA] サブデバイス: 7/7 サブデバイス #0: subdevice #0 サブデバイス #1: subdevice #1 サブデバイス #2: subdevice #2 サブデバイス #3: subdevice #3 サブデバイス #4: subdevice #4 サブデバイス #5: subdevice #5 サブデバイス #6: subdevice #6 カード 0: ALSA [bcm2835 ALSA], デバイス 1: bcm2835 IEC958/HDMI [bcm2835 IEC958/HDMI] サブデバイス: 1/1 サブデバイス #0: subdevice #0 カード 0: ALSA [bcm2835 ALSA], デバイス 2: bcm2835 IEC958/HDMI1 [bcm2835 IEC958/HDMI1] サブデバイス: 1/1 サブデバイス #0: subdevice #0
$ vi .asoundrc pcm.!default { type asym capture.pcm "mic" playback.pcm "speaker" } pcm.mic { type plug slave { pcm "hw:<card number>,<device number>" } } pcm.speaker { type plug slave { pcm "hw:<card number>,<device number>" } }
$ alsamixerまたは
$ amixer sset PCM 80% -c0 Simple mixer control 'PCM',0 Capabilities: pvolume pvolume-joined pswitch pswitch-joined Playback channels: Mono Limits: Playback -10239 - 400 Mono: Playback -1727 [80%] [-17.27dB] [on]b. 録音音量を調整
$ amixer sset Mic 80% -c1 Simple mixer control 'Mic',0 Capabilities: cvolume cvolume-joined cswitch cswitch-joined Capture channels: Mono Limits: Capture 0 - 16 Mono: Capture 13 [81%] [19.34dB] [on]c. テストサウンドを再生。ザーというホワイトノイズが確認できたら、Ctrl + Cを押す。これを実行しても何も聞こえない場合は、スピーカーの接続を確認。
$ speaker-test -c2 speaker-test 1.1.8 再生デバイス: default ストリームパラメータ: 48000Hz, S16_LE, 2 チャネル 16 オクターブのピンクノイズを使用 レート 48000Hz (要求値 48000Hz) バッファサイズ範囲 480 ? 32768 ピリオドサイズ範囲 480 ? 32768 最大バッファサイズ 32768 を使用 ピリオド数 = 4 period_size = 8192 で設定 buffer_size = 32768 で設定 0 - Front Left 1 - Front Right ピリオド時間 = 5.134241 0 - Front Left 1 - Front Right ^Cd. 短いオーディオクリップを録音。
$ arecord --format=S16_LE --duration=5 --rate=16000 --file-type=raw out.rawe. 再生して記録を確認。何も聞こえない場合は、で録音ボリュームを確認する。
$ aplay --format=S16_LE --rate=16000 out.raw録音と再生が機能している場合、オーディオの設定は完了。そうでない場合は、マイクとスピーカーが正しく接続されていることを確認する。
pi@raspberrypi:~ $ sudo apt install python3-dev python3-venv パッケージリストを読み込んでいます... 完了 依存関係ツリーを作成しています 状態情報を読み取っています... 完了 python3-dev はすでに最新バージョン (3.7.3-1) です。 python3-dev は手動でインストールしたと設定されました。 python3-venv はすでに最新バージョン (3.7.3-1) です。 python3-venv は手動でインストールしたと設定されました。 アップグレード: 0 個、新規インストール: 0 個、削除: 0 個、保留: 0 個。
pi@raspberrypi:~ $ python3 -m venv env
pi@raspberrypi:~ $ env/bin/python -m pip install --upgrade pip setuptools wheel Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Collecting pip Downloading https://files.pythonhosted.org/packages/54/0c/d01aa759fdc501a58f431eb594a17495f15b88da142ce14b5845662c13f3/pip-20.0.2-py2.py3-none-any.whl (1.4MB) 100% |████████████████████████████████| 1.4MB 273kB/s Collecting setuptools Downloading https://files.pythonhosted.org/packages/3d/72/1c1498c1e908e0562b1e1cd30012580baa7d33b5b0ffdbeb5fde2462cc71/setuptools-45.2.0-py3-none-any.whl (584kB) 100% |████████████████████████████████| 593kB 618kB/s Collecting wheel Downloading https://files.pythonhosted.org/packages/8c/23/848298cccf8e40f5bbb59009b32848a4c38f4e7f3364297ab3c3e2e2cd14/wheel-0.34.2-py2.py3-none-any.whl Installing collected packages: pip, setuptools, wheel Found existing installation: pip 18.1 Uninstalling pip-18.1: Successfully uninstalled pip-18.1 Found existing installation: setuptools 40.8.0 Uninstalling setuptools-40.8.0: Successfully uninstalled setuptools-40.8.0 Successfully installed pip-20.0.2 setuptools-45.2.0 wheel-0.34.2
pi@raspberrypi:~ $ sudo apt install portaudio19-dev libffi-dev libssl-dev libmpg123-dev パッケージリストを読み込んでいます... 完了 依存関係ツリーを作成しています 状態情報を読み取っています... 完了 libssl-dev はすでに最新バージョン (1.1.1d-0+deb10u2+rpt1) です。 libssl-dev は手動でインストールしたと設定されました。 以下の追加パッケージがインストールされます: libasound2-dev libjack-jackd2-dev libout123-0 libportaudiocpp0 提案パッケージ: libasound2-doc portaudio19-doc 以下のパッケージが新たにインストールされます: libasound2-dev libffi-dev libjack-jackd2-dev libmpg123-dev libout123-0 libportaudiocpp0 portaudio19-dev アップグレード: 0 個、新規インストール: 7 個、削除: 0 個、保留: 0 個。 602 kB のアーカイブを取得する必要があります。 この操作後に追加で 1,924 kB のディスク容量が消費されます。 続行しますか? [Y/n] y 取得:1 http://archive.raspberrypi.org/debian buster/main armhf libasound2-dev armhf 1.1.8-1+rpt1 [145 kB] 取得:2 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian buster/main armhf libffi-dev armhf 3.2.1-9 [159 kB] 取得:3 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian buster/main armhf libjack-jackd2-dev armhf 1.9.12~dfsg-2 [92.9 kB] 取得:4 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian buster/main armhf libout123-0 armhf 1.25.10-2 [35.5 kB] 取得:5 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian buster/main armhf libmpg123-dev armhf 1.25.10-2 [54.9 kB] 取得:6 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian buster/main armhf libportaudiocpp0 armhf 19.6.0-1 [16.8 kB] 取得:7 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian buster/main armhf portaudio19-dev armhf 19.6.0-1 [98.6 kB] 602 kB を 4秒 で取得しました (149 kB/s) 以前に未選択のパッケージ libasound2-dev:armhf を選択しています。 (データベースを読み込んでいます ... 現在 156865 個のファイルとディレクトリがインストールされています。) .../0-libasound2-dev_1.1.8-1+rpt1_armhf.deb を展開する準備をしています ... libasound2-dev:armhf (1.1.8-1+rpt1) を展開しています... 以前に未選択のパッケージ libffi-dev:armhf を選択しています。 .../1-libffi-dev_3.2.1-9_armhf.deb を展開する準備をしています ... libffi-dev:armhf (3.2.1-9) を展開しています... 以前に未選択のパッケージ libjack-jackd2-dev:armhf を選択しています。 .../2-libjack-jackd2-dev_1.9.12~dfsg-2_armhf.deb を展開する準備をしています ... libjack-jackd2-dev:armhf (1.9.12~dfsg-2) を展開しています... 以前に未選択のパッケージ libout123-0:armhf を選択しています。 .../3-libout123-0_1.25.10-2_armhf.deb を展開する準備をしています ... libout123-0:armhf (1.25.10-2) を展開しています... 以前に未選択のパッケージ libmpg123-dev:armhf を選択しています。 .../4-libmpg123-dev_1.25.10-2_armhf.deb を展開する準備をしています ... libmpg123-dev:armhf (1.25.10-2) を展開しています... 以前に未選択のパッケージ libportaudiocpp0:armhf を選択しています。 .../5-libportaudiocpp0_19.6.0-1_armhf.deb を展開する準備をしています ... libportaudiocpp0:armhf (19.6.0-1) を展開しています... 以前に未選択のパッケージ portaudio19-dev:armhf を選択しています。 .../6-portaudio19-dev_19.6.0-1_armhf.deb を展開する準備をしています ... portaudio19-dev:armhf (19.6.0-1) を展開しています... libjack-jackd2-dev:armhf (1.9.12~dfsg-2) を設定しています ... libffi-dev:armhf (3.2.1-9) を設定しています ... libout123-0:armhf (1.25.10-2) を設定しています ... libportaudiocpp0:armhf (19.6.0-1) を設定しています ... libasound2-dev:armhf (1.1.8-1+rpt1) を設定しています ... libmpg123-dev:armhf (1.25.10-2) を設定しています ... portaudio19-dev:armhf (19.6.0-1) を設定しています ... libc-bin (2.28-10+rpi1) のトリガを処理しています ... man-db (2.8.5-2) のトリガを処理しています ... install-info (6.5.0.dfsg.1-4+b1) のトリガを処理しています ...
pi@raspberrypi:~ $ source ~/env/bin/activate (env) pi@raspberrypi:~ $以降、(env) $ のコマンドプロンプトの場合は仮想環境下にある。
pi@raspberrypi:~ $ source ~/env/bin/activate
(env) pi@raspberrypi:~ $ python -V Python 3.7.3
(env) pi@raspberrypi:~ $ deactivate
pi@raspberrypi:~ $ python -V Python 2.7.16
(env) pi@raspberrypi:~ $ python -m pip install --upgrade google-assistant-library==1.0.1 Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Collecting google-assistant-library==1.0.1 Downloading google_assistant_library-1.0.1-py2.py3-none-linux_armv7l.whl (5.6 MB) |████████████████████████████████| 5.6 MB 9.5 kB/s Collecting argparse<2,>=1.4.0 Downloading argparse-1.4.0-py2.py3-none-any.whl (23 kB) Collecting google-auth<2,>=1.0.1 Downloading google_auth-1.11.0-py2.py3-none-any.whl (76 kB) |████████████████████████████████| 76 kB 1.5 MB/s Collecting requests<3,>=2.14.2 Downloading requests-2.22.0-py2.py3-none-any.whl (57 kB) |████████████████████████████████| 57 kB 1.6 MB/s Collecting pathlib2<3,>=2.3.0 Downloading pathlib2-2.3.5-py2.py3-none-any.whl (18 kB) Collecting enum34<2,>=1.1.6 Downloading enum34-1.1.6-py3-none-any.whl (12 kB) Collecting six>=1.9.0 Downloading six-1.14.0-py2.py3-none-any.whl (10 kB) Collecting cachetools<5.0,>=2.0.0 Downloading cachetools-4.0.0-py3-none-any.whl (10 kB) Collecting pyasn1-modules>=0.2.1 Downloading pyasn1_modules-0.2.8-py2.py3-none-any.whl (155 kB) |████████████████████████████████| 155 kB 639 kB/s Requirement already satisfied, skipping upgrade: setuptools>=40.3.0 in ./env/lib/python3.7/site-packages (from google-auth<2,>=1.0.1->google-assistant-library==1.0.1) (45.2.0) Collecting rsa<4.1,>=3.1.4 Downloading rsa-4.0-py2.py3-none-any.whl (38 kB) Collecting chardet<3.1.0,>=3.0.2 Downloading chardet-3.0.4-py2.py3-none-any.whl (133 kB) |████████████████████████████████| 133 kB 2.5 MB/s Collecting idna<2.9,>=2.5 Downloading idna-2.8-py2.py3-none-any.whl (58 kB) |████████████████████████████████| 58 kB 1.7 MB/s Collecting urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 Downloading urllib3-1.25.8-py2.py3-none-any.whl (125 kB) |████████████████████████████████| 125 kB 3.1 MB/s Collecting certifi>=2017.4.17 Downloading certifi-2019.11.28-py2.py3-none-any.whl (156 kB) |████████████████████████████████| 156 kB 3.1 MB/s Collecting pyasn1<0.5.0,>=0.4.6 Downloading pyasn1-0.4.8-py2.py3-none-any.whl (77 kB) |████████████████████████████████| 77 kB 1.7 MB/s Installing collected packages: argparse, six, cachetools, pyasn1, pyasn1-modules, rsa, google-auth, chardet, idna, urllib3, certifi, requests, pathlib2, enum34, google-assistant-library Successfully installed argparse-1.4.0 cachetools-4.0.0 certifi-2019.11.28 chardet-3.0.4 enum34-1.1.6 google-assistant-library-1.0.1 google-auth-1.11.0 idna-2.8 pathlib2-2.3.5 pyasn1-0.4.8 pyasn1-modules-0.2.8 requests-2.22.0 rsa-4.0 six-1.14.0 urllib3-1.25.8 (env) pi@raspberrypi:~ $
(env) pi@raspberrypi:~ $ python -m pip install --upgrade google-assistant-sdk[samples]==0.5.1 Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Collecting google-assistant-sdk[samples]==0.5.1 Downloading google_assistant_sdk-0.5.1-py2.py3-none-any.whl (33 kB) Collecting google-auth-oauthlib[tool]>=0.1.0 Downloading google_auth_oauthlib-0.4.1-py2.py3-none-any.whl (18 kB) Collecting sounddevice<0.4,>=0.3.7; extra == "samples" Downloading sounddevice-0.3.14-py2.py3-none-any.whl (30 kB) Requirement already satisfied, skipping upgrade: urllib3[secure]<2,>=1.21; extra == "samples" in ./env/lib/python3.7/site-packages (from google-assistant-sdk[samples]==0.5.1) (1.25.8) Collecting click<7,>=6.7; extra == "samples" Downloading click-6.7-py2.py3-none-any.whl (71 kB) |████████████████████████████████| 71 kB 214 kB/s Collecting tenacity<5,>=4.1.0; extra == "samples" Downloading tenacity-4.12.0-py2.py3-none-any.whl (25 kB) Collecting google-assistant-grpc==0.2.1; extra == "samples" Downloading google_assistant_grpc-0.2.1-py2.py3-none-any.whl (21 kB) Collecting futures<4,>=3.1.1; extra == "samples" Downloading futures-3.1.1-py3-none-any.whl (2.8 kB) Requirement already satisfied, skipping upgrade: pathlib2<3,>=2.3.0; extra == "samples" in ./env/lib/python3.7/site-packages (from google-assistant-sdk[samples]==0.5.1) (2.3.5) Requirement already satisfied, skipping upgrade: google-auth in ./env/lib/python3.7/site-packages (from google-auth-oauthlib[tool]>=0.1.0->google-assistant-sdk[samples]==0.5.1) (1.11.0) Collecting requests-oauthlib>=0.7.0 Downloading requests_oauthlib-1.3.0-py2.py3-none-any.whl (23 kB) WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /simple/cffi/ Collecting CFFI>=1.0 Downloading cffi-1.14.0.tar.gz (463 kB) |████████████████████████████████| 463 kB 2.7 MB/s Requirement already satisfied, skipping upgrade: certifi; extra == "secure" in ./env/lib/python3.7/site-packages (from urllib3[secure]<2,>=1.21; extra == "samples"->google-assistant-sdk[samples]==0.5.1) (2019.11.28) Requirement already satisfied, skipping upgrade: idna>=2.0.0; extra == "secure" in ./env/lib/python3.7/site-packages (from urllib3[secure]<2,>=1.21; extra == "samples"->google-assistant-sdk[samples]==0.5.1) (2.8) Collecting cryptography>=1.3.4; extra == "secure" Downloading https://www.piwheels.org/simple/cryptography/cryptography-2.8-cp37-cp37m-linux_armv7l.whl (852 kB) |████████████████████████████████| 852 kB 139 kB/s Collecting pyOpenSSL>=0.14; extra == "secure" Downloading pyOpenSSL-19.1.0-py2.py3-none-any.whl (53 kB) |████████████████████████████████| 53 kB 38 kB/s Requirement already satisfied, skipping upgrade: six>=1.9.0 in ./env/lib/python3.7/site-packages (from tenacity<5,>=4.1.0; extra == "samples"->google-assistant-sdk[samples]==0.5.1) (1.14.0) Collecting googleapis-common-protos>=1.5.2 Downloading https://www.piwheels.org/simple/googleapis-common-protos/googleapis_common_protos-1.51.0-py3-none-any.whl (74 kB) |████████████████████████████████| 74 kB 54 kB/s Collecting grpcio>=1.3.5 Downloading grpcio-1.27.1.tar.gz (16.9 MB) |████████████████████████████████| 16.9 MB 28 kB/s Requirement already satisfied, skipping upgrade: cachetools<5.0,>=2.0.0 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]>=0.1.0->google-assistant-sdk[samples]==0.5.1) (4.0.0) Requirement already satisfied, skipping upgrade: setuptools>=40.3.0 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]>=0.1.0->google-assistant-sdk[samples]==0.5.1) (45.2.0) Requirement already satisfied, skipping upgrade: rsa<4.1,>=3.1.4 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]>=0.1.0->google-assistant-sdk[samples]==0.5.1) (4.0) Requirement already satisfied, skipping upgrade: pyasn1-modules>=0.2.1 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]>=0.1.0->google-assistant-sdk[samples]==0.5.1) (0.2.8) Requirement already satisfied, skipping upgrade: requests>=2.0.0 in ./env/lib/python3.7/site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib[tool]>=0.1.0->google-assistant-sdk[samples]==0.5.1) (2.22.0) Collecting oauthlib>=3.0.0 Downloading oauthlib-3.1.0-py2.py3-none-any.whl (147 kB) |████████████████████████████████| 147 kB 2.9 MB/s Collecting pycparser Downloading https://www.piwheels.org/simple/pycparser/pycparser-2.19-py2.py3-none-any.whl (111 kB) |████████████████████████████████| 111 kB 136 kB/s Collecting protobuf>=3.6.0 Downloading protobuf-3.11.3-py2.py3-none-any.whl (434 kB) |████████████████████████████████| 434 kB 2.9 MB/s Requirement already satisfied, skipping upgrade: pyasn1>=0.1.3 in ./env/lib/python3.7/site-packages (from rsa<4.1,>=3.1.4->google-auth->google-auth-oauthlib[tool]>=0.1.0->google-assistant-sdk[samples]==0.5.1) (0.4.8) Requirement already satisfied, skipping upgrade: chardet<3.1.0,>=3.0.2 in ./env/lib/python3.7/site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib[tool]>=0.1.0->google-assistant-sdk[samples]==0.5.1) (3.0.4) Building wheels for collected packages: CFFI, grpcio Building wheel for CFFI (setup.py) ... done Created wheel for CFFI: filename=cffi-1.14.0-cp37-cp37m-linux_armv7l.whl size=344199 sha256=065c9116c377d349abb73c3dab4c81e96f1f4b609feea59b0ed8e5ed7a507996 Stored in directory: /home/pi/.cache/pip/wheels/c4/91/4f/81fe591804590e3cd010d6c54f251607dc4c61fc5eb5840a51 Building wheel for grpcio (setup.py) ... done Created wheel for grpcio: filename=grpcio-1.27.1-cp37-cp37m-linux_armv7l.whl size=19730888 sha256=e82f92e8a83f098324388108730a9b139ed4e17df1ebda496b41b44af68c0a6f Stored in directory: /home/pi/.cache/pip/wheels/17/b1/29/54f293e4b9aa742164ebc8ba54fef15efefcca306bf6335860 Successfully built CFFI grpcio Installing collected packages: oauthlib, requests-oauthlib, click, google-auth-oauthlib, pycparser, CFFI, sounddevice, tenacity, protobuf, googleapis-common-protos, grpcio, google-assistant-grpc, futures, google-assistant-sdk, cryptography, pyOpenSSL Successfully installed CFFI-1.14.0 click-6.7 cryptography-2.8 futures-3.1.1 google-assistant-grpc-0.2.1 google-assistant-sdk-0.5.1 google-auth-oauthlib-0.4.1 googleapis-common-protos-1.51.0 grpcio-1.27.1 oauthlib-3.1.0 protobuf-3.11.3 pyOpenSSL-19.1.0 pycparser-2.19 requests-oauthlib-1.3.0 sounddevice-0.3.14 tenacity-4.12.0 (env) pi@raspberrypi:~ $
(env) pi@raspberrypi:~ $ python -m pip install --upgrade google-auth-oauthlib[tool] Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Requirement already up-to-date: google-auth-oauthlib[tool] in ./env/lib/python3.7/site-packages (0.4.1) Requirement already satisfied, skipping upgrade: google-auth in ./env/lib/python3.7/site-packages (from google-auth-oauthlib[tool]) (1.11.0) Requirement already satisfied, skipping upgrade: requests-oauthlib>=0.7.0 in ./env/lib/python3.7/site-packages (from google-auth-oauthlib[tool]) (1.3.0) Requirement already satisfied, skipping upgrade: click; extra == "tool" in ./env/lib/python3.7/site-packages (from google-auth-oauthlib[tool]) (6.7) Requirement already satisfied, skipping upgrade: rsa<4.1,>=3.1.4 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]) (4.0) Requirement already satisfied, skipping upgrade: setuptools>=40.3.0 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]) (45.2.0) Requirement already satisfied, skipping upgrade: cachetools<5.0,>=2.0.0 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]) (4.0.0) Requirement already satisfied, skipping upgrade: six>=1.9.0 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]) (1.14.0) Requirement already satisfied, skipping upgrade: pyasn1-modules>=0.2.1 in ./env/lib/python3.7/site-packages (from google-auth->google-auth-oauthlib[tool]) (0.2.8) Requirement already satisfied, skipping upgrade: oauthlib>=3.0.0 in ./env/lib/python3.7/site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib[tool]) (3.1.0) Requirement already satisfied, skipping upgrade: requests>=2.0.0 in ./env/lib/python3.7/site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib[tool]) (2.22.0) Requirement already satisfied, skipping upgrade: pyasn1>=0.1.3 in ./env/lib/python3.7/site-packages (from rsa<4.1,>=3.1.4->google-auth->google-auth-oauthlib[tool]) (0.4.8) Requirement already satisfied, skipping upgrade: certifi>=2017.4.17 in ./env/lib/python3.7/site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib[tool]) (2019.11.28) Requirement already satisfied, skipping upgrade: idna<2.9,>=2.5 in ./env/lib/python3.7/site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib[tool]) (2.8) Requirement already satisfied, skipping upgrade: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in ./env/lib/python3.7/site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib[tool]) (1.25.8) Requirement already satisfied, skipping upgrade: chardet<3.1.0,>=3.0.2 in ./env/lib/python3.7/site-packages (from requests>=2.0.0->requests-oauthlib>=0.7.0->google-auth-oauthlib[tool]) (3.0.4)
(env) pi@raspberrypi:~ $ google-oauthlib-tool --scope https://www.googleapis.com/auth/assistant-sdk-prototype --scope https://www.googleapis.com/auth/gcm --save --headless --client-secrets client_secret_[XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX].apps.googleusercontent.com.json Please visit this URL to authorize this application: https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=1063710001909-4c3g9b9900le8dke9agqdq7i7p3c02vf.apps.googleusercontent.com&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fassistant-sdk-prototype+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fgcm&state=slpK7tPNVrk7YXVk8SJJ8fxuyAAhEx&prompt=consent&access_type=offline Enter the authorization code:※「XXXXX」は実際のファイル名を入れる。
Enter the authorization code: [XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX] credentials saved: /home/pi/.config/google-oauthlib-tool/credentials.json (env) pi@raspberrypi:~ $
(env) pi@raspberrypi:~ $ pip freeze cachetools==4.0.0 certifi==2019.11.28 cffi==1.14.0 chardet==3.0.4 click==6.7 cryptography==2.8 enum34==1.1.6 futures==3.1.1 google-assistant-grpc==0.2.1 google-assistant-library==1.0.1 google-assistant-sdk==0.5.1 google-auth==1.11.0 google-auth-oauthlib==0.4.1 googleapis-common-protos==1.51.0 grpcio==1.27.1 idna==2.8 oauthlib==3.1.0 pathlib2==2.3.5 pkg-resources==0.0.0 protobuf==3.11.3 pyasn1==0.4.8 pyasn1-modules==0.2.8 pycparser==2.19 pyOpenSSL==19.1.0 requests==2.22.0 requests-oauthlib==1.3.0 rsa==4.0 six==1.14.0 sounddevice==0.3.14 tenacity==4.12.0 urllib3==1.25.8
pi@raspberrypi:~ $ source ~/env/bin/activate (env) pi@raspberrypi:~ $
(env) pi@raspberrypi-mas:~ $ google-assistant-demo --project-id raspberryai-mizutu --device-model-id raspberryai-mizutu-rasaiprd-XXXXXX Segmentation faultセグメントエラーで前に進めず!! google-assistant-demo 置いて次に進む。
※ 2020/02/15 記
- 上記で使用するコマンドは、「Googl Assistant Service」の一部である「Google Assistant Library」を使用しているらしい。
- 「Google Assistant Library」は2019/06 で破棄されたと記述あり。今後の動作保証は望めないようだ。サイトには各種混乱状況の記述あり。
- 別途、オフィシャルサイトのドキュメントから再度検証する。
(env) pi@raspberrypi:~ $ googlesamples-assistant-pushtotalk --project-id raspberryai-mizutu --device-model-id raspberryai-mizutu-rasaiprd-bxeos5 INFO:root:Connecting to embeddedassistant.googleapis.com Expression 'paInvalidSampleRate' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2048 Expression 'PaAlsaStreamComponent_InitialConfigure( &self->capture, inParams, self->primeBuffers, hwParamsCapture, &realSr )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2719 Expression 'PaAlsaStream_Configure( stream, inputParameters, outputParameters, sampleRate, framesPerBuffer, &inputLatency, &outputLatency, &hostBufferSizeMode )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2843 Traceback (most recent call last): File "/home/pi/env/bin/googlesamples-assistant-pushtotalk", line 8, in <module> sys.exit(main()) File "/home/pi/env/lib/python3.7/site-packages/click/core.py", line 722, in __call__ return self.main(*args, **kwargs) File "/home/pi/env/lib/python3.7/site-packages/click/core.py", line 697, in main rv = self.invoke(ctx) File "/home/pi/env/lib/python3.7/site-packages/click/core.py", line 895, in invoke return ctx.invoke(self.callback, **ctx.params) File "/home/pi/env/lib/python3.7/site-packages/click/core.py", line 535, in invoke return callback(*args, **kwargs) File "/home/pi/env/lib/python3.7/site-packages/googlesamples/assistant/grpc/pushtotalk.py", line 351, in main flush_size=audio_flush_size File "/home/pi/env/lib/python3.7/site-packages/googlesamples/assistant/grpc/audio_helpers.py", line 190, in __init__ blocksize=int(block_size/2), # blocksize is in number of frames. File "/home/pi/env/lib/python3.7/site-packages/sounddevice.py", line 1345, in __init__ **_remove_self(locals())) File "/home/pi/env/lib/python3.7/site-packages/sounddevice.py", line 861, in __init__ 'Error opening {0}'.format(self.__class__.__name__)) File "/home/pi/env/lib/python3.7/site-packages/sounddevice.py", line 2653, in _check raise PortAudioError(errormsg, err) sounddevice.PortAudioError: Error opening RawStream: Invalid sample rate [PaErrorCode -9997]エラーが発生、原因と解決方法を調査。
解決のヒントをくれたサイト → https://github.com/googlesamples/assistant-sdk-python/issues/382
次のファイルを変更する。(録音設定にレートを加える。)$ vi .asoundrc pcm.!default { type asym capture.pcm "mic" playback.pcm "speaker" } pcm.mic { type plug slave { pcm "hw:1,0" rate 48000 } } pcm.speaker { type plug slave { pcm "hw:<0,0>" } }再度コマンドを実行する。
pi@raspberrypi:~ $ source ~/env/bin/activate (env) pi@raspberrypi:~ $ googlesamples-assistant-pushtotalk --project-id raspberryai-mizutu --device-model-id raspberryai-mizutu-rasaiprd-XXXXXX INFO:root:Connecting to embeddedassistant.googleapis.com WARNING:root:Device config not found: [Errno 2] No such file or directory: '/home/pi/.config/googlesamples-assistant/device_config.json' INFO:root:Registering device INFO:root:Device registered: 48b079ce-4fbf-11ea-ac12-dca63271afe7 Press Enter to send a new request... INFO:root:Recording audio request. INFO:root:Transcript of user request: "who". INFO:root:Transcript of user request: "who are". INFO:root:Transcript of user request: "who I". INFO:root:Transcript of user request: "who I". INFO:root:Transcript of user request: "who is". INFO:root:Transcript of user request: "who I". INFO:root:Transcript of user request: "who is". INFO:root:Transcript of user request: "who I am". INFO:root:Transcript of user request: "who I am". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "who I am". INFO:root:Playing assistant response. WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) INFO:root:Finished playing assistant response. Press Enter to send a new request... INFO:root:Recording audio request. INFO:root:Transcript of user request: "what". INFO:root:Transcript of user request: "what time". INFO:root:Transcript of user request: "what time". INFO:root:Transcript of user request: "what time is". INFO:root:Transcript of user request: "what time is". INFO:root:Transcript of user request: "what time is it". INFO:root:Transcript of user request: "what time is it". INFO:root:Transcript of user request: "what time is it". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "what time is it". INFO:root:Playing assistant response. INFO:root:Finished playing assistant response. Press Enter to send a new request... INFO:root:Recording audio request. INFO:root:Transcript of user request: "what". INFO:root:Transcript of user request: "what is". INFO:root:Transcript of user request: "what is a". INFO:root:Transcript of user request: "what is". INFO:root:Transcript of user request: "what is". INFO:root:Transcript of user request: "what is a". INFO:root:Transcript of user request: "what is the". INFO:root:Transcript of user request: "what is this". INFO:root:Transcript of user request: "what is this". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "what is this". INFO:root:Playing assistant response. INFO:root:Finished playing assistant response. Press Enter to send a new request... INFO:root:Recording audio request. INFO:root:Transcript of user request: "what". INFO:root:Transcript of user request: "what is". INFO:root:Transcript of user request: "what is". INFO:root:Transcript of user request: "what is". INFO:root:Transcript of user request: "what is the". INFO:root:Transcript of user request: "what is the". INFO:root:Transcript of user request: "what is The Wiz". INFO:root:Transcript of user request: "what is the least". INFO:root:Transcript of user request: "what is the reason". INFO:root:Transcript of user request: "what is the weasel". INFO:root:Transcript of user request: "what is the wizard". INFO:root:Transcript of user request: "what is the result". INFO:root:Transcript of user request: "what is the result". INFO:root:Transcript of user request: "what is the result in". INFO:root:Transcript of user request: "what is the result in some". INFO:root:Transcript of user request: "what is the result in South". INFO:root:Transcript of user request: "what is the result in South". INFO:root:Transcript of user request: "what is the result in San". INFO:root:Transcript of user request: "what is the result in San Fran". INFO:root:Transcript of user request: "what is the result in San". INFO:root:Transcript of user request: "what is the result in San Francisco". INFO:root:Transcript of user request: "what is the result in San Francisco". INFO:root:Transcript of user request: "what is the weather in San Francisco". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "what is the weather in San Francisco". INFO:root:Playing assistant response. WARNING:root:SoundDeviceStream write underflow (size: 4000) WARNING:root:SoundDeviceStream write underflow (size: 4000) WARNING:root:SoundDeviceStream write underflow (size: 4000) INFO:root:Finished playing assistant response. Press Enter to send a new request... INFO:root:Recording audio request. INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Finished playing assistant response. Press Enter to send a new request... INFO:root:Recording audio request. ^C Aborted! Segmentation fault一応スペースキーで英語の音声入力を受け付けて、応答するようになった。
冒頭に出る WARNING: については、ドキュメント「初回にデバイスインスタンスIDを見つける」の項目によれば
pi@raspberrypi:~ $ source ~/env/bin/activate (env) pi@raspberrypi:~ $ googlesamples-assistant-pushtotalk INFO:root:Connecting to embeddedassistant.googleapis.com INFO:root:Using device model raspberryai-mizutu-rasaiprd-bxeos5 and device id 48b079ce-4fbf-11ea-ac12-dca63271afe7 Press Enter to send a new request... INFO:root:Recording audio request. INFO:root:Transcript of user request: "turn". INFO:root:Transcript of user request: "turn off". INFO:root:Transcript of user request: "turn off thank". INFO:root:Transcript of user request: "turn off thank you". INFO:root:Transcript of user request: "turn off thank you so". INFO:root:Transcript of user request: "turn off thank you say". INFO:root:Transcript of user request: "turn off thank you Siri". INFO:root:Transcript of user request: "turn off thank you set". INFO:root:Transcript of user request: "turn off thank you Siri". INFO:root:Transcript of user request: "turn off thank you set". INFO:root:Transcript of user request: "turn off thank you Seattle". INFO:root:Transcript of user request: "turn off thank you say that". INFO:root:Transcript of user request: "turn off thank you set it". INFO:root:Transcript of user request: "turn off thank you say that". INFO:root:Transcript of user request: "turn off thank you say that". INFO:root:Transcript of user request: "今日". INFO:root:Transcript of user request: "今日の". INFO:root:Transcript of user request: "今日のて". INFO:root:Transcript of user request: "今日の天気". INFO:root:Transcript of user request: "今日の天気を". INFO:root:Transcript of user request: "今日の天気をお". INFO:root:Transcript of user request: "今日の天気を教え". INFO:root:Transcript of user request: "今日の天気を教えて". INFO:root:Transcript of user request: "今日の天気を教えて". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "今日の天気を教えて". INFO:root:Playing assistant response. WARNING:root:SoundDeviceStream write underflow (size: 4000) WARNING:root:SoundDeviceStream write underflow (size: 4000) WARNING:root:SoundDeviceStream write underflow (size: 4000) WARNING:root:SoundDeviceStream write underflow (size: 4000) INFO:root:Finished playing assistant response. Press Enter to send a new request... INFO:root:Recording audio request. INFO:root:Transcript of user request: "kill". INFO:root:Transcript of user request: "kill the". INFO:root:Transcript of user request: "kilwin and no heat". INFO:root:Transcript of user request: "今日". INFO:root:Transcript of user request: "今日は". INFO:root:Transcript of user request: "今日は 何". INFO:root:Transcript of user request: "今日は何の". INFO:root:Transcript of user request: "今日は何の日". INFO:root:Transcript of user request: "今日は何の日". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "今日は何の日". INFO:root:Playing assistant response. WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) INFO:root:Finished playing assistant response. Press Enter to send a new request... INFO:root:Recording audio request. ^C Aborted!スペースキーで日本語の音声入力を受け付けて、応答するようになった。
#ref(): File not found: "fig4-2.jpg" at page "画像一覧"
#ref(): File not found: "fig4-1.jpg" at page "画像一覧"
ハードウェアボタン(タクトSW)とLEDを紐づけて、ボタンを押して「Push to Talk」を起動させるようにする。
LEDタクトSWの接続回路は右記のとおり。
$ git clone https://github.com/googlesamples/assistant-sdk-python.git Cloning into 'assistant-sdk-python'... remote: Enumerating objects: 19, done. remote: Counting objects: 100% (19/19), done. remote: Compressing objects: 100% (17/17), done. remote: Total 2057 (delta 6), reused 7 (delta 2), pack-reused 2038 Receiving objects: 100% (2057/2057), 677.72 KiB | 961.00 KiB/s, done. Resolving deltas: 100% (1142/1142), done. $ ls Desktop Documents Downloads MagPi Music Pictures Programs Public Templates Videos assistant-sdk-python env out.rawホームディレクトリ内に「assistant-sdk-python」ディレクトリができる。
$ mkdir ~/Programs/googlesamples $ ls Programs --device-model-id googlesamples hello.py hello_nihongo.py hello_today.py image key.txt led.py sound switch_led.py switch_speaker.py xmodmap.txt $ cd ~/assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/ $ cp -r grpc ~/Programs/googlesamples $ cd ~/Programs/googlesamples/grpc/ $ ls README.rst assistant_helpers.py audiofileinput.py device_helpers.py pushtotalk.py textinput.py __init__.py audio_helpers.py browser_helpers.py devicetool.py requirements.txt以下、前の候の続き。
$ cp pushtotalk.py buttontotalk.py $ ls README.rst assistant_helpers.py audiofileinput.py buttontotalk.py devicetool.py requirements.txt __init__.py audio_helpers.py browser_helpers.py device_helpers.py pushtotalk.py textinput.py
# _*_ coding: utf-8 _*_25行目付近に定義の追加
import time import uuid import click import grpc import google.auth.transport.grpc import google.auth.transport.requests import google.oauth2.credentials """ 2020/02/17 mizutu """ import RPi.GPIO as GPIO LED = 16 BUTTON = 20320行付近にGPIOセットアップ追加
"""Samples for the Google Assistant API. Examples: Run the sample with microphone input and speaker output: $ python -m googlesamples.assistant Run the sample with file input and speaker output: $ python -m googlesamples.assistant -i <input file> Run the sample with file input and output: $ python -m googlesamples.assistant -i <input file> -o <output file> """ """ 2020/02/17 mizutu """ GPIO.setmode(GPIO.BCN) GPIO.setwarnings(False) GPIO.setup(BUTTON, GPIO.IN) GPIO.setup(LED, GPIO.OUT, initial=GPIO.LOW) GPIO.add_event_detect(BUTTON,GPIO.FALLING) # Setup logging.450行付近にボタンが押されたときのイベント追加
wait_for_user_trigger = not once while True: if wait_for_user_trigger: """ 2020/02/17 mizutu """ # Add button function # click.pause(info='Press Enter to send a new request...') logging.info("ボタンを押して話しかけてください!") if GPIO.event_detected(BUTTON): GPIO.output(LED, GPIO.HIGH) pass else: GPIO.output(LED, GPIO.HIGH) time.sleep(0.5) GPIO.output(LED, GPIO.LOW) time.sleep(0.5) continue continue_conversation = assistant.assist() # wait for user trigger if there is no follow-up turn in # the conversation.
$ source ~/env/bin/activate (env) $ python buttontotalk.py Traceback (most recent call last): File "buttontotalk.py", line 36, in <module> import RPi.GPIO as GPIO ModuleNotFoundError: No module named 'RPi'RPiモジュールがないとエラー発生 前に作った led.py プログラムを実行してみる。
(env) $ cd ~/Programs (env) pi@raspberrypi-mas:~/Programs $ python led.py File "led.py", line 13 print "LED ON!" ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print("LED ON!")?python3 ではprint文のフォーマットが違うとエラー vi で print('xxxx')に変更して実行してみる。
(env) pi@raspberrypi-mas:~/Programs $ python led.py3 Traceback (most recent call last): File "led.py3", line 4, in <module> import RPi.GPIO as GPIO ModuleNotFoundError: No module named 'RPi'同じくRPiモジュールがないとエラー発生
(env) $ pip3 list Package Version ------------------------ ---------- cachetools 4.0.0 certifi 2019.11.28 cffi 1.14.0 chardet 3.0.4 click 6.7 cryptography 2.8 enum34 1.1.6 futures 3.1.1 google-assistant-grpc 0.2.1 google-assistant-library 1.0.1 google-assistant-sdk 0.5.1 google-auth 1.11.0 google-auth-oauthlib 0.4.1 googleapis-common-protos 1.51.0 grpcio 1.27.1 idna 2.8 oauthlib 3.1.0 pathlib2 2.3.5 pip 20.0.2 pkg-resources 0.0.0 protobuf 3.11.3 pyasn1 0.4.8 pyasn1-modules 0.2.8 pycparser 2.19 pyOpenSSL 19.1.0 requests 2.22.0 requests-oauthlib 1.3.0 rsa 4.0 setuptools 45.2.0 six 1.14.0 sounddevice 0.3.14 tenacity 4.12.0 urllib3 1.25.8 wheel 0.34.2
(env) $ pip install RPi.GPIO Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Collecting RPi.GPIO Downloading https://www.piwheels.org/simple/rpi-gpio/RPi.GPIO-0.7.0-cp37-cp37m-linux_armv7l.whl (69 kB) |████████████████████████████████| 69 kB 64 kB/s Installing collected packages: RPi.GPIO Successfully installed RPi.GPIO-0.7.0インストールを確認する。
(env) $ pip list Package Version ------------------------ ---------- cachetools 4.0.0 certifi 2019.11.28 cffi 1.14.0 chardet 3.0.4 click 6.7 cryptography 2.8 enum34 1.1.6 futures 3.1.1 google-assistant-grpc 0.2.1 google-assistant-library 1.0.1 google-assistant-sdk 0.5.1 google-auth 1.11.0 google-auth-oauthlib 0.4.1 googleapis-common-protos 1.51.0 grpcio 1.27.1 idna 2.8 oauthlib 3.1.0 pathlib2 2.3.5 pip 20.0.2 pkg-resources 0.0.0 protobuf 3.11.3 pyasn1 0.4.8 pyasn1-modules 0.2.8 pycparser 2.19 pyOpenSSL 19.1.0 requests 2.22.0 requests-oauthlib 1.3.0 RPi.GPIO 0.7.0 rsa 4.0 setuptools 45.2.0 six 1.14.0 sounddevice 0.3.14 tenacity 4.12.0 urllib3 1.25.8 wheel 0.34.2
(env) $ python led.py3 led.py3:8: RuntimeWarning: This channel is already in use, continuing anyway. Use GPIO.setwarnings(False) to disable warnings. GPIO.setup(LED, GPIO.OUT) LED ON! LED ON! LED ON!
(env) $ python buttontotalk.py INFO:root:Connecting to embeddedassistant.googleapis.com INFO:root:Using device model raspberryai-mizutu-rasaiprd-bxeos5 and device id 48b079ce-4fbf-11ea-ac12-dca63271afe7 INFO:root:ボタンを押して話しかけてください! INFO:root:ボタンを押して話しかけてください! INFO:root:Recording audio request. INFO:root:Transcript of user request: "kill". INFO:root:Transcript of user request: "kiln". INFO:root:Transcript of user request: "kill nothing". INFO:root:Transcript of user request: "kill no thank". INFO:root:Transcript of user request: "kill no thank you". INFO:root:Transcript of user request: "kill no thank you are". INFO:root:Transcript of user request: "kill no thank you are". INFO:root:Transcript of user request: "kill no thank you up". INFO:root:Transcript of user request: "kill no thank you up". INFO:root:Transcript of user request: "kill no thank you up". INFO:root:Transcript of user request: "今日". INFO:root:Transcript of user request: "今日の". INFO:root:Transcript of user request: "今日のて". INFO:root:Transcript of user request: "今日の天気". INFO:root:Transcript of user request: "今日の天気は". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "今日の天気は". INFO:root:Playing assistant response. WARNING:root:SoundDeviceStream write underflow (size: 4000) WARNING:root:SoundDeviceStream write underflow (size: 4000) WARNING:root:SoundDeviceStream write underflow (size: 4000) WARNING:root:SoundDeviceStream write underflow (size: 4000) INFO:root:Finished playing assistant response. INFO:root:ボタンを押して話しかけてください! INFO:root:ボタンを押して話しかけてください! INFO:root:ボタンを押して話しかけてください! INFO:root:Recording audio request. INFO:root:Transcript of user request: "kill". INFO:root:Transcript of user request: "cool". INFO:root:Transcript of user request: "kilwin under Heat". INFO:root:Transcript of user request: "今日". INFO:root:Transcript of user request: "今日は". INFO:root:Transcript of user request: "今日は 何". INFO:root:Transcript of user request: "今日は何の". INFO:root:Transcript of user request: "今日は何の日". INFO:root:Transcript of user request: "今日は何の日". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "今日は何の日". INFO:root:Playing assistant response. WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) INFO:root:Finished playing assistant response. INFO:root:ボタンを押して話しかけてください! INFO:root:ボタンを押して話しかけてください! ^Z [7]+ 停止 python buttontotalk.pyキーボードの代わりにタクトSWで音声入力できるようになった。
(env) $ python buttontotalk.py INFO:root:Connecting to embeddedassistant.googleapis.com INFO:root:Using device model raspberryai-mizutu-rasaiprd-bxeos5 and device id 48b079ce-4fbf-11ea-ac12-dca63271afe7 INFO:root:ボタンを押して話しかけてください! : INFO:root:ボタンを押して話しかけてください! ^C Aborted!「Ctrl+c」で終了すると問題が解消した。(^_^;) 「Ctrl+D」で停止したプログラムは以下のコマンドで再スタートことがわかる。
$ fg
# If we only want one conversation, break. if once and (not continue_conversation): break """ 2020/02/17 mizutu """ GPIO.cleanup() if __name__ == '__main__': main()
$ cp buttontotalk.py buttontotalk_traits.py「Turn On」でLEDが素早く点滅し、「Turn Off」でLEDが消えるようにカスタマイズ。 「buttontotalk_traits.py」に下記の変更を加える。
: @device_handler.command('action.devices.commands.OnOff') def onoff(on): if on: logging.info('Turning device on') """ 2020/02/17 miautu """ for i in range(5): GPIO.output(LED, GPIO.HIGH) time.sleep(0.2) GPIO.output(LED, GPIO.LOW) time.sleep(0.2) else: logging.info('Turning device off') """ 2020/02/17 miautu """ GPIO.output(LED.GPIO, LOW) @device_handler.command('com.example.commands.BlinkLight') :
$ source ~/env/bin/activate (env) $ python buttontotalk_traits.py INFO:root:Connecting to embeddedassistant.googleapis.com INFO:root:Using device model raspberryai-mizutu-rasaiprd-bxeos5 and device id 48b079ce-4fbf-11ea-ac12-dca63271afe7 INFO:root:ボタンを押して話しかけてください! INFO:root:ボタンを押して話しかけてください! INFO:root:Recording audio request. INFO:root:Transcript of user request: "今日". INFO:root:Transcript of user request: "今日は". INFO:root:Transcript of user request: "今日は 何". INFO:root:Transcript of user request: "今日は何の". INFO:root:Transcript of user request: "今日は何の日". INFO:root:Transcript of user request: "今日は何の日". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "今日は何の日". INFO:root:Playing assistant response. WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) WARNING:root:SoundDeviceStream write underflow (size: 1600) INFO:root:Finished playing assistant response. INFO:root:ボタンを押して話しかけてください! INFO:root:ボタンを押して話しかけてください! INFO:root:Recording audio request. INFO:root:Transcript of user request: "talk". INFO:root:Transcript of user request: "Tom". INFO:root:Transcript of user request: "turn on". INFO:root:Transcript of user request: "turn on". INFO:root:End of audio request detected. INFO:root:Stopping recording. INFO:root:Transcript of user request: "turn on". INFO:root:Playing assistant response. WARNING:root:SoundDeviceStream write underflow (size: 1600) INFO:root:Finished playing assistant response. INFO:root:ボタンを押して話しかけてください! INFO:root:ボタンを押して話しかけてください! ^C Aborted!「Turn On」は認識しているようだが、反応はしていない模様。(引き続き調査)