I've got ye olde eleven starters kit and am trying to make it work with the ESP01 Wifi sheild, and was hoping for some help... as I'm getting a sore head from bashing it on the key board for so long...
I've followed the tutorial: https://www.freetronics.com.au/pages/e ... 1AzXtIzY-U
Modified the code in it so that it would compile:
Code: Select all
/**
* SerialReflector
*/
#include <SoftwareSerial.h>
SoftwareSerial device(2,3); // Rx, Tx
void setup() {
// put your setup code here, to run once:
Serial.begin(115200); // Serial port for connection to host
device.begin(115200); // Serial port for connection to serial device
}
void loop() {
// put your main code here, to run repeatedly:
if(device.available()) {
Serial.write(device.read());
}
if(Serial.available()) {
device.write(Serial.read());
}
}
Sketch uses 3118 bytes (9%) of program storage space. Maximum is 32256 bytes.
Global variables use 297 bytes (14%) of dynamic memory, leaving 1751 bytes for local variables. Maximum is 2048 bytes.
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
etc...
Tried setting the COM port to 115200, same same...
the jumper pins are in the right spots, and match the rx tx
anyone have any ideas that might help?
thanks
Adrian
[*]