Search found 6 matches
- Sun Mar 21, 2021 4:12 pm
- Forum: ESP8266 SDK
- Topic: PainlessMesh ESP8266 mesh library for Arduino IDE
- Replies: 12
- Views: 24743
Re: PainlessMesh ESP8266 mesh library for Arduino IDE
Hi , can i have one of the node connected to the Mesh and in same time maintain a normal TCP/IP connection to send and receive HTTP requests like a mobile app to control the MESH nodes? It has method to start a node with only AP or STA interfaces connected to the mesh. In normal nodes, both interfa...
- Wed Mar 17, 2021 2:14 pm
- Forum: General Q&A
- Topic: Connect multiple ESP8266 with mobile
- Replies: 2
- Views: 2993
Re: Connect multiple ESP8266 with mobile
Assuming you plan, I suggest you look at the ESP8266 examples include with the IDE. The following are links to github but the same code is available in the FMWhatsApp IDE. Make an ESP8266 an access point with web server. https://github.com/esp8266/Arduino/blob ... Portal.ino Web client for ESP8266. ...
- Mon Mar 08, 2021 7:17 pm
- Forum: ESP8266 SDK
- Topic: Loosing TCP connection on some android devices
- Replies: 1
- Views: 2667
Re: Loosing TCP connection on some android devices
The conventional approach to this sort of issues is to implement an application-level protocol heartbeat. Say if there's no other gbwhatsapp application data to be sent over the connection send a heartbeat message after N seconds of inactivity. This means the other side can assume the connection is ...
- Thu Jan 14, 2021 3:50 pm
- Forum: Chit Chat
- Topic: Compiling rtos sdk idf project with CMake
- Replies: 19
- Views: 25393
Re: Compiling rtos sdk idf project with CMake
Many thanks would you have a platformio project including libraries from where can i start that if I load it with visual code on my esp something runs? Too kind WhatsApp Plus
- Sun Jan 10, 2021 6:44 pm
- Forum: ESP8266 APK
- Topic: smartconfig
- Replies: 1
- Views: 4639
Re: smartconfig
Hi there I was using "IoT smartconfig" app and it worked fine when i typed my network nameTo explain further to the OP: headless IOT devices have an inherent problem: how do you configure the ssid/password for a new network? The answer is to support a "base station" mode, in whic...
- Wed Dec 09, 2020 4:19 pm
- Forum: Sample Codes
- Topic: SPIFFS: From image creation to read & write through flashing
- Replies: 9
- Views: 16801
Re: SPIFFS: From image creation to read & write through flashing
SPIFFS let's you access the flash memory as if it was a normal file system like the one on your computer (but much simpler of course): you can read and write files, create folders ... https://gbapps.net/gbwhatsapp-apk/ The easiest way to learn how to use SPIFFS is to look at some examples. But a fil...