SlideShare a Scribd company logo
1 of 3
2016 스마트디바이스지능통신 중간 고사(100)
Smart Device M2M
Date: 2016-04-26
1. IoT Network을 사용할 수 있는 현실적인 ICT Service를 제안하고 설명하시
오. 작성방법 – Service명, 동작원리, IoT Network 도입 필요성(30)
[인체 동작 감지 IoT Network]
- 동작원리: 의류의 적당한 위치에 다수 개의 3축 가속 Sensor와 Memory를
가진 소형IoT Node를 장착한다. 이 IoT Node는 인체 각 위치의 가감속 특
성을 계속 저장하고 주기적으로 이 정보를 ZigBee 방식으로 Smartphone
에 전송한다. IoT Node 동작에 필요한 전력은 사용자 동작으로 자동 획득
하며 추가적인 전력 공급은 없다.
- 도입 필요성: 다수 개의 IoT Node 정보를 바탕으로 Smartphone App은 사
용자 동작을 정확히 감지한다. 동작 감지를 더 정확히 하려면 IoT Node
개수를 늘린다. 이런 가공된 정보를 활용해 자세 교정이나 Motion Capture
등에 활용할 수 있다.
2. 사물인터넷(IoT: Internet of Things) SW(Software)의 중요 요소로 Scalable,
Modular, Connected, Reliable을 설정할 수 있습니다. 이 네 가지 요소가 IoT
SW에 필요한 이유를 구체적으로 각각 설명하시오. (20)
- Scalable: IoT SW는 별다른 수정없이 서로 다른 종류의 장치들에 쉽게 사용
될 수 있어야 한다.
- Modular: IoT SW는 RAM 한계에 따라 기능이 Module 형태로 분리 또는
조합될 수 있다.
- Connected: IoT SW를 통해 장치에 수집된 정보를 외부 기기와 무선 혹은
유선 방식으로 교환할 수 있다.
- Reliable: IoT SW는 오동작이나 보안 문제가 발생하지 않도록 이중, 삼중의
방어책을 가져야 한다.
3. Bluetooth Profile이 무엇인지 설명하고, Bluetooth Communication에서
Profile이 사용되는 예를 간략히 한 가지만 제시하시오. (20)
- Bluetooth Profile은 Bluetooth 장치가 다른 Bluetooth 장치와 통신할 때 구
동되는 방식이나 Service가 연결되는 특성을 정한 표준 규격이다. Profile이
표준으로 정해져 있기 때문에, 해당 Service를 사용하려는 App 개발자는 관
련된 Bluetooth Profile을 호출하면 된다.
- 예를 들어 Wireless Headset을 Bluetooth로 연결하려면 Headset Profile을
사용하면 된다.
4. 다음은 Android Location Manager를 이용한 실내 위치 획득 Source Code
의 일부이다. 정상적으로 구동되도록 필요한 Code를 추가하라. 다만
Widget 관련 Code는 이미 있다고 가정하고 작성하지 말 것. (30)
public class MainActivity extends AppCompatActivity {
public LocationManager mLocationMan; (5)
public MyLocationListener myLocationLx;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mLocationMan = (LocationManager) getSystemService(LOCATION_SERVICE);
myLocationLx = new MyLocationListener(); (5)
mLocationMan.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1000, 0,
myLocationLx); (10)
}
public class MyLocationListener implements LocationListener {
public double latitude, longitude;
@Override
public void onLocationChanged(Location location) {
latitude = location.getLatitude(); (5)
longitude = location.getLongitude(); (5)
}
}

More Related Content

What's hot

TestSDIC2015-2(Answer)
TestSDIC2015-2(Answer)TestSDIC2015-2(Answer)
TestSDIC2015-2(Answer)Yong Heui Cho
 
TestSDS2017-2(answer)
TestSDS2017-2(answer)TestSDS2017-2(answer)
TestSDS2017-2(answer)Yong Heui Cho
 
사물인터넷(Internet of Things) 시대의 공개SW
사물인터넷(Internet of Things) 시대의 공개SW사물인터넷(Internet of Things) 시대의 공개SW
사물인터넷(Internet of Things) 시대의 공개SW정명훈 Jerry Jeong
 
TestSDS(2017-1, answer)
TestSDS(2017-1, answer)TestSDS(2017-1, answer)
TestSDS(2017-1, answer)Yong Heui Cho
 
사물인터넷 노트5_센서네트워크
사물인터넷 노트5_센서네트워크사물인터넷 노트5_센서네트워크
사물인터넷 노트5_센서네트워크Dong Hwa Jeong
 
TestSDS2014-2(Answer)
TestSDS2014-2(Answer)TestSDS2014-2(Answer)
TestSDS2014-2(Answer)Yong Heui Cho
 
사물인터넷 노트14_사물인터넷보안
사물인터넷 노트14_사물인터넷보안사물인터넷 노트14_사물인터넷보안
사물인터넷 노트14_사물인터넷보안Dong Hwa Jeong
 
20140219 techdays mini 앱 개발 세미나(4)
20140219 techdays mini  앱 개발 세미나(4) 20140219 techdays mini  앱 개발 세미나(4)
20140219 techdays mini 앱 개발 세미나(4) 영욱 김
 
[1C6]오픈소스 하드웨어 플랫폼과 Node.js로 구현하는 IoT 플랫폼
[1C6]오픈소스 하드웨어 플랫폼과 Node.js로 구현하는 IoT 플랫폼[1C6]오픈소스 하드웨어 플랫폼과 Node.js로 구현하는 IoT 플랫폼
[1C6]오픈소스 하드웨어 플랫폼과 Node.js로 구현하는 IoT 플랫폼NAVER D2
 
Iot wearable mobile platform architecture 20150912
Iot wearable mobile platform architecture 20150912Iot wearable mobile platform architecture 20150912
Iot wearable mobile platform architecture 20150912준우 조
 
TestSDS2013-2(answer)
TestSDS2013-2(answer)TestSDS2013-2(answer)
TestSDS2013-2(answer)Yong Heui Cho
 
IoT strategy for u (by adam)
IoT strategy for u (by adam)IoT strategy for u (by adam)
IoT strategy for u (by adam)Seung Min Shin
 
Proud net iot 제품소개서
Proud net iot 제품소개서Proud net iot 제품소개서
Proud net iot 제품소개서junghoon lee
 
ARTIK 710 IoT class
ARTIK 710 IoT class ARTIK 710 IoT class
ARTIK 710 IoT class 정출 김
 
Sensors candidated dkim_v2
Sensors candidated dkim_v2Sensors candidated dkim_v2
Sensors candidated dkim_v2David Yushin KIM
 
IoT 기반 비즈니스 트랜드 및 보안 이슈 전망 2015.12.10
IoT 기반 비즈니스 트랜드 및 보안 이슈 전망   2015.12.10IoT 기반 비즈니스 트랜드 및 보안 이슈 전망   2015.12.10
IoT 기반 비즈니스 트랜드 및 보안 이슈 전망 2015.12.10Hakyong Kim
 
아이씨엔 매거진 August 2014. Industrial Communication Network MAGAZINE
아이씨엔 매거진 August 2014. Industrial Communication Network MAGAZINE아이씨엔 매거진 August 2014. Industrial Communication Network MAGAZINE
아이씨엔 매거진 August 2014. Industrial Communication Network MAGAZINESeungMo Oh
 

What's hot (18)

TestSDIC2015-2(Answer)
TestSDIC2015-2(Answer)TestSDIC2015-2(Answer)
TestSDIC2015-2(Answer)
 
TestSDS2017-2(answer)
TestSDS2017-2(answer)TestSDS2017-2(answer)
TestSDS2017-2(answer)
 
사물인터넷(Internet of Things) 시대의 공개SW
사물인터넷(Internet of Things) 시대의 공개SW사물인터넷(Internet of Things) 시대의 공개SW
사물인터넷(Internet of Things) 시대의 공개SW
 
TestSDS(2017-1, answer)
TestSDS(2017-1, answer)TestSDS(2017-1, answer)
TestSDS(2017-1, answer)
 
사물인터넷 노트5_센서네트워크
사물인터넷 노트5_센서네트워크사물인터넷 노트5_센서네트워크
사물인터넷 노트5_센서네트워크
 
TestSDS2014-2(Answer)
TestSDS2014-2(Answer)TestSDS2014-2(Answer)
TestSDS2014-2(Answer)
 
사물인터넷 노트14_사물인터넷보안
사물인터넷 노트14_사물인터넷보안사물인터넷 노트14_사물인터넷보안
사물인터넷 노트14_사물인터넷보안
 
20140219 techdays mini 앱 개발 세미나(4)
20140219 techdays mini  앱 개발 세미나(4) 20140219 techdays mini  앱 개발 세미나(4)
20140219 techdays mini 앱 개발 세미나(4)
 
[1C6]오픈소스 하드웨어 플랫폼과 Node.js로 구현하는 IoT 플랫폼
[1C6]오픈소스 하드웨어 플랫폼과 Node.js로 구현하는 IoT 플랫폼[1C6]오픈소스 하드웨어 플랫폼과 Node.js로 구현하는 IoT 플랫폼
[1C6]오픈소스 하드웨어 플랫폼과 Node.js로 구현하는 IoT 플랫폼
 
Iot wearable mobile platform architecture 20150912
Iot wearable mobile platform architecture 20150912Iot wearable mobile platform architecture 20150912
Iot wearable mobile platform architecture 20150912
 
TestSDS2013-2(answer)
TestSDS2013-2(answer)TestSDS2013-2(answer)
TestSDS2013-2(answer)
 
IoT strategy for u (by adam)
IoT strategy for u (by adam)IoT strategy for u (by adam)
IoT strategy for u (by adam)
 
ProudNet IoT 제품소개서
ProudNet IoT 제품소개서ProudNet IoT 제품소개서
ProudNet IoT 제품소개서
 
Proud net iot 제품소개서
Proud net iot 제품소개서Proud net iot 제품소개서
Proud net iot 제품소개서
 
ARTIK 710 IoT class
ARTIK 710 IoT class ARTIK 710 IoT class
ARTIK 710 IoT class
 
Sensors candidated dkim_v2
Sensors candidated dkim_v2Sensors candidated dkim_v2
Sensors candidated dkim_v2
 
IoT 기반 비즈니스 트랜드 및 보안 이슈 전망 2015.12.10
IoT 기반 비즈니스 트랜드 및 보안 이슈 전망   2015.12.10IoT 기반 비즈니스 트랜드 및 보안 이슈 전망   2015.12.10
IoT 기반 비즈니스 트랜드 및 보안 이슈 전망 2015.12.10
 
아이씨엔 매거진 August 2014. Industrial Communication Network MAGAZINE
아이씨엔 매거진 August 2014. Industrial Communication Network MAGAZINE아이씨엔 매거진 August 2014. Industrial Communication Network MAGAZINE
아이씨엔 매거진 August 2014. Industrial Communication Network MAGAZINE
 

Viewers also liked

Introduction to IoT Network
Introduction to IoT NetworkIntroduction to IoT Network
Introduction to IoT NetworkYong Heui Cho
 
TestSDIC2016-2(answer)
TestSDIC2016-2(answer)TestSDIC2016-2(answer)
TestSDIC2016-2(answer)Yong Heui Cho
 
Bluetooth Layer Structure
Bluetooth Layer StructureBluetooth Layer Structure
Bluetooth Layer StructureYong Heui Cho
 
스마트디바이스지능통신(강의계획서)2017-1
스마트디바이스지능통신(강의계획서)2017-1스마트디바이스지능통신(강의계획서)2017-1
스마트디바이스지능통신(강의계획서)2017-1Yong Heui Cho
 
Android - Sensor Manager
Android - Sensor ManagerAndroid - Sensor Manager
Android - Sensor ManagerYong Heui Cho
 
Android - Application Framework
Android - Application FrameworkAndroid - Application Framework
Android - Application FrameworkYong Heui Cho
 
Android - Phone Calls
Android - Phone CallsAndroid - Phone Calls
Android - Phone CallsYong Heui Cho
 
Introduction to Smart Devices
Introduction to Smart DevicesIntroduction to Smart Devices
Introduction to Smart DevicesYong Heui Cho
 
Introduction to RTOS
Introduction to RTOSIntroduction to RTOS
Introduction to RTOSYong Heui Cho
 
Introduction to Bluetooth
Introduction to BluetoothIntroduction to Bluetooth
Introduction to BluetoothYong Heui Cho
 
Smart Device RF & Antennas
Smart Device RF & AntennasSmart Device RF & Antennas
Smart Device RF & AntennasYong Heui Cho
 
Diode - Operational Principle
Diode - Operational PrincipleDiode - Operational Principle
Diode - Operational PrincipleYong Heui Cho
 
BJT - Operational Principle
BJT - Operational PrincipleBJT - Operational Principle
BJT - Operational PrincipleYong Heui Cho
 
Android - Broadcast Receiver
Android - Broadcast ReceiverAndroid - Broadcast Receiver
Android - Broadcast ReceiverYong Heui Cho
 
Basic Circuit Theory
Basic Circuit TheoryBasic Circuit Theory
Basic Circuit TheoryYong Heui Cho
 
감쇄기 설계(Design of Attenuator)
감쇄기 설계(Design of Attenuator)감쇄기 설계(Design of Attenuator)
감쇄기 설계(Design of Attenuator)Yong Heui Cho
 

Viewers also liked (20)

Introduction to IoT Network
Introduction to IoT NetworkIntroduction to IoT Network
Introduction to IoT Network
 
TestSDIC2016-2(answer)
TestSDIC2016-2(answer)TestSDIC2016-2(answer)
TestSDIC2016-2(answer)
 
Bluetooth Layer Structure
Bluetooth Layer StructureBluetooth Layer Structure
Bluetooth Layer Structure
 
스마트디바이스지능통신(강의계획서)2017-1
스마트디바이스지능통신(강의계획서)2017-1스마트디바이스지능통신(강의계획서)2017-1
스마트디바이스지능통신(강의계획서)2017-1
 
Android - Sensor Manager
Android - Sensor ManagerAndroid - Sensor Manager
Android - Sensor Manager
 
Android - Application Framework
Android - Application FrameworkAndroid - Application Framework
Android - Application Framework
 
Android - Phone Calls
Android - Phone CallsAndroid - Phone Calls
Android - Phone Calls
 
Introduction to Smart Devices
Introduction to Smart DevicesIntroduction to Smart Devices
Introduction to Smart Devices
 
Introduction to IoT
Introduction to IoTIntroduction to IoT
Introduction to IoT
 
Introduction to RTOS
Introduction to RTOSIntroduction to RTOS
Introduction to RTOS
 
Android Programming
Android ProgrammingAndroid Programming
Android Programming
 
Introduction to Bluetooth
Introduction to BluetoothIntroduction to Bluetooth
Introduction to Bluetooth
 
Android - Message
Android - MessageAndroid - Message
Android - Message
 
Basic Android OS
Basic Android OSBasic Android OS
Basic Android OS
 
Smart Device RF & Antennas
Smart Device RF & AntennasSmart Device RF & Antennas
Smart Device RF & Antennas
 
Diode - Operational Principle
Diode - Operational PrincipleDiode - Operational Principle
Diode - Operational Principle
 
BJT - Operational Principle
BJT - Operational PrincipleBJT - Operational Principle
BJT - Operational Principle
 
Android - Broadcast Receiver
Android - Broadcast ReceiverAndroid - Broadcast Receiver
Android - Broadcast Receiver
 
Basic Circuit Theory
Basic Circuit TheoryBasic Circuit Theory
Basic Circuit Theory
 
감쇄기 설계(Design of Attenuator)
감쇄기 설계(Design of Attenuator)감쇄기 설계(Design of Attenuator)
감쇄기 설계(Design of Attenuator)
 

Similar to TestSDIC2016-1(answer)

사물 인터넷을 넘어 지능형 사물 인터넷 시대로!_강지나 클라우드 솔루션 아키텍트
사물 인터넷을 넘어 지능형 사물 인터넷 시대로!_강지나 클라우드 솔루션 아키텍트사물 인터넷을 넘어 지능형 사물 인터넷 시대로!_강지나 클라우드 솔루션 아키텍트
사물 인터넷을 넘어 지능형 사물 인터넷 시대로!_강지나 클라우드 솔루션 아키텍트NAVER CLOUD PLATFORMㅣ네이버 클라우드 플랫폼
 
Internet of Things
Internet of ThingsInternet of Things
Internet of ThingsDaeyoung Kim
 
140918 IOT hub 컨셉 및 라인업_1.0
140918 IOT hub 컨셉 및 라인업_1.0140918 IOT hub 컨셉 및 라인업_1.0
140918 IOT hub 컨셉 및 라인업_1.0Seung Min Shin
 
사물인터넷서비스와 클라우드
사물인터넷서비스와 클라우드사물인터넷서비스와 클라우드
사물인터넷서비스와 클라우드봉조 김
 
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdfTae wook kang
 
Sensor cloud 이승배
Sensor cloud 이승배Sensor cloud 이승배
Sensor cloud 이승배SEUNG BAE LEE
 
스마트 폰 보급으로 새로운 전기를 맞는 Indoor gps 기술
스마트 폰 보급으로 새로운 전기를 맞는 Indoor gps 기술스마트 폰 보급으로 새로운 전기를 맞는 Indoor gps 기술
스마트 폰 보급으로 새로운 전기를 맞는 Indoor gps 기술A-type Company
 
IoT 공통 보안가이드
IoT 공통 보안가이드IoT 공통 보안가이드
IoT 공통 보안가이드봉조 김
 
IoT 공통플랫폼의 구축 및 활용전략
IoT 공통플랫폼의 구축 및 활용전략IoT 공통플랫폼의 구축 및 활용전략
IoT 공통플랫폼의 구축 및 활용전략Youn Sang Jang
 
AWS IoT를 통해 클라우드로 세상을 연결하는 방법 - 이종화 솔루션즈 아키텍트, AWS / 최원근 솔루션즈 아키텍트, AWS :: AW...
AWS IoT를 통해 클라우드로 세상을 연결하는 방법 - 이종화 솔루션즈 아키텍트, AWS / 최원근 솔루션즈 아키텍트, AWS :: AW...AWS IoT를 통해 클라우드로 세상을 연결하는 방법 - 이종화 솔루션즈 아키텍트, AWS / 최원근 솔루션즈 아키텍트, AWS :: AW...
AWS IoT를 통해 클라우드로 세상을 연결하는 방법 - 이종화 솔루션즈 아키텍트, AWS / 최원근 솔루션즈 아키텍트, AWS :: AW...Amazon Web Services Korea
 
IoT 제품 및 서비스 분석 (2013.9월 기준)
IoT 제품 및 서비스 분석 (2013.9월 기준)IoT 제품 및 서비스 분석 (2013.9월 기준)
IoT 제품 및 서비스 분석 (2013.9월 기준)jinilamp
 
The System Architecture and Standardization of Production IT Convergence for ...
The System Architecture and Standardization of Production IT Convergence for ...The System Architecture and Standardization of Production IT Convergence for ...
The System Architecture and Standardization of Production IT Convergence for ...S.K. Cha of ACS in Korea
 
Trends on Smart Wearable Application Standardization
Trends on Smart Wearable Application StandardizationTrends on Smart Wearable Application Standardization
Trends on Smart Wearable Application StandardizationJonathan Jeon
 
사물인터넷 비즈니스 사례 분석을 통한 사업화 전략 수립
사물인터넷 비즈니스 사례 분석을 통한 사업화 전략 수립사물인터넷 비즈니스 사례 분석을 통한 사업화 전략 수립
사물인터넷 비즈니스 사례 분석을 통한 사업화 전략 수립Hakyong Kim
 
8월 24일 인공지능사업화 세미나: IoT 구조물 변위 모니터링 솔루션 - 하이테크
8월 24일 인공지능사업화 세미나: IoT 구조물 변위 모니터링 솔루션 - 하이테크8월 24일 인공지능사업화 세미나: IoT 구조물 변위 모니터링 솔루션 - 하이테크
8월 24일 인공지능사업화 세미나: IoT 구조물 변위 모니터링 솔루션 - 하이테크HELENA LEE
 
20150311 사물인터넷이 여는 새로운 세상 telco
20150311 사물인터넷이 여는 새로운 세상 telco20150311 사물인터넷이 여는 새로운 세상 telco
20150311 사물인터넷이 여는 새로운 세상 telcoDonghyung Shin
 

Similar to TestSDIC2016-1(answer) (20)

사물 인터넷을 넘어 지능형 사물 인터넷 시대로!_강지나 클라우드 솔루션 아키텍트
사물 인터넷을 넘어 지능형 사물 인터넷 시대로!_강지나 클라우드 솔루션 아키텍트사물 인터넷을 넘어 지능형 사물 인터넷 시대로!_강지나 클라우드 솔루션 아키텍트
사물 인터넷을 넘어 지능형 사물 인터넷 시대로!_강지나 클라우드 솔루션 아키텍트
 
사물인터넷 산업의 주요동향
사물인터넷 산업의 주요동향사물인터넷 산업의 주요동향
사물인터넷 산업의 주요동향
 
Internet of Things
Internet of ThingsInternet of Things
Internet of Things
 
140918 IOT hub 컨셉 및 라인업_1.0
140918 IOT hub 컨셉 및 라인업_1.0140918 IOT hub 컨셉 및 라인업_1.0
140918 IOT hub 컨셉 및 라인업_1.0
 
사물인터넷서비스와 클라우드
사물인터넷서비스와 클라우드사물인터넷서비스와 클라우드
사물인터넷서비스와 클라우드
 
The Bible of IoTs
The Bible of IoTsThe Bible of IoTs
The Bible of IoTs
 
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
오픈소스로 쉽게 따라해보는 Unreal과 IoT 연계 및 개발 방법 소개.pdf
 
Sensor cloud 이승배
Sensor cloud 이승배Sensor cloud 이승배
Sensor cloud 이승배
 
스마트 폰 보급으로 새로운 전기를 맞는 Indoor gps 기술
스마트 폰 보급으로 새로운 전기를 맞는 Indoor gps 기술스마트 폰 보급으로 새로운 전기를 맞는 Indoor gps 기술
스마트 폰 보급으로 새로운 전기를 맞는 Indoor gps 기술
 
IoT 공통 보안가이드
IoT 공통 보안가이드IoT 공통 보안가이드
IoT 공통 보안가이드
 
IoT 공통플랫폼의 구축 및 활용전략
IoT 공통플랫폼의 구축 및 활용전략IoT 공통플랫폼의 구축 및 활용전략
IoT 공통플랫폼의 구축 및 활용전략
 
AWS IoT를 통해 클라우드로 세상을 연결하는 방법 - 이종화 솔루션즈 아키텍트, AWS / 최원근 솔루션즈 아키텍트, AWS :: AW...
AWS IoT를 통해 클라우드로 세상을 연결하는 방법 - 이종화 솔루션즈 아키텍트, AWS / 최원근 솔루션즈 아키텍트, AWS :: AW...AWS IoT를 통해 클라우드로 세상을 연결하는 방법 - 이종화 솔루션즈 아키텍트, AWS / 최원근 솔루션즈 아키텍트, AWS :: AW...
AWS IoT를 통해 클라우드로 세상을 연결하는 방법 - 이종화 솔루션즈 아키텍트, AWS / 최원근 솔루션즈 아키텍트, AWS :: AW...
 
IoT 제품 및 서비스 분석 (2013.9월 기준)
IoT 제품 및 서비스 분석 (2013.9월 기준)IoT 제품 및 서비스 분석 (2013.9월 기준)
IoT 제품 및 서비스 분석 (2013.9월 기준)
 
The System Architecture and Standardization of Production IT Convergence for ...
The System Architecture and Standardization of Production IT Convergence for ...The System Architecture and Standardization of Production IT Convergence for ...
The System Architecture and Standardization of Production IT Convergence for ...
 
The Bible of 5G 2.0
The Bible of 5G 2.0The Bible of 5G 2.0
The Bible of 5G 2.0
 
Trends on Smart Wearable Application Standardization
Trends on Smart Wearable Application StandardizationTrends on Smart Wearable Application Standardization
Trends on Smart Wearable Application Standardization
 
사물인터넷 비즈니스 사례 분석을 통한 사업화 전략 수립
사물인터넷 비즈니스 사례 분석을 통한 사업화 전략 수립사물인터넷 비즈니스 사례 분석을 통한 사업화 전략 수립
사물인터넷 비즈니스 사례 분석을 통한 사업화 전략 수립
 
8월 24일 인공지능사업화 세미나: IoT 구조물 변위 모니터링 솔루션 - 하이테크
8월 24일 인공지능사업화 세미나: IoT 구조물 변위 모니터링 솔루션 - 하이테크8월 24일 인공지능사업화 세미나: IoT 구조물 변위 모니터링 솔루션 - 하이테크
8월 24일 인공지능사업화 세미나: IoT 구조물 변위 모니터링 솔루션 - 하이테크
 
20150311 사물인터넷이 여는 새로운 세상 telco
20150311 사물인터넷이 여는 새로운 세상 telco20150311 사물인터넷이 여는 새로운 세상 telco
20150311 사물인터넷이 여는 새로운 세상 telco
 
모바일컨버전스 회사소개서
모바일컨버전스 회사소개서모바일컨버전스 회사소개서
모바일컨버전스 회사소개서
 

More from Yong Heui Cho

Android - Sensor Manager
Android - Sensor ManagerAndroid - Sensor Manager
Android - Sensor ManagerYong Heui Cho
 
Android - Broadcast Receiver
Android - Broadcast ReceiverAndroid - Broadcast Receiver
Android - Broadcast ReceiverYong Heui Cho
 
TestBCD2018-2(answer)
TestBCD2018-2(answer)TestBCD2018-2(answer)
TestBCD2018-2(answer)Yong Heui Cho
 
TestSDS2018-2(answer)
TestSDS2018-2(answer)TestSDS2018-2(answer)
TestSDS2018-2(answer)Yong Heui Cho
 
TestEC2018-2(answer)
TestEC2018-2(answer)TestEC2018-2(answer)
TestEC2018-2(answer)Yong Heui Cho
 
TestEC2018-1(answer)
TestEC2018-1(answer)TestEC2018-1(answer)
TestEC2018-1(answer)Yong Heui Cho
 
TestBCD2018-1(answer)
TestBCD2018-1(answer)TestBCD2018-1(answer)
TestBCD2018-1(answer)Yong Heui Cho
 
TestSDS2018-1(answer)
TestSDS2018-1(answer)TestSDS2018-1(answer)
TestSDS2018-1(answer)Yong Heui Cho
 
BJT - Analysis of Bias
BJT - Analysis of BiasBJT - Analysis of Bias
BJT - Analysis of BiasYong Heui Cho
 
TestCloud2018-2(answer)
TestCloud2018-2(answer)TestCloud2018-2(answer)
TestCloud2018-2(answer)Yong Heui Cho
 
TestECD2018-1(answer)
TestECD2018-1(answer)TestECD2018-1(answer)
TestECD2018-1(answer)Yong Heui Cho
 
Test-SDIC2018-2(answer)
Test-SDIC2018-2(answer)Test-SDIC2018-2(answer)
Test-SDIC2018-2(answer)Yong Heui Cho
 
TestCloud2018-1(answer)
TestCloud2018-1(answer)TestCloud2018-1(answer)
TestCloud2018-1(answer)Yong Heui Cho
 
Test-SDIC2018-1(Answer)
Test-SDIC2018-1(Answer)Test-SDIC2018-1(Answer)
Test-SDIC2018-1(Answer)Yong Heui Cho
 
RF 증폭기 설계(Design of RF Amplifier)-rev1
RF 증폭기 설계(Design of RF Amplifier)-rev1RF 증폭기 설계(Design of RF Amplifier)-rev1
RF 증폭기 설계(Design of RF Amplifier)-rev1Yong Heui Cho
 
Computing Paradigm - rev1
Computing Paradigm - rev1Computing Paradigm - rev1
Computing Paradigm - rev1Yong Heui Cho
 

More from Yong Heui Cho (20)

Android - Sensor Manager
Android - Sensor ManagerAndroid - Sensor Manager
Android - Sensor Manager
 
Android - Broadcast Receiver
Android - Broadcast ReceiverAndroid - Broadcast Receiver
Android - Broadcast Receiver
 
Android - Message
Android - MessageAndroid - Message
Android - Message
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
 
Computing Paradigm
Computing ParadigmComputing Paradigm
Computing Paradigm
 
TestBCD2018-2(answer)
TestBCD2018-2(answer)TestBCD2018-2(answer)
TestBCD2018-2(answer)
 
TestSDS2018-2(answer)
TestSDS2018-2(answer)TestSDS2018-2(answer)
TestSDS2018-2(answer)
 
TestEC2018-2(answer)
TestEC2018-2(answer)TestEC2018-2(answer)
TestEC2018-2(answer)
 
TestEC2018-1(answer)
TestEC2018-1(answer)TestEC2018-1(answer)
TestEC2018-1(answer)
 
TestBCD2018-1(answer)
TestBCD2018-1(answer)TestBCD2018-1(answer)
TestBCD2018-1(answer)
 
TestSDS2018-1(answer)
TestSDS2018-1(answer)TestSDS2018-1(answer)
TestSDS2018-1(answer)
 
BJT - Analysis of Bias
BJT - Analysis of BiasBJT - Analysis of Bias
BJT - Analysis of Bias
 
TestCloud2018-2(answer)
TestCloud2018-2(answer)TestCloud2018-2(answer)
TestCloud2018-2(answer)
 
TestECD2018-1(answer)
TestECD2018-1(answer)TestECD2018-1(answer)
TestECD2018-1(answer)
 
Test-SDIC2018-2(answer)
Test-SDIC2018-2(answer)Test-SDIC2018-2(answer)
Test-SDIC2018-2(answer)
 
TestCloud2018-1(answer)
TestCloud2018-1(answer)TestCloud2018-1(answer)
TestCloud2018-1(answer)
 
Cloud Service Model
Cloud Service ModelCloud Service Model
Cloud Service Model
 
Test-SDIC2018-1(Answer)
Test-SDIC2018-1(Answer)Test-SDIC2018-1(Answer)
Test-SDIC2018-1(Answer)
 
RF 증폭기 설계(Design of RF Amplifier)-rev1
RF 증폭기 설계(Design of RF Amplifier)-rev1RF 증폭기 설계(Design of RF Amplifier)-rev1
RF 증폭기 설계(Design of RF Amplifier)-rev1
 
Computing Paradigm - rev1
Computing Paradigm - rev1Computing Paradigm - rev1
Computing Paradigm - rev1
 

TestSDIC2016-1(answer)

  • 1. 2016 스마트디바이스지능통신 중간 고사(100) Smart Device M2M Date: 2016-04-26 1. IoT Network을 사용할 수 있는 현실적인 ICT Service를 제안하고 설명하시 오. 작성방법 – Service명, 동작원리, IoT Network 도입 필요성(30) [인체 동작 감지 IoT Network] - 동작원리: 의류의 적당한 위치에 다수 개의 3축 가속 Sensor와 Memory를 가진 소형IoT Node를 장착한다. 이 IoT Node는 인체 각 위치의 가감속 특 성을 계속 저장하고 주기적으로 이 정보를 ZigBee 방식으로 Smartphone 에 전송한다. IoT Node 동작에 필요한 전력은 사용자 동작으로 자동 획득 하며 추가적인 전력 공급은 없다. - 도입 필요성: 다수 개의 IoT Node 정보를 바탕으로 Smartphone App은 사 용자 동작을 정확히 감지한다. 동작 감지를 더 정확히 하려면 IoT Node 개수를 늘린다. 이런 가공된 정보를 활용해 자세 교정이나 Motion Capture 등에 활용할 수 있다. 2. 사물인터넷(IoT: Internet of Things) SW(Software)의 중요 요소로 Scalable, Modular, Connected, Reliable을 설정할 수 있습니다. 이 네 가지 요소가 IoT SW에 필요한 이유를 구체적으로 각각 설명하시오. (20) - Scalable: IoT SW는 별다른 수정없이 서로 다른 종류의 장치들에 쉽게 사용 될 수 있어야 한다. - Modular: IoT SW는 RAM 한계에 따라 기능이 Module 형태로 분리 또는 조합될 수 있다. - Connected: IoT SW를 통해 장치에 수집된 정보를 외부 기기와 무선 혹은 유선 방식으로 교환할 수 있다. - Reliable: IoT SW는 오동작이나 보안 문제가 발생하지 않도록 이중, 삼중의 방어책을 가져야 한다.
  • 2. 3. Bluetooth Profile이 무엇인지 설명하고, Bluetooth Communication에서 Profile이 사용되는 예를 간략히 한 가지만 제시하시오. (20) - Bluetooth Profile은 Bluetooth 장치가 다른 Bluetooth 장치와 통신할 때 구 동되는 방식이나 Service가 연결되는 특성을 정한 표준 규격이다. Profile이 표준으로 정해져 있기 때문에, 해당 Service를 사용하려는 App 개발자는 관 련된 Bluetooth Profile을 호출하면 된다. - 예를 들어 Wireless Headset을 Bluetooth로 연결하려면 Headset Profile을 사용하면 된다. 4. 다음은 Android Location Manager를 이용한 실내 위치 획득 Source Code 의 일부이다. 정상적으로 구동되도록 필요한 Code를 추가하라. 다만 Widget 관련 Code는 이미 있다고 가정하고 작성하지 말 것. (30) public class MainActivity extends AppCompatActivity { public LocationManager mLocationMan; (5) public MyLocationListener myLocationLx; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mLocationMan = (LocationManager) getSystemService(LOCATION_SERVICE); myLocationLx = new MyLocationListener(); (5) mLocationMan.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1000, 0, myLocationLx); (10) } public class MyLocationListener implements LocationListener { public double latitude, longitude; @Override public void onLocationChanged(Location location) { latitude = location.getLatitude(); (5) longitude = location.getLongitude(); (5) }
  • 3. }