Current News

Moderator: Mmiscool

User avatar
By Mmiscool
#48593 I had been noticing problems with saving programs to the module in ap mode when it was configured for both ap and station mode at the same time.

The change was made for it to exclusively connect to a network or broadcast out an ap.

To support people who wish to run both modes at the same I am putting out a new build. In the new build there is a new command.

Code: Select allwifiapsta
ap "MyESP"
wait


Upon execution of this command it will turn on ap and station modes so the ap or connect commands can be used.

I am uploading this new build right now as I type.
User avatar
By forlotto
#48596 interesting way to tackle the problem and enable it for others to sort out the issues or work with them a simple command.

This should make all parties involved happy limitations are none.

You should post a warning though to prevent some complaints from people who use the dual mode that it can cause intermittent issues and resets so use at your own risk when you add to documentation.
User avatar
By jlbachiochi
#48717 Am I missing something (no pun intended)?

jlbachiochi wrote:trying to use serial2branch, TX2-pin4 and RX2-pin5 are tied together.

Code: Select allserial2begin 115200, 4, 5
sendstring="Something"
[loop]
cls
print "Sending "
wprint sendstring
print "Receiving "
wprint receivestring

receivestring="Nothing"
serial2println sendstring
serial2branch [serial2in]
timer 2000,[loop]
wait

[serial2in]
'serial2input receivestring
receivestring="Something"
return