Hello, i got the ESPDuino Development Board ESP-13
What to choose ? Esp8266_standalone or esp8266 Shield?
Thanks for help
Hello, i got the ESPDuino Development Board ESP-13
What to choose ? Esp8266_standalone or esp8266 Shield?
Thanks for help
Set for Arduino UNO with WiFi in the App, program as if Arduino UNO with an ESP as shield.
So do i need to send the AT Commands to the board before?
when i try to compile the example sketch you gave me i get.
C:\Users\MYUSER\AppData\Local\Temp\arduino_modified_sketch_947273\ESP8266_Shield.ino:63:15: note: in expansion of macro 'EspSerial'
ESP8266 wifi(&EspSerial);
^
C:\Users\MYUSER\AppData\Local\Temp\arduino_modified_sketch_947273\ESP8266_Shield.ino: In function 'void setup()':
ESP8266_Shield:54: error: 'Serial1' was not declared in this scope
#define EspSerial Serial1
^
C:\Users\MYUSER\AppData\Local\Temp\arduino_modified_sketch_947273\ESP8266_Shield.ino:71:3: note: in expansion of macro 'EspSerial'
EspSerial.begin(ESP8266_BAUD);
^
Using library BlynkESP8266_Lib in folder: C:\Users\MYUSER\Documents\Arduino\libraries\BlynkESP8266_Lib (legacy)
Using library Blynk at version 0.5.0 in folder: C:\Users\MYUSER\Documents\Arduino\libraries\Blynk
exit status 1
'Serial1' was not declared in this scope
// Hardware Serial on Mega, Leonardo, Micro...
#define EspSerial Serial1
// or Software Serial on Uno, Nano...
//#include <SoftwareSerial.h>
//SoftwareSerial EspSerial(2, 3); // RX, TX
// Your ESP8266 baud rate:
#define ESP8266_BAUD 115200
You do need to read through the sketch and make changes according to hardware and how your ESP is wired to the Arduino… Serial1
is a specific port for specific hardware (Hint - not the UNO).
I don’t know enough about your board, but the ESP is probably connected via some particular IO pin and probably uses SoftwareSerial
… or perhaps it uses some internal switching and shares the primary USP/Serial port, in which you might use Serial
.
Read up on whatever documentation you have for that board and it’s interface between the UNO and the ESP and use the same connection references in the Blynk sketch.
Based on this Bangood reference… perhaps try treating it as a basic ESP8266 and see how that works.
Set your App for ESP8266 (generic)