본문 바로가기

메이커 이야기/메이커 이야기

스마트 미러 만들기 프로젝트_#3.라즈베리파이_셋팅

반응형

 

1. 라즈베리파이 설치 및 셋팅

2020/02/27 - [메이커 이야기/라즈베리파이] - [라즈베리파이3] Raspberry Pi 3 기본 세팅하기

 

[라즈베리파이3] Raspberry Pi 3 기본 세팅하기

[ 라즈베리파이 세팅하기 ] OS설치가 완료되어 정상적으로 부팅이 되었다면 이미 절반은 오셨습니다. 이제는 라즈베리파이를 편리하게 사용하기 위해서 기본 설정(계정, 언어, 화면, 네트워크, ��

kgu0724.tistory.com

 

 

2. MagicMirror 설치하고 시작하기

https://docs.magicmirror.builders/getting-started/installation.html#manual-installation

 

Installation & Usage | MagicMirror² Documentation

Installation & Usage The Magic Mirror can be installed manually or using automatic installers. At the start of 2020 the decision was made to remove the automatic installer from the MagicMirror² core repository and move it to a community maintained separat

docs.magicmirror.builders

자세한 내용은 위에 나와있지만 간략히 절차만 말씀드리면

#1번 : Nodejs 소스 설치
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

#2번 : NodeJs 설치
sudo apt install -y nodejs

#3번: MagicMirror 사용 코드 Git 다운
git clone https://github.com/MichMich/MagicMirror

#4번 폴더이동
cd MagicMirror/

#5번 npm 종속 Moudl 설치
npm install

#6번 환경 설정
cp config/config.js.sample config/config.js

#7번 서버 시작
npm run start

 

위의 순서대로 한다면

모든 과정은 끝이 납니다

 

 

이제 자세한 모듈 변경을 시작해보도록 하겠습니다.

우선 아래는 날씨정보를 가져오기위한 경로입니다.

먼저 로그인과 회원가입을 먼저해주세요!!

 

https://home.openweathermap.org/

 

Members

Enter your email address and we will send you a link to reset your password.

home.openweathermap.org

 

 

화면에 나타 낼 수 있는 위치는

아래와 같습니다. 총 13가지가 있네요 ~!

 

top_bar, top_left, top_center, top_right, upper_third,
middle_center, lower_third, bottom_left, bottom_center, bottom_right,
bottom_bar, fullscreen_above, and fullscreen_below

간단히 화면 영역을 보시면 아래와 같습니다.

해당 영역에다가 내가 원하는 화면을 띄울 수 있는 아주 재미난 프로젝트!!

 

이제 매직미러를 만들어 보도록 하겠습니다.

 

고고!

 

반응형