Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
2017 SW교육 학생동아리 Lecture 5.
Search
Jinny You
December 13, 2017
Education
0
71
2017 SW교육 학생동아리 Lecture 5.
2017 SW교육 학생동아리에서 진행한 "리눅스 서버를 연동한 드론 소프트웨어 프로그래밍"강의 자료입니다.
Jinny You
December 13, 2017
Tweet
Share
More Decks by Jinny You
See All by Jinny You
디자이너와 개발자가 자주 겪는 Lottie 핸드오프 FAQ - Figma Config Watch Party Seoul
tinyjin
0
71
인디 앱 개발자와 Flutter
tinyjin
0
380
모던 웹 기술로 C++ 렌더링 엔진 테스트 자동화하기
tinyjin
0
39
그래픽 엔진 포팅 사례로 배우는 웹어셈블리 웹 컴포넌트 개발부터 디버깅, 최적화까지
tinyjin
0
330
韩国的打卡地:你喜欢海边吗?
tinyjin
0
38
LottieFiles로 시작하는 빠르고 효율적인 애니메이션 핸드오프
tinyjin
0
87
エンジニアが見つめるLottieアニメーション
tinyjin
0
110
ThorVG's Lottie Model in Action
tinyjin
0
220
국민대학교 사제동행 세미나
tinyjin
0
380
Other Decks in Education
See All in Education
Gesture-based Interaction - Lecture 6 - Next Generation User Interfaces (4018166FNR)
signer
PRO
0
1.7k
第1回大学院理工学系説明会|東京科学大学(Science Tokyo)
sciencetokyo
PRO
0
3.8k
プレゼンテーション実践
takenawa
0
4.7k
OpenRobomaster 中国のロボットコンテスト 日本連携の可能性
takasumasakazu
0
450
Design Guidelines and Principles - Lecture 7 - Information Visualisation (4019538FNR)
signer
PRO
0
2.4k
Info Session MSc Computer Science & MSc Applied Informatics
signer
PRO
0
180
Webリテラシー基礎
takenawa
0
4.8k
SkimaTalk Introduction for Students
skimatalk
0
380
Education-JAWS #3 ~教育現場に、AWSのチカラを~
masakiokuda
0
160
実務プログラム
takenawa
0
4.7k
著作権と授業に関する出前講習会/dme-2025-05-01
gnutar
0
200
検索/ディスプレイ/SNS
takenawa
0
4.8k
Featured
See All Featured
What's in a price? How to price your products and services
michaelherold
246
12k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
Music & Morning Musume
bryan
46
6.6k
Designing Experiences People Love
moore
142
24k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2.1k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
20
1.3k
Java REST API Framework Comparison - PWX 2021
mraible
31
8.6k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Transcript
Lecture 05 2017 SW교육 학생동아리 학습 목표 1. 아두이노와 빵판(Base
Board) 이해하기 2. 아두이노에 LED모듈 끼워보기
프로 아두이노 프로그래밍 하여 다양한 부품을 제어할 수 있는 마이크로
컨트롤러 저렴한 비용 유연성 크로스 플랫폼
프로 원리 이해하기 LED나 모터와 같은 부품들을 아두이노에 연결한 뒤
Arduino IDE 라는 프로그램을 활용해 프로그래밍하여 부품을 작동시키는 원리
https://www.arduino.cc/en/main/software 아두이노 첫걸음 – IDE 설치 아두이노를 프로그래밍 하기 위한
개발툴 Arduino IDE를 설치해보자 다운로드 https://www.arduino.cc/en/main/software
프로 아두이노 IDE 실행하기 메뉴 코드 에디터
프로 아두이노 연결하기 마이크로 5핀(휴대폰 충전기) 규격의 케이블을 활용하여 컴퓨터와
아두이노 연결 아두이노에 연결 컴퓨터에 연결
프로 아두이노 연결 확인 [툴] -> [포트] COM숫자의 형식으로 된
포트 정보 확인
프로 아두이노 핀 이해하기 GND = 전원 공급 핀 숫자
핀 = 모듈 연결 핀
프로 빵판(Bread Board) 이해하기 두줄 구간은 세로로, 다섯 줄 구간은
가로로, 연결되어 있다. 케이블을 서로 연결하려면 같은 라인에 연결해야 한다.
프로 아두이노에 LED 연결하기 [아두이노 LED 회로도] LED의 긴쪽(+) ->
핀에 연결 LED의 짧은쪽(-) -> 330옴 저항에 연결 저항 -> GND(전원 부)에 연결
프로 아두이노 코드 작성하기 아두이노 핀 15번 (LED가 연결된 핀
번호) 예제 1. 1초마다 깜빡이는 LED
프로 아두이노 업로드 하기 확인 버튼(체크표시) 클릭 후 업로드 버튼(화살표)
클릭
프로 코드 해석하기 pinMode(15, OUTPUT); -> 15번 핀을 출력으로 사용
digitalWrite(15, HIGH); -> 15번 핀에 출력 digitalWrite(15, LOW); -> 15번 핀 출력 해제 delay(1000); -> 1초 기다리기
프로 예제 응용하기 LED를 다중으로 연결하여 n초마다 깜박이는 LED만들기 1000
= 1초
감사합니다. 2017 SW교육 학생동아리