You're the best, I have been struggling on this topic, , you're example is simple and just works, Thank You.
@FrancoisSchnell4 жыл бұрын
For mosquitto on windows 10 I had to remove the -v flag to make it work. Thanks for the straight to the point video, very useful :)
@JagathSelvans2 жыл бұрын
you saved me
@noweare12 жыл бұрын
Yes, very simple, python is such a great language.
@Aviel777Gergel2 жыл бұрын
first example that perfectly worked for me
@benjaminwe42 жыл бұрын
hey is there a way to publish a function's result instead of hardcoding it ?
@intanaidazulaiqabintiabdul52042 жыл бұрын
3:55-4:05 : what did you click? I didnt get it
@williambritcliffe22114 жыл бұрын
Excellent
@skylermccrary2 жыл бұрын
Excellent video!
@MYAB-d7q Жыл бұрын
thank you for this useful video
@michaelv.50032 жыл бұрын
Hi, do have you already done a pub sub connection with UDP in open62541? If yes, could you share this with us? Regards
@onlinefaxmachine28213 жыл бұрын
My Subscriber one doesn't get the message, it just prints the CTRL+C message and stays there, even when I send a message from my PLC, - (so not only does it not get the message from the publisher code I just copied from you)
@SA-oj3bo4 жыл бұрын
nice and simple, do you have a simple combination of both in one program because loop_forever is blocking.
@SA-oj3bo4 жыл бұрын
@@johannes4gnu_linux96 Yes loop_start followed with a while works fine. Great!
@muffintime772 жыл бұрын
Very than you! you top! thx
@ashwaryaarora6 Жыл бұрын
who is the broker here?
@johannes4gnu_linux96 Жыл бұрын
I use the mosquitto broker here (mosquitto -v). Everything (Client and Broker) are running on my localhost.
@ashwaryaarora6 Жыл бұрын
@@johannes4gnu_linux96 i want to do the same thing but I’m confused Like can my windows machine be both publisher n subscriber or do I use kali for one Here have u downloaded mosquito ?
@johannes4gnu_linux96 Жыл бұрын
@@ashwaryaarora6 Here you find the mosquitto broker for Linux. Paho-mqtt can be installed over pip. Then you have everything you need. Even on Windows having the broker and the clients on the same host shouldn't be a problem.-
@ashwaryaarora6 Жыл бұрын
@@johannes4gnu_linux96 yes I got it thanks to your video i will refer it in my report 😊
@David-m162 жыл бұрын
With threading: client = mqtt.Client() AttributeError: 'function' object has no attribute 'Client'
@wooperbestpokemon64133 жыл бұрын
I want to find you and kiss you ! After hours of research, you where the one giving me the right solution ^^ !
@keerthirajan168 Жыл бұрын
import paho.mqtt.client as paho import sys def onMessage(client, userdata, msg): print(msg.topic + ": " + msg.payload.decode()) client = paho.Client() client.on_message = onMessage if client.connect("your-host-name", 1883, 60) != 0: print("Could not connect to MQTT Broker!") sys.exit(-1) client.subscribe("Capstone") client.publish("Capstone", "Happy Birthday") try: print("Press CTRL+C to exit...") client.loop_forever() except: print("Disconnecting from broker...") client.disconnect() thanks it worked!