Last active
October 27, 2020 16:25
-
-
Save pedrocganem/b2c5cf35cd48273faa1228abd7362e1e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String broker = 'your_broker'; | |
int port = 1883; | |
String username = 'your_username'; | |
String password = 'your_password'; | |
String clientIdentifier = 'your_client_identifier'; | |
MqttServerClient client; | |
StreamSubscription subscription; //* I'll explain this later! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment