Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hands-On Internet of Things with MQTT

You're reading from  Hands-On Internet of Things with MQTT

Product type Book
Published in Oct 2019
Publisher Packt
ISBN-13 9781789341782
Pages 350 pages
Edition 1st Edition
Languages
Author (1):
Tim Pulver Tim Pulver
Profile icon Tim Pulver
Toc

Table of Contents (16) Chapters close

Title Page
Copyright and Credits About Packt Contributors Preface 1. The Internet of Things in a Nutshell 2. Basic Architecture of an IoT Prototype 3. Getting Started with MQTT 4. Setting Up a Lab Environment 5. Building Your Own Automatic Pet Food Dispenser 6. Building a Smart E-Ink To-Do List 7. Building a Smart Productivity Cube, Part 1 8. Building a Smart Productivity Cube, Part 2 9. Presenting Your Own Prototype 1. Assessments 2. Other Books You May Enjoy

Controlling the servo motor via the Serial Monitor

In the previous section, we verified the following:

  • Whether the Arduino can connect to the internet
  • Whether the Arduino can send and receive MQTT messages via shiftr.io
  • Whether the motor is working

Now, let's create an interface to control the servo from the Serial Monitor. Create a new sketch and save it as ch5_01_servo_serial.

Delete the boilerplate code that is automatically added to new sketches (the empty setup and loop functions) and replace the contents of your editor with the following code:

#include <Servo.h>

Servo myservo;

void setup() {
Serial.begin(9600);
myservo.attach(9);
}

void loop() {
while (Serial.available() > 0) {
int inputValue = Serial.parseInt();
if (inputValue == 1) {
myservo.write(180);
} else {
myservo.write(0);
}
}
}

Let's go through the code to make sure...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}