1 (edited by rmurali69 2022-12-05 23:10:40)

Topic: esp8255 and remotexy

Hello there,
I am using Arduino uno elegoo board and hooked up esp8266 wifi module as described in the remotexy documents. I created a sample sketch and loaded into the  board .i downloaded the app and i could see the remotexy wifi access point. can register  wifi point on my phone but when i try to add the device through the remotexy app it says connection refused.

i look at the serial monitor these are the commands it shows and now "AT+CIPSERVER=1,6377" command. i see the reason being it could be old fimrware. i did update the firmware as described on the document.

AT
AT
AT+RST
ATE0
AT+CWMODE=2
AT+CWDHCP=0,1
AT+CWSAP="RemoteXY","12345678",10,4
AT+CIPMODE=0
AT+CIPMUX=1

here are the configurations after the firware update.

AT version:1.6.2.0(Apr 13 2018 11:10:59)
SDK version:2.2.1(6ab97e9)
compile time:Jun 7 2018 19:34:26
Bin version(Wroom 02):1.6.2


ets Jan 8 2013,rst cause:2, boot mode:(3,7)
load 0x40100000, len 2592, room 16
tail 0
chksum 0xf3
load 0x3ffe8000, len 764, room 8
tail 4
chksum 0x92
load 0x3ffe82fc, len 676, room 4
tail 0
chksum 0x22
csum 0x22
2nd boot version : 1.7(5d6f877)
SPI Speed : 40MHz
SPI Mode : QIO
SPI Flash Size & Map: 4Mbit(256KB+256KB)
jump to run user1 @ 1000


Any help really appreciated. i have been stuck with this issue over a week.

Thanks in advance

Murali



I looked around further the remotexy library file (remotexy.h) file does not have the command to start the server.

so I  added the AT command(AT+CIPSERVER=1,6377)  to start the server in the remotexy.h file and recompiled the sketch and uploaded through Arduino IED. the upload was successful but still server is not starting up.

Also i tried to enable the debug log on the header file

#define REMOTEXY__DEBUGLOG
#define REMOTEXY__DEBUGLOG_SERIAL Serial
#define REMOTEXY__DEBUGLOG_SPEED 115200

When I do this the serial monitor in Arduino IDE stopped  responding AT commands

Any help appreciated.

Murali