Title: IoT And Arduino
1IoT And Arduino
OneScore Sung Han Lim
2Contents
- Internet of Things
- Action Items
- Designing
- Arduino
- Action Items
- Designing
3Internet of Things
- IoT Internet of Things ?? ? ???? ??? ?????
??? ??? ???? ??
4Internet of Things
- ????, ?????? ??? ??? ???? ?? ????? ??? ??? ??
Fuel-bend NFC Smart Ring (Near Field Communication)
Smart Glass Remote Reading Of Meter
5Action Items
- ? ???? ??? ??
- Single ?? (???) ??, ????
- Single ? ?? ??? or ??? Device lt Design
6Action Items
?? ??? ?
?? ??? ?
?? ??? ?
???? ??
7Action Items
- ? ???, ?? ???? ? ??
- ??? ???? ?? ??? ?? ???, ??? ?? ?? ? or ??
- ?? 10??? ?? ?? n?? ??? ?? Computer, Phone
App, iPad
8Action Items
? ???? ?? ???
??? 2?3? ???
?????? ?? ?????? ??
??? ?? Check ??? ? ????
??? ?? Check ?? ? ????
??? ?? ???? device OR ??, ???? device
????? ???? device
9Action Items
- ? ?? Thing??? ???? ???
- ?? ?? Application ?? Device
- ? ?? 360 ?? ?? ??? ??? ?? ??
- ??, ??, ??? Check ?? Device
- ex) ???? ???
- ??? ??? ????
10Action Items
- ? ???? ??? Things
- ? ?? ?? ??? Application ?? ???
- ? ??? Check ??
- ??? Check ?? Web, App ?? ???? Check
- Web, App ?? ??? ?? Check ???
- Arduino? ??? TV ?? ?? Check Device
- ???? ??ex) Desktop on/off ?? Device ??
11Action Items
- ? ??? ?? ?
- ??? ?? ??? ?????? Application, Device ?? ?? ?
- ? Wearable?? ?? Wearable Device
- ??? ??? ??? ??? ?? x -gt kairos Smart Watch
12Designing
? Smart ??? ???? ?????? ????? ???? ??? People
? Application ?? ?? ?? ???? ?? ?????
?? Application?? ?? ?? ???? ? ??? ?? ?? ??
- ? Smart ???? / ??? ??
- ??? ???? ?? ??
- ?? ?? ? ?? ??? ?? ?? ??? ??
- ???? ? ???
- ?(?)??
- ??? ??? ????
- ???? ??? ??? ?
? ?? ?? ??? ??? ???? Check Device
Application, Web ?? (?)?? ?? ?? ??? ??,
??? ?? ?? Check ??? ?? ? ?? ?? -gt ??? ???
??? ?? ?? ???? ?? ? ??? ???? ??? ???
??? ? ?? Device ???? ?? ( ?? ???? ??, ?? ?
) ?? ?? ?? ???? ?? ?? Check Web
Application ??
13????( Arduino )
Arduino Uno R3
14Arduino
- ? ????( Arduino )
- ???? ????(micro controller)? ??? ?? ??? ??.
- ???? ????(Open-Source Hardware) ?? ????? ????
??? ?? ???? ??????? ???? ???? ?. - ??? ? ????? ??(load)? ?? ??? ?? ???? ?, ??. ??,
??? ?? ????? ??? ??? ??? ? ?? ??? ?? ? ??.
15Arduino
- ? ???? ?? ?? ??(IDE)
- ???(sketch) ???? ??? ???? ??? ??? ??? ?? ??
16Arduino
- ? ???
- ? ??? ???
- ? ? ???
- ? ?? ??? ??
- ? ??? ??
- ? ??? ???
- ? ? ??
- ? ??? ??(?? ? ?? ???)
?
?
?
?
?
?
?
?
17Action Items
18Action Items
- ? ????( Arduino ) ??
- GPIO(general purpose input/output, ??? ???
??),??? ?? LED / FND ?? ???? - ?? ?? ?? ????
- ? ?? ?? ????
- ??? ??? ??? ????
- PWM(pulse width modulation, ?? ? ??) ?? ????(LED
?? ??, DC?? ?? ?? ?)
19Action Items
- ? ????( Arduino ) ??
- ? ?? ???(Smart Home)
- ????? ???? ???? ??? ???
- ?? ?? ??? (????, Remote Reading Of Meter)
- TV ?? ???
- ??? ?? ???
- ??? ?? ???
- ??? ?? ???
- ?? ?? ???
- ?? ?? ???
20Designing
- ? ??? ??? ?? ??
- ???? ??? ???? ???? ? ????.
- 0??? 180? ???? ??? ???? ? ?????.
21Designing
- ? ??? ??? ?? ?? ?? ?? ??
- include ltServo.hgt
- Servo myservo //??? ??? ?? ???? ??
- int angle 0 //?? ??? ??? ??
- void setup()
-
- myservo.attach(9) //? 9? ??? ?? ????? ??
-
- void loop()
-
- for(angle 0 angle lt 180 angle 1)
//0??? 180?? ?? -
//1?? ?? - myservo.write(angle) //angle ??? ??? ??
?? - delay(20) //?? ?? ?? 20ms?
????. -
- for(angle 180 angle gt 1 angle - 1)
//180??? 0?? ?? -
22Designing
- ? ??? ??? ?? ?? ??? ???? ?? ??
- include ltServo.hgt //Servo ?????
- define SERVOS 1
- int servoPinsSERVOS 7 //?7 ??
- Servo myservoSERVOS
- void setup()
-
- Serial.begin(9600)
- for(int i0 i lt SERVOS i)
- myservoi.attach(servoPinsi)
-
- void loop()
-
- serviceSerial()
-
- void serviceSerial()
-
- static int pos 0
serviceSerial() ??? ??? ??? ? ??? ???? ???? ???
??
23Designing