Skip to content

Instantly share code, notes, and snippets.

@jan-schreib
Last active May 26, 2020 15:39
Show Gist options
  • Save jan-schreib/e07a27319e272818cde0a8376cfa45e7 to your computer and use it in GitHub Desktop.
Save jan-schreib/e07a27319e272818cde0a8376cfa45e7 to your computer and use it in GitHub Desktop.
use mosq_client::*;
fn main() {
init();
let m = Mosquitto::new("test-client", false);
m.username_password("jan", "foobar123");
m.set_message_callback();
m.connect("10.11.12.1", 1883);
m.subscribe("jurassic_park/#");
m.start(-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment