I'm trying to plug a Wee serial WiFi module on my Arduino Uno, through an XBee shield .
I'm simply trying to make work the example from the library.
All I get is
setup begin
FW Version:
to station err
Join AP failure
setup end
The code i'm using :
#include <SoftwareSerial.h>
#include <doxygen.h>
#include <ESP8266.h>
SoftwareSerial mySerial(3, 2); /* RX:D3, TX:D2 */
ESP8266 wifi(mySerial);
#define SSID "yuflowoffice"
#define PASSWORD "cashless"
void setup(void) {
Serial.begin(9600);
mySerial.begin(115200);
Serial.print("setup begin\r\n");
Serial.print("FW Version: ");
Serial.println(wifi.getVersion().c_str());
if (wifi.setOprToStation()) {
Serial.print("to station ok\r\n");
} else {
Serial.print("to station err\r\n");
}
delay(1500);
if (wifi.joinAP(SSID, PASSWORD)) {
Serial.print("Join AP success\r\n");
Serial.print("IP: ");
Serial.println(wifi.getLocalIP().c_str());
} else {
Serial.print("Join AP failure\r\n");
}
Serial.print("setup end\r\n");
}
void loop(void) {
}
What can I do?

setup()is the same in each, and that is where the problems begin. It seems like no information is being picked up from the Serial port (Tx/Rx), aswifi.getVersion().c_str()results an empty string. Have you taken note of the issues/points listed on the main page, in particular increasing the size of the buffer? – Greenonline Jan 01 '16 at 15:49