Raspberry Pi Distance Sensor to MQTT: Simplifying Distance Measurements

Looking to incorporate a distance sensor into your Raspberry Pi project? We’ve got you covered! In this tutorial, we’ll explore a Python code snippet that allows you to effortlessly measure distances and publish the results to an MQTT broker. Let’s dive into the code and see how it works.
Code Explanation: The code begins by importing the necessary libraries and defining the on_connect function for MQTT connection handling. The distancesensortomqtt function takes several parameters, including trigger and echo pins, MQTT topic, broker details, and authentication credentials.

Distance Measurement: Using the GPIO library, the code configures the trigger and echo pins of the distance sensor. It then initiates a pulse and measures the duration between the signal being sent and received. The distance is calculated based on this duration.

MQTT Integration: After cleaning up the GPIO, the code establishes a connection with the MQTT broker using the provided credentials. It publishes the measured distance to the specified topic using the MQTT client.

Conclusion: By combining a distance sensor, Raspberry Pi, and MQTT, you can easily gather distance measurements and integrate them into your IoT projects. Feel free to modify the code to suit your specific requirements and expand its functionality. Enjoy exploring the endless possibilities with Raspberry Pi and MQTT!
Code: https://github.com/AzureAzim/msft-pub/blob/master/SRC04-MQTT.py
HC-SR04 Sensor: https://www.sparkfun.com/products/15569

#!/usr/bin/python
import RPi.GPIO as GPIO
import time
import paho.mqtt.client as mqttClient

def on_connect(client, userdata, flags, rc):
    if rc == 0:
        print("Connected to broker")
        global Connected                #Use global variable
        Connected = True                #Signal connection
    else:
        print("Connection failed")
        Connected = False   #global variable for the state of the connection


def distancesensortomqtt(TRIGGERIO,ECHOIO,TOPIC,BROKER,USERNAME,PASSWORD):
    GPIO.setmode(GPIO.BOARD)
    PIN_TRIGGER = TRIGGERIO
    PIN_ECHO = ECHOIO
    GPIO.setup(PIN_TRIGGER, GPIO.OUT)
    GPIO.setup(PIN_ECHO, GPIO.IN)
    GPIO.output(PIN_TRIGGER, GPIO.LOW)
    pulse_start_time = 0
    pulse_end_time  =  0
    print("Waiting for sensor to settle")
    time.sleep(2)
    print("Calculating distance")
    GPIO.output(PIN_TRIGGER, GPIO.HIGH)
    time.sleep(0.00001)
    GPIO.output(PIN_TRIGGER, GPIO.LOW)
    while GPIO.input(PIN_ECHO)==0:
        pulse_start_time = time.time()
    while GPIO.input(PIN_ECHO)==1:
        pulse_end_time = time.time()
    pulse_duration = pulse_end_time - pulse_start_time
    distance = round(pulse_duration * 17150, 2)
    print("Distance:",distance,"cm")
    GPIO.cleanup()
    broker_address= BROKER
    port = 1883
    user = USERNAME
    password = PASSWORD
    client = mqttClient.Client("Python")
    client.username_pw_set(user, password=password)
    client.on_connect= on_connect
    client.connect(broker_address, port=port)
    client.loop_start()
    client.publish(TOPIC,distance,retain=False)


distancesensortomqtt(7,11,"rpi/distance/sensor1","smartwala.azim.network",'username','password')
distancesensortomqtt(38,40,"rpi/distance/sensor2","smartwala.azim.network",'username','password')