A basic MQTT client implementation.
in
Library and Tool Development
•
11 months ago
Started work on creating a basic mqtt client lib for Processing.
Tested, working, on:
Windows 7 + processing 2.0b5
https://github.com/agoransson/mqtt4processing
Note though that while this does adhere too the MQTT v3.1 spec. as far as messages are concerned; currently all messages you publish are QoS 0 (lowest level) and all subscriptions are QoS 2 (highest lvl).
But it does work in sending messages back and forth to clients through a broker (which isn't included).
More information on MQTT can be found at http://mqtt.org/
There's a public broker available at http://test.mosquitto.org/, and if you want to install your own broker I recommend Mosquitto (available for all major OS) http://mosquitto.org/
Tested, working, on:
Windows 7 + processing 2.0b5
https://github.com/agoransson/mqtt4processing
Note though that while this does adhere too the MQTT v3.1 spec. as far as messages are concerned; currently all messages you publish are QoS 0 (lowest level) and all subscriptions are QoS 2 (highest lvl).
But it does work in sending messages back and forth to clients through a broker (which isn't included).
More information on MQTT can be found at http://mqtt.org/
There's a public broker available at http://test.mosquitto.org/, and if you want to install your own broker I recommend Mosquitto (available for all major OS) http://mosquitto.org/