라즈베리파이를 이용한 아마존 에코 서비스를 만들기 위한 오프소스 프로젝트가 진행되고 있다.

아래의 링크를 방문하면 자세한 소스 코드 및 설명이 소개되어 있다.

https://github.com/amzn/alexa-avs-raspberry-pi

 

Project: Raspberry Pi + Alexa Voice Service

About the Project

This project demonstrates how to access and test the Alexa Voice Service using a Java client (running on a Raspberry Pi), and a Node.js server. You will be using the Node.js server to get a Login with Amazon authorization code by visiting a website using your computer's (Raspberry Pi in this case) web browser.

This guide provides step-by-step instructions for obtaining the sample code, the dependencies, and the hardware you need to get the reference implementation running on your Pi. For Windows, Mac, or generic linux instructions, see this guide.


Getting Started

Hardware you need

  1. Raspberry Pi 2 (Model B) - Buy at Amazon. UPDATE: Even though this guide was built using a Raspberry Pi 2, it should work just fine with a Raspberry Pi 3 as well. Pi 1 users - please see this thread for help.
  2. Micro-USB power cable for Raspberry Pi (included with Raspberry Pi)
  3. Micro SD Card - To get started with Raspberry Pi you need an operating system. NOOBS (New Out Of the Box Software) is an easy-to-use operating system install manager for the Raspberry Pi. The simplest way to get NOOBS is to buy an SD card with NOOBS preinstalled - Raspberry Pi 8GB Preloaded (NOOBS) Micro SD Card
  4. An Ethernet cable
  5. USB 2.0 Mini Microphone - Raspberry Pi does not have a built-in microphone; to interact with Alexa you'll need an external one to plug in - Buy at Amazon
  6. External Speaker with 3.5mm audio socket/stereo headset jack - Buy at Amazon
  7. A USB Keyboard & Mouse, and an external HDMI Monitor - we also recommend having a USB keyboard and mouse as well as an HDMI monitor handy if for some reason you can’t “SSH” into your Raspberry Pi. More on “SSH” later.
  8. WiFi Wireless Adapter (Optional) Buy at Amazon

Skills you need

  1. Basic programming experience
  2. Familiarity with shell

 

반응형

'IT > IoT' 카테고리의 다른 글

라즈베리파이 OS설치부터 기본 설정하기  (0) 2016.05.11
블로그 이미지

조이풀 라이프

Lift is short, enjoy the life

,

 

 

[라즈베리파이 상세 설명]

아래의 라즈베리파이 공식 홈페이지를 참조하시기 바랍니다.

https://www.raspberrypi.org/

http://www.leocom.kr/RaspberryPi/Default.aspx

 

[OS 인스톨하기]

아래 경로의 링크로 가셔서 원하시는 OS 선택해서 설치하면 됩니다.

https://www.raspberrypi.org/downloads/

Raspbian is the Foundation’s official supported Operating System. Download it here, or use NOOBS, our easy installer for Raspbian and more.

 

다운로드 받은 ZIP 파일의 압축을 풀면, img 파일이 나온다. 라즈베리파이에 사용할 SD 카드를 PC에 넣고 이 이미지 파일을 SD 카드에 굽는다. 윈도우에서는 Win32 Disk Imager를 이용해서 이미지 파일을 구울 수 있다. Win 32 Disk Imager는 https://sourceforge.net/projects/win32diskimager/ 에서 다운로드 받아 설치하면 된다.


[Win32 Disk Imager를 이용한 이미지 굽기]

 

[기본 설정]

 

 

1. 디스크 용량 확장하기

Mico Flash Disk의 용량 모두 사용하기 위해서 디스크 용량 확장하기가 필요합니다.

 

SD카드 전부 활용하도록 해줍시다.

터미널에서 raspi-config 

- expand_rootfs

- 재부팅


2. 비밀번호 설정

리눅스를 깐 후에 비밀번호 설정은 기본!

sudo passwd 쳐서 현재 계정(기본계정 pi) 의 비밀번호를 설정합니다.

기존 비밀번호는 raspberry

sudo passwd root를 쳐서 root계정의 비밀번호를 설정합니다

 


3. 인터넷 잡아주기

 
cd /etc/network 경로에서 sudo nano interfaces 를 치면 interfaces 문서가 열리는데

여기보면 iface eth0 inet manual이라고 되어있을 겁니다.

manual을 dhcp로 바꿔주세요.


무선랜은 iface wlan0 inet manual에서 manual을 dhcp로 바꾸고

그 아래에wpa-roam 이거 주석처리하고 (#이 주석) 

wpa-ssid "와이파이 SSID

wpa-psk "비번"


4. 업데이트 

(인터넷 연결 필수)

sudo apt-get update

sudo apt-get upgrade

 

5. 한글 입력기 설치
 

 

sudo apt-get install ibus ibus-hangul

 

 

 

반응형

'IT > IoT' 카테고리의 다른 글

라즈베리파이를 이용한 아마존 에코 서비스 만들기  (0) 2016.05.11
블로그 이미지

조이풀 라이프

Lift is short, enjoy the life

,