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
69
2017 SW교육 학생동아리 Lecture 5.
2017 SW교육 학생동아리에서 진행한 "리눅스 서버를 연동한 드론 소프트웨어 프로그래밍"강의 자료입니다.
Jinny You
December 13, 2017
Tweet
Share
More Decks by Jinny You
See All by Jinny You
Integrating WebGPU In Browser with ThorVG
tinyjin
0
8
인디 앱 개발자와 Flutter
tinyjin
0
140
모던 웹 기술로 C++ 렌더링 엔진 테스트 자동화하기
tinyjin
0
13
그래픽 엔진 포팅 사례로 배우는 웹어셈블리 웹 컴포넌트 개발부터 디버깅, 최적화까지
tinyjin
0
100
韩国的打卡地:你喜欢海边吗?
tinyjin
0
20
LottieFiles로 시작하는 빠르고 효율적인 애니메이션 핸드오프
tinyjin
0
42
エンジニアが見つめるLottieアニメーション
tinyjin
0
54
ThorVG's Lottie Model in Action
tinyjin
0
140
국민대학교 사제동행 세미나
tinyjin
0
240
Other Decks in Education
See All in Education
老人会? いえ、技術継承です @ builderscon 2024 LT
s3i7h
0
100
20240810_ワンオペ社内勉強会のノウハウ
ponponmikankan
2
880
勉強したらどうなるの?
mineo_matsuya
9
6.4k
開発終了後こそ成長のチャンス!プロダクト運用を見送った先のアクションプラン
ohmori_yusuke
2
150
認知情報科学科_キャリアデザイン_大学院の紹介
yuyakurodou
0
120
MLH Hackcon: Keynote (2024)
theycallmeswift
0
180
小・中・高等学校における情報教育の体系的な学習を目指したカリキュラムモデル案/curriculum model
codeforeveryone
2
2.3k
cbt2324
cbtlibrary
0
110
Master of Applied Science & Engineering: Computer Science & Master of Science in Applied Informatics
signer
PRO
0
430
Canva
matleenalaakso
0
420
(2024) Couper un gâteau... sans connaître le nombre de convives
mansuy
2
140
Blogit opetuksessa
matleenalaakso
0
1.6k
Featured
See All Featured
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
31
2.7k
Product Roadmaps are Hard
iamctodd
PRO
49
11k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
7
560
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
27
2k
The Art of Programming - Codeland 2020
erikaheidi
52
13k
Building Your Own Lightsaber
phodgson
102
6.1k
Become a Pro
speakerdeck
PRO
25
5k
Designing for Performance
lara
604
68k
How to train your dragon (web standard)
notwaldorf
88
5.7k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.7k
5 minutes of I Can Smell Your CMS
philhawksworth
202
19k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
27
820
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교육 학생동아리