Guest User

Untitled

a guest
Jul 21st, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. const char* ssid = "xxxxxx";
  2. const char* password = "xxxxxx";
  3.  
  4. /* Web Updater Settings */
  5. // Host Name of Device
  6. const char* host = "raspberrypi";
  7. // Path to access firmware update page (Not Neccessary to change)
  8. const char* update_path = "/firmware";
  9. // Username to access the web update page
  10. const char* update_username = "pi";
  11.  
  12. // Password to access the web update page
  13. const char* update_password = "raspberry";
  14.  
  15. /* MQTT Settings */
  16. // Topic which listens for commands
  17. char* subscribeTopic = "xxxxxxxxxxxxxxx";
  18.  
  19. //MQTT Server IP Address
  20. const char* server = "xxxxxxxxxxx";
  21.  
  22. //Unique device ID
  23. const char* mqttDeviceID = "??????????";
Add Comment
Please, Sign In to add comment