IoT And Arduino - PowerPoint PPT Presentation

About This Presentation
Title:

IoT And Arduino

Description:

Designing . Check . Device:: Application, Web ( ) :: , ... – PowerPoint PPT presentation

Number of Views:3459
Avg rating:3.0/5.0
Slides: 24
Provided by: tis91
Category:
Tags: iot | arduino | meter

less

Transcript and Presenter's Notes

Title: IoT And Arduino


1
IoT And Arduino
OneScore Sung Han Lim
  • ??? ???

2
Contents
  1. Internet of Things
  2. Action Items
  3. Designing
  4. Arduino
  5. Action Items
  6. Designing

3
Internet of Things
  • IoT Internet of Things ?? ? ???? ??? ?????
    ??? ??? ???? ??

4
Internet of Things
  • ????, ?????? ??? ??? ???? ?? ????? ??? ??? ??

Fuel-bend NFC Smart Ring (Near Field Communication)
Smart Glass Remote Reading Of Meter
5
Action Items
  • ? ???? ??? ??
  • Single ?? (???) ??, ????
  • Single ? ?? ??? or ??? Device lt Design

6
Action Items
  • ? ???, ?? ???? ? ??

?? ??? ?
?? ??? ?
?? ??? ?
???? ??
7
Action Items
  • ? ???, ?? ???? ? ??
  • ??? ???? ?? ??? ?? ???, ??? ?? ?? ? or ??
  • ?? 10??? ?? ?? n?? ??? ?? Computer, Phone
    App, iPad

8
Action Items
? ???? ?? ???
??? 2?3? ???
?????? ?? ?????? ??

??? ?? Check ??? ? ????
??? ?? Check ?? ? ????
??? ?? ???? device OR ??, ???? device
????? ???? device
9
Action Items
  • ? ?? Thing??? ???? ???
  • ?? ?? Application ?? Device
  • ? ?? 360 ?? ?? ??? ??? ?? ??
  • ??, ??, ??? Check ?? Device
  • ex) ???? ???
  • ??? ??? ????

10
Action Items
  • ? ???? ??? Things
  • ? ?? ?? ??? Application ?? ???
  • ? ??? Check ??
  • ??? Check ?? Web, App ?? ???? Check
  • Web, App ?? ??? ?? Check ???
  • Arduino? ??? TV ?? ?? Check Device
  • ???? ??ex) Desktop on/off ?? Device ??

11
Action Items
  • ? ??? ?? ?
  • ??? ?? ??? ?????? Application, Device ?? ?? ?
  • ? Wearable?? ?? Wearable Device
  • ??? ??? ??? ??? ?? x -gt kairos Smart Watch


12
Designing
? Smart ??? ???? ?????? ????? ???? ??? People
? Application ?? ?? ?? ???? ?? ?????
?? Application?? ?? ?? ???? ? ??? ?? ?? ??
  • ? Smart ???? / ??? ??
  • ??? ???? ?? ??
  • ?? ?? ? ?? ??? ?? ?? ??? ??
  • ???? ? ???
  • ?(?)??
  • ??? ??? ????
  • ???? ??? ??? ?

? ?? ?? ??? ??? ???? Check Device
Application, Web ?? (?)?? ?? ?? ??? ??,
??? ?? ?? Check ??? ?? ? ?? ?? -gt ??? ???
??? ?? ?? ???? ?? ? ??? ???? ??? ???
??? ? ?? Device ???? ?? ( ?? ???? ??, ?? ?
) ?? ?? ?? ???? ?? ?? Check Web
Application ??
13
????( Arduino )

Arduino Uno R3
14
Arduino
  • ? ????( Arduino )
  • ???? ????(micro controller)? ??? ?? ??? ??.
  • ???? ????(Open-Source Hardware) ?? ????? ????
    ??? ?? ???? ??????? ???? ???? ?.
  • ??? ? ????? ??(load)? ?? ??? ?? ???? ?, ??. ??,
    ??? ?? ????? ??? ??? ??? ? ?? ??? ?? ? ??.

15
Arduino
  • ? ???? ?? ?? ??(IDE)
  • ???(sketch) ???? ??? ???? ??? ??? ??? ?? ??


16
Arduino
  • ? ???? ?? ?? ??(IDE)
  • ? ???
  • ? ??? ???
  • ? ? ???
  • ? ?? ??? ??
  • ? ??? ??
  • ? ??? ???
  • ? ? ??
  • ? ??? ??(?? ? ?? ???)

?
?
?
?
?
?
?
?
17
Action Items
  • ? ????( Arduino )? ??? ?



18
Action Items
  • ? ????( Arduino ) ??
  • GPIO(general purpose input/output, ??? ???
    ??),??? ?? LED / FND ?? ????
  • ?? ?? ?? ????
  • ? ?? ?? ????
  • ??? ??? ??? ????
  • PWM(pulse width modulation, ?? ? ??) ?? ????(LED
    ?? ??, DC?? ?? ?? ?)

19
Action Items
  • ? ????( Arduino ) ??
  • ? ?? ???(Smart Home)
  • ????? ???? ???? ??? ???
  • ?? ?? ??? (????, Remote Reading Of Meter)
  • TV ?? ???
  • ??? ?? ???
  • ??? ?? ???
  • ??? ?? ???
  • ?? ?? ???
  • ?? ?? ???

20
Designing
  • ? ??? ??? ?? ??
  • ???? ??? ???? ???? ? ????.
  • 0??? 180? ???? ??? ???? ? ?????.

21
Designing
  • ? ??? ??? ?? ?? ?? ?? ??
  • 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?? ??


22
Designing
  • ? ??? ??? ?? ?? ??? ???? ?? ??
  • 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() ??? ??? ??? ? ??? ???? ???? ???
??
23
Designing
  • ? ??? ??? ?? ??
Write a Comment
User Comments (0)
About PowerShow.com