blynkkk / blynk-sketch-generator

This repository is for generating Blynk sketches.
https://examples.blynk.cc
MIT License
25 stars 25 forks source link

Failed to disable Echo #39

Closed parthu3330 closed 7 years ago

parthu3330 commented 7 years ago

define BLYNK_PRINT Serial

include

include

// You should get Auth Token in the Blynk App. // Go to the Project Settings (nut icon). char auth[] = "xxxxxxxxxxxxxxxxxxxxx";

// Your WiFi credentials. // Set password to "" for open networks. char ssid[] = "YourNetworkName"; char pass[] = "YourPassword";

// Hardware Serial on Mega, Leonardo, Micro...

define EspSerial Serial1

// or Software Serial on Uno, Nano... //#include //SoftwareSerial EspSerial(2, 3); // RX, TX

// Your ESP8266 baud rate:

define ESP8266_BAUD 115200

ESP8266 wifi(&EspSerial);

void setup() { // Debug console Serial.begin(9600);

// Set ESP8266 baud rate EspSerial.begin(ESP8266_BAUD); delay(10);

Blynk.begin(auth, wifi, ssid, pass); // You can also specify server: //Blynk.begin(auth, wifi, ssid, pass, "blynk-cloud.com", 8442); //Blynk.begin(auth, wifi, ssid, pass, IPAddress(192,168,1,100), 8442); }

void loop() { Blynk.run(); // You can inject your own code or combine it with other sketches. // Check other examples on how to communicate with Blynk. Remember // to avoid delay() function! }

using this code m getting " Failed to disable Echo " on serial monitor

doom369 commented 7 years ago

@parthu3330 please use search on our community https://community.blynk.cc/. This was answered many times.