Skip to main content

Connection MQTT with thread

Project description

#mqtt_Thread

Connexion à un server mqtt via un thread
Envoi et réception des messages mqtt en Python
Sauvegarde des données reçues au format csv

INSTALLATION :
py -m pip install mqtt_thread
ou
py -m pip install mqtt_thread==x.x.x (mettre numéro de version)

exemple :
Trace de graphe mathPlotlib temps réel

---------------------
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from matplotlib import style
from matplotlib.ticker import FormatStrFormatter
import numpy as np
import time
import mqtt_thread as MQTT # bibliothèque pypi

Creation de la figure pour la charge

fig = plt.figure(num=1, figsize=(10, 6), dpi=120, facecolor='w', edgecolor='k')# configuration du graphe
ax = fig.add_subplot(1, 1, 1)
labelGraphe = "Titre du graphe"

def messageArrived(): # fonction appelée par le thread MQTT quand un message arrive
if m.verbose:
print("msg arrivé")
try:
print("temp : ",m.lastLinedata[1])
except:
print("pas de dernière ligne")

def acquisition(i, xs, ys):
# Dessine les graphes
ax.clear()
ax.plot(xs, ys, 'r-o', label=labelGraphe)
ax.yaxis.set_major_formatter(FormatStrFormatter('%.2f'))
# Format du graphe
plt.xticks(rotation=45, ha='right')# rotation et alignement du texte axe x
plt.subplots_adjust(bottom=0.20)
plt.title('Graphe temps réel avec Python')
plt.ylabel('Valeur 1')
plt.xlabel('temps (s)')
plt.legend()
plt.grid()# la grille sera affichée

m = MQTT.MQTT_Thread("mqtt.url.fr",443,"login","pwd") # crée le thread
m.selectTopic(["node_iot2020/#","FABLAB_21_22/contes/bureau/temperature/out/"]) # topics auxquels on s'abonne
m.selectKey([["ecl","temps"],["temp","pression"]]) # selection des clés des données voulues , les données seront dans m.data[0][], m.data[1][],...

le dernier élement de m.data[i] est le temps de réception du message en secondes (donné par python avec la fonction time)

m.messageArrived = messageArrived # personnalisation fonction qui sera appelée à chaque réception de message
m.nomFichier = "donnees" # nom du fichier csv sans extension qui enregistrera les données
m.record = True # enregistre les données dans un fichier csv
m.eraseFile = True # efface le fichier csv avant d'enregistrer les données
m.verbose = True # affiche les messages MQTT
m.start() # démarre le thread, (exécution indépendante du programme principal)
time.sleep(1)
#m.client.publish("node_iot2020/test/in",payload="{"pression":1024}",qos=0)#publication d'un message vers MQTT

Appelle la fonction animation périodiquement

#m.data[0][1] est une liste !!!
ani = animation.FuncAnimation(fig, acquisition, fargs=(m.data[1][2], m.data[1][0]), frames=20,interval=1000,repeat=True)# intervall temps en ms entre 2 animations
plt.show()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mqtt_thread-1.6.2.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

mqtt_thread-1.6.2-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file mqtt_thread-1.6.2.tar.gz.

File metadata

  • Download URL: mqtt_thread-1.6.2.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for mqtt_thread-1.6.2.tar.gz
Algorithm Hash digest
SHA256 2085acae5f9d0564180aaa6de81cac9d547494bbfa2fef0f8309261ae0af6e75
MD5 1cdc1ecc47bc48c1c51e8264036588d0
BLAKE2b-256 0c40a64672f9037d071589351881701f77a6157c17b7c9307601400b958b2b01

See more details on using hashes here.

File details

Details for the file mqtt_thread-1.6.2-py3-none-any.whl.

File metadata

  • Download URL: mqtt_thread-1.6.2-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for mqtt_thread-1.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 40fa32d2200da2e75e020ed88399a69ac4efebb65b1544d6f24f23d129964bc6
MD5 6d26b28bff0bd4b07c4a0a5ad3f5b537
BLAKE2b-256 2b875d492687fdbcee4fcae073cf069ab7c5d7ea14916731fbc19f02bc0ec5bc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page