Presentation is loading. Please wait.

Presentation is loading. Please wait.

Prototyping Connected Devices For the Internet of Things Prototyping Connected Devices For the Internet of Things 2008135065 심기성 2008135120 최종민 1 /22.

Similar presentations


Presentation on theme: "Prototyping Connected Devices For the Internet of Things Prototyping Connected Devices For the Internet of Things 2008135065 심기성 2008135120 최종민 1 /22."— Presentation transcript:

1 Prototyping Connected Devices For the Internet of Things Prototyping Connected Devices For the Internet of Things 2008135065 심기성 2008135120 최종민 1 /22

2 Prototyping Connected Devices For the Internet of Things Index - Conclusion - Connected-Device prototyping tools - Microsoft.NET gadgeteer design choices - Cloud-base processing for connected devices - Selecting an IoT development platform - What is the IoT? - Building a Web-Connected device with Gadgeteer 2 /22

3 Prototyping Connected Devices For the Internet of Things What is the IoT? The Internet of Things (IoT) refers to uniquely identifiable objects and their virtual representations in an Internet-like structure. http://www.youtube.com/watch?v=nEVatZruJ7k 3 /22

4 Prototyping Connected Devices For the Internet of Things Connected-Device prototyping tools Arduino Gadgeteer MBED Connected Device prototyping tools Etc.. 4 /22

5 Prototyping Connected Devices For the Internet of Things Connected-Device prototyping tools Arduino Can be programmed with the C Language Minimalist IDE Supported via simple communications over a serial line interface Arduino Processor Add-on Circuit board that extend the platform’s basic capabilities Provide Ethernet, Wi-Fi etc. Shield Arduino Developers commonly use the REST technique, With REST, - Lightweight, easy to debug way to communicate between connected devices such as those built with Arduino. - Services are exposed and accessed using HTTP. - Create, share, and support additional libraries and examples online, further facilitating the development of new applications. 5 /22

6 Prototyping Connected Devices For the Internet of Things Connected-Device prototyping tools MBED The MBED microcontroller is a single-board microcontroller and associated tools for programming the device. MBED - IDE is accessible via a Web browser without the need to install any software. - Extensive documentation and libraries are available through the IDE. - Supports the sharing of user-generated code samples and libraries. - To support connected-device development, includes a comprehensive set of networking libraries and examples. - Support for debugging code running on the MBED has been limited to date, but it is possible to transition to a more traditional PC- based IDE. 6 /22

7 Prototyping Connected Devices For the Internet of Things Connected-Device prototyping tools Gadgeteer Gadgeteer is an Open Source rapid prototyping platform with an emphasis on creating small electronic or embedded hardware devices. Gadgeteer - Mainboard Containing several sockets : Developers can connect different modules such as sensors, actuators, displays and communication and storage elements. - Solder-less : Allows developers to quickly construct, reconfigure, and extend prototypes. - Tightly integrated with the Microsoft Visual Studio IDE : Dynamic syntax checking, Continually provides hints and prompts to ease to coding. The IDE also aids debugging via breakpoints, single step- ping, variable watches, and execution traces 7 /22

8 Prototyping Connected Devices For the Internet of Things Connected-Device prototyping tools Etc A credit-card-sized single-board computer developed in the UK Raspberry PiBeagleBone A low-power open-source hardware single-board computer produced by Texas 8 /22

9 Prototyping Connected Devices For the Internet of Things Microsoft.NET gadgeteer design choices Simplify Software Library Use C#, Visual Basic Event-Based Model.Net micro Framework 9 High-Level abstraction Managed Code Familiar Rest-ful /22

10 Prototyping Connected Devices For the Internet of Things 10 Microsoft.NET gadgeteer design choices Use C#, Visual Basic - Although using managed code is unusual for embedded device development where C-like languages are firmly established, in our experience it tends to reduce the time and expertise needed for prototyping. Event-Based Model - Further simplifies the creation of many applications and helps developers familiar with event-based programming on desktop and mobile platforms to transition to embedded device development. Software Library - A software library encapsulates each physical Gadgeteer module’s functionality through an intuitive high-level API. The high abstraction level often allows modules to be used in sophisticated ways with just a few lines of code, enabling users with relatively little experience to build compelling devices and applications. /22

11 Prototyping Connected Devices For the Internet of Things 11 Microsoft.NET gadgeteer design choices The.NET Micro Framework - The.NET Micro Framework (http://netmf.com), an open source platform that underpins Gadgeteer’s similarly open software stack, contains extensive provision for networking. The Gadgeteer networking API builds on this in a way that supports a compact, easy-to-understand design pattern for responding to REST-ful Web requests with text, images, or byte streams. /22

12 Prototyping Connected Devices For the Internet of Things Building a Web-Connected device with Gadgeteer Simple Webcam - Attached to a servomotor-controller arm, allowing remote panning as well as capture - This device also incorporates wireless zigbee and WiFi - Supports a connection to lighter-weight Gadgeteer devices ex) temperature, light-level sensors Effectively giving them a presence on the Internet via additional software running on the camera device that acts as a bridge. 12 /22

13 Prototyping Connected Devices For the Internet of Things Building a Web-Connected device with Gadgeteer - The process began with a graphical design tool. It specify the hardware components and how to connect them to a mainboard. Simple Webcam – Graphical design Tool Constructing the corresponding physical hardware took just a couple of minutes 13 /22

14 Prototyping Connected Devices For the Internet of Things Building a Web-Connected device with Gadgeteer Simple Webcam – High-level abstracted API - The developer only needs a single line of code to set up a webserver once a network connection has been established. 14 /22

15 Prototyping Connected Devices For the Internet of Things Cloud-base processing for connected devices Cloud computing is the use of computing resources (hardware and software) which are available in a remote location and accessible over a network. How to running the software within the embedded device ? - Be complemented by cloud-based Web-services leveraging XML, HTTP Web based protocol. - Embedded processors will routinely leverage sophisticated datasets in the cloud. 15 /22 Ex) cosm, Project Hawaii

16 Prototyping Connected Devices For the Internet of Things Cloud-base processing for connected devices cosm? 16 Cosm is a family of open distributed computing software and protocols developed in beginning in 1995 lead by Adam Beberg, and currently developed by Mithral Inc. /22 cosm(xively) https://xively.com/dev/libraries/ Provide APIs for variable platforms, Libraries, REST-ful Services

17 Prototyping Connected Devices For the Internet of Things Cloud-base processing for connected devices The Hawaii Web service based on Azure The Hawaii was configured to make the most recent photo from each device available to all the other telepresence devices. http://www.youtube.com/watch?v=hjRi5hWKi88 17 Windows Azure is a cloud computing platform and infrastructure, created by Microsoft, for building, deploying and managing applications and services through a global network of Microsoft-managed datacenters. Traditional digital camera, this device captures an image when the shutter button is pressed. In Hawaii, rather than simply displaying the image and storing a copy locally, the camera sends the image to the Hawaii Optical Character Recognition(OCR) service. Any text that is detected is returned and overlaid on the display. /22 Very simple Implementation Project Hawaii

18 Prototyping Connected Devices For the Internet of Things Selecting an IoT development platform Power consumption was not a focus during the initial development of the Gadgeteer platform, but currently exploring this topic. Flexibility over form factor was a central consideration when we were designing Gadgeteer. When we designed Gadgeteer, we chose a high- performance processor which supports managed code and real-time debugging. The price premium compared to tools like Arduino and MBED is modest. Performance Form factor Power consumption Cost A low hurdle Less-experienced users to create useful applications 18 /22

19 Prototyping Connected Devices For the Internet of Things 19 Selecting an IoT development platform - No matter which tools are used for prototyping. eventually it becomes necessary to build and deploy a greater number of devices, either for lager –scale deployments or ultimately for mass production. - IoBridge, Electric Imp Which specifically designed to facilitate the mass production of connected devices. The latter includes a programmable processor and Wi-Fi Radio in a small package and connected to application through a hosted web service. /22

20 Prototyping Connected Devices For the Internet of Things Personal Computers & Smartphones Very Simplest electronic devices Extends Internet Connectivity (The IoT is estimated by some to constitute 100 billion devices as soon as 2020.) In IoT Vision Help us manage daily activities, Provide timely information more conveniently, Enhance our leisure time Conclusion 20 /22

21 Prototyping Connected Devices For the Internet of Things Conclusion 21 As the number of network-connected devices continues to grow, it is clear that no single technology will prevail the IoT’s success is inherently tied to heterogeneous devices, protocols, services, and applications. Although some applications will always be outside the scope of a rapid- prototyping toolkit, we nonetheless anticipate that those working in this exciting field will be able to build on the experiences and examples reported here to explore relevant issues and prototype new applications quickly, and in doing so bring the IoT vision ever closer to reality. /22

22 Prototyping Connected Devices For the Internet of Things 22 Question? /22


Download ppt "Prototyping Connected Devices For the Internet of Things Prototyping Connected Devices For the Internet of Things 2008135065 심기성 2008135120 최종민 1 /22."

Similar presentations


Ads by Google