I was trying to send some data to a webpage using an Arduino Uno R3 connected to an ESP01. I simply uploaded the BareMinimum and started sending AT commands through the Serial Monitor. It worked fine for the first time, but now its IPMODE is stuck to 0 (Single IP mode). Everytime I try to set it back to 1 (Multiple IP mode), it throws an error "IPMODE must be 0". I tried resetting the ESP01 but that didn't work.
-
you mean AT+CIPMODE? set AT+CIPMUX=0 firstJuraj– Juraj ♦2023-02-07 10:42:02 +00:00Commented Feb 7, 2023 at 10:42
-
I'm doing that, for AT+CIPMUX=0, I get "OK" as response, which means that the IP mode is set to 0. But whenever I send AT+CIPMUX=1, it returns "ERROR IP mode must be 0". I don't understand why it MUST be 0, when I have already used this feature once.yahskA– yahskA2023-02-09 13:09:22 +00:00Commented Feb 9, 2023 at 13:09
-
CIPMODE 0 is normal mode and CIPMODE 1 is "passthrough mode". CIPMUX is : 0 single connection, 1: multiple connections. And multiple connections can only be set when transparent transmission is disabled (AT+CIPMODE=0).Juraj– Juraj ♦2023-02-09 13:45:20 +00:00Commented Feb 9, 2023 at 13:45
Add a comment
|