Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
MQTT Essentials - A Lightweight IoT Protocol

You're reading from  MQTT Essentials - A Lightweight IoT Protocol

Product type Book
Published in Apr 2017
Publisher Packt
ISBN-13 9781787287815
Pages 280 pages
Edition 1st Edition
Languages

Table of Contents (16) Chapters

MQTT Essentials - A Lightweight IoT Protocol
Credits
About the Author
Acknowledgment
About the Reviewer
www.PacktPub.com
Customer Feedback
Dedication
Preface
1. Lightweight Messaging with MQTT 3.1.1 and Mosquitto 2. Securing an MQTT Mosquitto Server 3. Controlling a Drone with Python 4. Interacting with Sensors in Java 5. Controlling Home Automation in JavaScript 6. Interacting with Actuators in Swift Exersise Answers

Receiving messages with Python


We will use the recently installed paho-mqtt module to subscribe to a specific topic and run code when we receive messages in the topic. We will create a DroneCommandProcessor class to represent a command processor associated to an instance of the previously coded Drone class, configure the MQTT client, the subscription to the client, and declare the code for the callbacks that are going to be executed when certain events are fired.

We will split the code for the DroneCommandProcessor class in many code snippets to make it easier to understand each code section. The following lines declare the DroneCommandProcessor class and its constructor, that is, the __init__ method. The code file for the sample is included in the mqtt_essentials_gaston_hillar_03 folder, in the mqtt_essentials_example03_02.py file:

class DroneCommandProcessor:
    commands_topic = ""
    processed_commands_topic = ""
    active_instance = None

    def __init__(self, name, drone):
     ...
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 €14.99/month. Cancel anytime}