- Sun Jan 25, 2015 12:21 am
#8133
i have a usb to serial adapter on the way, but in my haste, i didn't realize it would be coming from china. therefore, i've ordered another, but it will still take a week, and i'm so close, i'd like to get started. i've already made breadboard compatible breakouts for all four of my esp-03's and found the default baud rate, and recieved the vendor name and "ready" from the esp, but it just echos my AT commands to me, so i was wondering if it was possible to upgrade the firmware through the communication i've already gotten functional via the arduino. This is the sketch i use to communicate with this, as well as my bluetooth modules. As it turns out, the default baud rate for my module is 9600
Edit: my module came loaded with cloud update firmware and I only had to switch my serial terminal top NL/CR
Code: Select allvoid setup()
{
Serial1.begin(9600);
Serial.begin(9600);
delay(5000);
Serial.println("test");
}
void loop()
{
if (Serial1.available())
Serial.write(Serial1.read());
if (Serial.available())
Serial1.write(Serial.read());
}
thanks, and i look forward to the advice i'm sure i'll recieve.