Guest User

Untitled

a guest
Feb 13th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. mqtt_settings settings = {
  2. .host = "iot.eclipse.org",
  3. .port = 1883, // unencrypted
  4. .client_id = "some_client_id",
  5. .username = "",
  6. .password = "",
  7. .clean_session = 0,
  8. .keepalive = 120,
  9. .lwt_topic = "/lwt",
  10. .lwt_msg = "offline",
  11. .lwt_qos = 0,
  12. .lwt_retain = 0,
  13. .connected_cb = connected_cb,
  14. .disconnected_cb = disconnected_cb,
  15. .subscribe_cb = subscribe_cb,
  16. .publish_cb = publish_cb,
  17. .data_cb = data_cb
  18. };
Add Comment
Please, Sign In to add comment