Learning AWS IoT
eBook - ePub

Learning AWS IoT

Agus Kurniawan

Buch teilen
  1. 278 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

Learning AWS IoT

Agus Kurniawan

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

Learn to use AWS IoT services to build your connected applications with the help of this comprehensive guide.

Key Features

  • Gets you started with AWS IoT and its functionalities
  • Learn different modules of AWS IoT with practical use cases.
  • Learn to secure your IoT communication

Book Description

The Internet of Things market increased a lot in the past few years and IoT development and its adoption have showed an upward trend. Analysis and predictions say that Enterprise IoT platforms are the future of IoT. AWS IoT is currently leading the market with its wide range of device support SDKs and versatile management console.

This book initially introduces you to the IoT platforms, and how it makes our IoT development easy. It then covers the complete AWS IoT Suite and how it can be used to develop secure communication between internet-connected things such as sensors, actuators, embedded devices, smart applications, and so on. The book also covers the various modules of AWS: AWS Greengrass, AWS device SDKs, AWS IoT Platform, AWS Button, AWS Management consoles, AWS-related CLI, and API references, all with practical use cases.

Near the end, the book supplies security-related best practices to make bi-directional communication more secure. When you've finished this book, you'll be up-and-running with the AWS IoT Suite, and building IoT projects.

What you will learn

  • Implement AWS IoT on IoT projects
  • Learn the technical capabilities of AWS IoT and IoT devices
  • Create IoT-based AWS IoT projects
  • Choose IoT devices and AWS IoT platforms to use based on the kind of project you need to build
  • Deploy AWS Greengrass and AWS Lambda
  • Develop program for AWS IoT Button
  • Visualize IoT AWS data
  • Build predictive analytics using AWS IoT and AWS Machine Learning

Who this book is for

This book is for anyone who wants to get started with the AWS IoT Suite and implement it with practical use cases. This book acts as an extensive guide, on completion of which you will be in a position to start building IoT projects using AWS IoT platform and using cloud services for your projects.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Learning AWS IoT als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Learning AWS IoT von Agus Kurniawan im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Informatik & Cloud Computing. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Jahr
2018
ISBN
9781788394666

Building Predictive Analytics for AWS IoT

Machine learning is one of the potential technologies that has multiple benefits when applied to our business cases. In this chapter, you will learn various Amazon AWS services related to machine learning. Some demos will be explored using machine learning services from Amazon.
The following is a list of topics covered in this chapter:
  • Introducing AWS Machine Learning services
  • Making your sensor speak
  • Integrating Amazon Echo into your IoT projects
  • Making image and video analysis
  • Making predictive analytics for IoT data

Introducing AWS Machine Learning services

Machine learning is one of the subjects in computer science that describes how to teach computers to obtain the ability to learn without hardcoding in a program. More specifically, machine learning enables computers to learn from experiences such as data, information, and training results from experts.
All AWS Machine Learning services can be found at https://aws.amazon.com/machine-learning/. At the time of writing this book, AWS Machine Learning services are available in any region. Make sure that you change AWS region in order to enable AWS Machine Learning services:
In this chapter, we will explore some AWS Machine Learning services that are related to IoT topics.

Making your sensor speak

Suppose that you have deployed sensors at various locations. Those sensors perform monitoring to detect a specific purpose. When a sensor finds a thing that its looking for, a sensor device will send an alert to a command center. Some people probably stand by on that location. When an alert comes, the system can make a sound through a speaker.
Message-to-sound or text-to-speech is a field of speech technology that leverages machine learning. A system can convert text or message to human speech. In general, the scenario can be described in the following figure:
From the preceding figure, IoT device can perform sensing and send data to AWS. IoT device can send an alert message to AWS to inform to the command center. AWS can convert text message to sound message. Once a command center receives a sound message, it performs to generate sound through a speaker.
Amazon AWS provides a service that applies speech technology, named Amazon Polly. You will learn how to work with Amazon Polly and then access it from a program in the next sections.

Introducing Amazon Polly

Amazon Polly is one of the AWS services that enables your application such as IoT program to talk using lifelike speech. You can find this service at https://aws.amazon.com/polly/. You can see it in the following screenshot:
If you have an active Amazon account, you can access Amazon Polly at http://console.aws.amazon.com/polly/ through a browser. Currently, Amazon Polly provides two features—Text-to-Speech and Lexicons. You can test these features on the browser.
In order to test the Text-to-Speech feature, click on the Plain text tab and fill a text or message. Then, select the Voice model that you prefer. Once done, click on the Listen to speech button to listen to speech from the text/message:
In the next section, we will develop a program to access AWS Polly from Node.js.

Developing a program for Amazon Polly

In the previous section, we have access to the text-to-speech feature from Amazon Polly. In this section, we try to access it from a program. This is useful when you apply Polly on IoT devices such as Raspberry Pi:
  1. To access Amazon Polly, we need to prepare the account with privilege access for AWS Polly. First, you can access the AWS IAM dashboard on http://console.aws.amazon.com/iam/. Then, create a new user if you don't have it yet.
  1. Now you can configure your user to give permission to access Amazon Polly. Open your IAM user that is shown in the following screenshot. Then, click on the Add permissions button. Find AmazonPollyFullAccess policy and add it into your IAM user:
  1. Next, you shoul...

Inhaltsverzeichnis