From fd00721e22be8463a396b87b06627dee08a5f53d Mon Sep 17 00:00:00 2001 From: Stuart Feichtinger Date: Sun, 31 Jan 2016 19:27:23 -0600 Subject: [PATCH] Tweaks --- examples/mqtt_arbitrary_buffer/README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/examples/mqtt_arbitrary_buffer/README.md b/examples/mqtt_arbitrary_buffer/README.md index f249ffa..f6197a6 100644 --- a/examples/mqtt_arbitrary_buffer/README.md +++ b/examples/mqtt_arbitrary_buffer/README.md @@ -46,14 +46,20 @@ password_file pwfile Now `ctrl-x` to save and exit. -You're almost done! We just have to create and populate the password file we just configured. The default user names are: -* Arduino publisher: +You're almost done! We just have to create and populate the password file we just configured. The default user info is: +* Arduino Subscriber: * Username: TestUser * Password: TestUser +* Python Subscriber: + * Username: TestPy + * Password: TestPy + ```bash touch pwfile #create the password file +mosquitto_passwd pwfile TestUser #Enter and confirm password when prompted +mosquitto_passwd pwfile TestPy #Enter and confirm password when prompted ```