Advertisement
Guest User

Untitled

a guest
May 2nd, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // --- WIFI ---
  2. #include <WiFi.h>
  3. const char* ssid = "";
  4. const char* password = "";
  5. WiFiClient esp32Client;
  6.  
  7. // --- MQTT ---
  8. #include <PubSubClient.h>
  9. PubSubClient client(esp32Client);
  10. const char* mqtt_Broker = "";
  11. const char* topico = "";
  12. const char* mqtt_ClientID = "";
  13. const char* mqtt_user = "";
  14. const char* mqtt_pass = "";
  15. const int mqtt_port = 1883;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement