Blynk 2.0 Edgent esp32 not see wifi setup page.not connect

ardiono 1.8.18 blynk 1.0.1
From the BlynkEdgent example .it doesn’t work with esp32 but no problem with esp8266.

  • the code is correct
  • Setting the pin in setting.h is correct.
    -wifi name device appear but can’t seting
    -I have tried on wroom32 dev board
    -blynk 1.0.1 version too low?
    -192.168.4.1 not found page.i can’t add wifi password and token(on web desktop and mobile).
    I came across a similar question but didn’t have an

What does your serial monitor show?

Pete.

18:38:04.559 -> [240] Using default config.
18:38:04.559 -> 
18:38:04.559 -> >[241] 
18:38:04.559 ->     ___  __          __
18:38:04.559 ->    / _ )/ /_ _____  / /__
18:38:04.559 ->   / _  / / // / _ \/  '_/
18:38:04.559 ->  /____/_/\_, /_//_/_/\_\
18:38:04.559 ->         /___/ v1.0.1 on ESP32
18:38:04.559 -> 
18:38:04.559 -> [245] --------------------------
18:38:04.559 -> [248] Product:  FARMESP32
18:38:04.559 -> [250] Firmware: 0.1.0 (build May 20 2023 18:36:52)
18:38:04.559 -> [255] Device:   ESP32 @ 240MHz
18:38:04.559 -> [257] MAC:      08:3A:F2:97:D3:64
18:38:04.559 -> [260] Flash:    4096K
18:38:04.559 -> [262] ESP sdk:  v3.3.5-1-g85c43024c
18:38:04.559 -> [266] Chip rev: 1
18:38:04.559 -> [267] Free mem: 273032
18:38:04.559 -> [269] --------------------------
18:38:04.559 -> [272] INIT => WAIT_CONFIG
18:38:07.180 -> [2886] AP SSID: Blynk FARMESP32-DC986
18:38:07.180 -> [2886] AP IP:   192.168.4.1
18:38:07.180 -> [2887] AP URL:  blynk.setup

I've tried several ways to set up the board and pin

.

code is.
#define BLYNK_TEMPLATE_ID "xxxxxxxxxxxxx"
#define BLYNK_DEVICE_NAME "xxxxxxxxxxx"
//#define BLYNK_AUTH_TOKEN "xxxxxxxxxxxxxx"

#define BLYNK_FIRMWARE_VERSION        "0.1.0"

#define BLYNK_PRINT Serial
//#define BLYNK_DEBUG

#define APP_DEBUG

// Uncomment your board, or configure a custom board in Settings.h
//#define USE_WROVER_BOARD
#define USE_TTGO_T7

#include "BlynkEdgent.h"

void setup()
{
  Serial.begin(115200);
  delay(100);

  BlynkEdgent.begin();
}

void loop() {
  BlynkEdgent.run();
}```

@Kag_Elecmaker Please edit your posts, using the pencil icon at the bottom of each one, and add triple backticks at the beginning and end of your serial output and your code so that itgey displays correctly.
Triple backticks look like this:
```

Copy and paste these if you can’t find the correct symbol on your keyboard.

Pete.

How do I copy and paste?

Untitled3

ok.This is device , when I enter 192.168.4.1 it will “not found”

Hmm, if you don’t know how to copy the triple backticks from my post and paste them at the beginning and end of your code and serial output then maybe programming ESP32s isn’t for you.

I have no idea what the significance of the information message you posted in your last post, so while you’re doing your editing you should probably add some narrative to that post too.

Pete.

ok thank you.This is device , when I enter 192.168.4.1 it will not found
https://community.blynk.cc/t/blynk-2-0-edgent-esp32-not-see-wifi-setup-page-not-connect/66360/9?u=kag_elecmaker similar old post

You shouldn’t be provisioning devices via the captive portal at 192.168.4.1 you should be doing it via the “+ Add device”. What do you see in the app when you do this?

What version of the ESP32 core do you have installed via Boards Manager in the IDE?

Pete.

I think. Probably some kind of security ssl. However, I have followed your instructions. is to leave esp32 programming, thanks your valuable time.
I must update to the latest version first, thanks.