md-notes/mosquitto.md

11 lines
309 B
Markdown
Raw Permalink Normal View History

2022-07-25 13:05:35 +02:00
# Mosquitto
Very nice IOT messaging protocol.
### How to publish and subscribe to mqtt messages:
#### Publish
`mosquitto_pub -h <host-ip> -p <host-port> -u <username> -P <password> -t <topic> -m '<message>'`
#### Subscribe
`mosquitto_sub -h <host-ip> -p <host-port> -u <username> -P <password> -t <topic>`