Using the new Arduino IDE for ESP8266 and found bugs, report them here

Moderator: igrr

User avatar
By hsk
#21305 i have program run on arduino uno r3 with package_esp8266com_index

Image

Image


ping :

Image

then i reset arduino

Image

help me please ! cause and fix it ?

I have receiveed not too 10 packets.
Last edited by hsk on Tue Jun 23, 2015 8:56 pm, edited 5 times in total.
User avatar
By hsk
#21448 i have program run on arduino uno r3 with

#include <ESP8266WiFi.h>

const char* ssid = "TP-LINK_7789EA1";
const char* password = "qazwsxedc";
void setup() {
Serial.begin(115200);
delay(10);

WiFi.begin(ssid, password);

while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("WiFi connected");
Serial.println(WiFi.localIP());
}

void loop() {
}

connect wifi(serial monitor) :

WiFi connected
192.168.1.102

ping :



ping 192.168.1.102 -t

Pinging 192.168.1.102 with 32 bytes of data:
Reply from 192.168.1.102: bytes=32 time=64ms TTL=255
Reply from 192.168.1.102: bytes=32 time=16ms TTL=255
Reply from 192.168.1.102: bytes=32 time=15ms TTL=255
Reply from 192.168.1.102: bytes=32 time=21ms TTL=255
Reply from 192.168.1.102: bytes=32 time=20ms TTL=255
Reply from 192.168.1.102: bytes=32 time=25ms TTL=255
Reply from 192.168.1.102: bytes=32 time=14ms TTL=255
Reply from 192.168.1.102: bytes=32 time=14ms TTL=255
Reply from 192.168.1.102: bytes=32 time=20ms TTL=255
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.

reset arduino

Request timed out.
Request timed out.
Request timed out.
Request timed out.
Reply from 192.168.1.102: bytes=32 time=57ms TTL=255
Reply from 192.168.1.102: bytes=32 time=17ms TTL=255
Reply from 192.168.1.102: bytes=32 time=20ms TTL=255
Reply from 192.168.1.102: bytes=32 time=15ms TTL=255
Reply from 192.168.1.102: bytes=32 time=13ms TTL=255
Reply from 192.168.1.102: bytes=32 time=17ms TTL=255
Reply from 192.168.1.102: bytes=32 time=15ms TTL=255
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.

not ping continuity, please help me !

I have receiveed not too 10 packets.