Post topics, source code that relate to the Arduino Platform

User avatar
By gonmaster
#44170 hi, i have esp8266-07 module with this firmware: ESP8266 AT Firmware v1.3.0.2 (ai-thinker, AT v0.40, SDK v1.3.0, baudrate 115200).

Connectec by arduino like http://www.areresearch.net/2015/12/espressif-esp-8266-minimal.html (basic configuration) but it dont recive/transmite data (blue led dont turn on).
I use this code :

Code: Select all#include <WiFiEsp.h>
#include <WiFiEspClient.h>
#include <WiFiEspServer.h>
SoftwareSerial wifi(7, 6); // RX, TX
WiFiEspServer server(400);
WiFiEspClient client;

void setup()
{
  Serial.begin(9600);
    wifi.begin(115200);
  WiFi.init(&wifi); 
  Serial.print("Attempting to start AP ");
  Serial.println(ssidAP);
  WiFi.beginAP(ssidAP, 10, passAP, 3);
  // WiFi.begin(ssid, pass);
  Serial.println("Access point started");
  IPAddress ip = WiFi.localIP();
  Serial.print("IP Address: ");
  Serial.println(ip);
  server.begin();

}

void loop()
{

      client = server.available();
      if (client.available()) {//When recive data...
           Serial.println("HIII");
     }
 
}



someone know what happen¿? ty
Last edited by gonmaster on Mon Mar 28, 2016 9:44 am, edited 2 times in total.
User avatar
By gonmaster
#44176
M12j wrote:did you wire the configuration pins??
CH-PD and rst
boot from flash or serial programming ??



i flash it well. Now i have ch-pd and vcc to 3,3v, gnd and GPI015 to GND and Tx to RX and RX to TX with softwareserial. I dont know if you ask me it¿?¿?