Cytron Esp8266 wifi shield not responding to Blynk

Bluetooth, XBee, RF......

Cytron Esp8266 wifi shield not responding to Blynk

Postby daniel » Sat Feb 29, 2020 3:20 pm

I purchased a unit of Cytron esp8266 wifi shield and follow this official user manual and it works great all the way to the simple wifi server part. but when I follow the video tutorial all I get is this from serial monitor:

[9]
___ __ __
/ _ )/ /_ _____ / /__
/ _ / / // / _ \/ '_/
/____/_/\_, /_//_/_/\_\
/___/ v0.6.1 on Arduino Uno
[598] Connecting to <my wifi>
[1608] ESP not responding


here is my code (I put the RX TX jumper to D2 and D3):

CODE: SELECT_ALL_CODE
#define BLYNK_PRINT Serial


#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>

char auth[] = "<my auth>";

char ssid[] = "<my ssid>";
char pass[] = "<my password>";

#include <SoftwareSerial.h>
SoftwareSerial EspSerial(2, 3);

#define ESP8266_BAUD 115200

ESP8266 wifi(&EspSerial);

void setup()
{

  Serial.begin(9600);

  delay(10);

  EspSerial.begin(ESP8266_BAUD);
  delay(10);

  Blynk.begin(auth, wifi, ssid, pass);
}

void loop()
{
  Blynk.run();
}


I already tried the AT commands and it is working fine. why it is not working when connecting to Blynk?
daniel
Greenhorn
 
Posts: 2
Joined: Sat Feb 29, 2020 2:50 pm

Re: Cytron Esp8266 wifi shield not responding to Blynk

Postby Idris » Tue Mar 03, 2020 8:29 am

Hi daniel, could I know what is the baudrate of the AT command that you been tested?
Cytron Technologies invest time and resources providing tutorial, training and support for STEM education and maker movement. We need your support by purchasing products from Cytron Technologies. Thanks.
http://www.cytron.com.my
User avatar
Idris
Moderator
 
Posts: 409
Joined: Thu Mar 22, 2012 5:28 pm
Location: Pulau Pinang


Return to Wireless Device

Who is online

Users browsing this forum: No registered users and 12 guests

cron