IoT

Installation of MQTT Server on Raspberry PI

Installation Update OS sudo apt update sudo apt upgrade -y Install Mosquitto Software sudo apt install mosquitto mosquitto-clients -y Verify Service Status sudo systemctl status mosquitto This will return the status of mosquitto service. Testing Start up a Subscriber mosquitto_sub -h localhost -t “home/living” Keep this terminal and open another terminal for next step. Publish […]

Installation of MQTT Server on Raspberry PI Read More »

Introduction to MQTT: The Standard for IoT Messaging

MQTT is an OASIS standard messaging protocol for the Internet of Things (IoT). It is designed as an extremely lightweight publish/subscribe messaging transport that is ideal for connecting remote devices with a small code footprint and minimal network bandwidth. Lightweight and Efficient MQTT clients are very small, require minimal resources so can be used on

Introduction to MQTT: The Standard for IoT Messaging Read More »