Guest User

Untitled

a guest
Jul 24th, 2017
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. /* WIFI Settings */
  2. // Name of wifi network
  3. const char* ssid = "WiFi";
  4.  
  5. // Password to wifi network
  6. const char* password = "password";
  7.  
  8. /* Web Updater Settings */
  9. // Host Name of Device
  10. const char* host = "MK-SprinklerSystem1";
  11.  
  12. // Path to access firmware update page (Not Neccessary to change)
  13. const char* update_path = "/firmware";
  14.  
  15. // Username to access the web update page
  16. const char* update_username = "admin";
  17.  
  18. // Password to access the web update page
  19. const char* update_password = "password";
  20.  
  21. /* MQTT Settings */
  22. // Topic which listens for commands
  23. char* subscribeTopic = "MK-SmartHouse/utilities/MK-SprinklerSystem1";
  24.  
  25. //MQTT Server IP Address
  26. const char* server = "192.168.0.4";
  27.  
  28. //Unique device ID
  29. const char* mqttDeviceID = "MK-SmartHouseDevice1";
Add Comment
Please, Sign In to add comment