2020.08.02(pm) : Creating Google AI speaker using Raspberry Pi 3 and Google Assistant (3)

Until last time, I created a project in the Google Console and downloaded the OAuth 2.0 security token. Today is the last time! This time, we will install the Google SDK and run the sample code on Raspberry Pi. Configure a new Python virtual environment Enter the following at the Raspberry Pi terminal. Get the …

2020.07.25(pm) : Creating Google AI speaker using Raspberry Pi 3 and Google Assistant (2)

I set it up through the official Google Assistant tutorial document.: https://developers.google.com/assistant/sdk/guides/library/python/embed/setup To use Respeak module, you should input below in raspberry pi terminal. Configure and Test the Audio To verify that the speaker and microphone work well on the Raspberry Pi, you need to test the following with the speaker and microphone connected to …

2020.07.12(am) : Creating Google AI speaker using Raspberry Pi 3 and Google Assistant (1)

Hello everybody! Today I am going to make a Google AI speaker using Raspberry Pi 3 and Google Assistant. The model of Raspberry Pi I will use is as follows. That’s Raspberry Pi 3 B. To use Raspberry Pi, you first need to go to the Raspberry Pi homepage and download Raspbian (OS for Raspberry …

2019.04.10(pm): How do I use ultrasonic sensors with Raspberry Pi?

Raspberry Pi pin map GPIO Setup gpio를 다루기전에 먼저 필요한 툴과 라이브러리를 다운 sudo apt-get install git-core      ->쉘에서 위의 명령어를 실행(소스관리툴) git clone git://git.drogon.net/wiringPi ->소스관리툴이 설치가 다 되면 wiringPi프로젝트를 다운 (gpio를 다루는 라이브러리) cd wiringPi // wiringPi 디렉터리에 들어가기 ./build // wiringPi를 설치 gpio -v gpio readall // 설치가 잘되었는지 확인 Gpio readall …