Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //#define CAYENNE_DEBUG // Comente para nao mostrar menssagen de debugs
- #define CAYENNE_PRINT Serial // Comente para impedir impressoes no serial monitor e salvar espaço
- #include <ESP8266WiFi.h> // Bibioteca em http:.................
- #include "CayenneDefines.h" // Bibioteca em http:.................
- #include "BlynkSimpleEsp8266.h" // Bibioteca em http:.................
- #include "CayenneWiFiClient.h" // Bibioteca em http:.................
- char token[] = "ttttttt"; // Cayenne auth token. Valor encontrado no site ao criar o projeto novo ou no settings
- char ssid[] = "sssssss"; // Digite seu SSID e sua PW
- char password[] = "ppppppp";
- //-----------------------------------
- void setup()
- {
- Serial.begin(9600); // Inicia a serial
- Cayenne.begin(token, ssid, password); // Estabelece comunicacao com o site Cayenne
- }
- //-----------------------------------
- void loop()
- {
- Cayenne.run(); // Roda o projeto no site
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement