Hello,
I’ve got a question for you.
I’m using esp32 with WiFi connection, Platformio and Blynk IoT Edgent with latest library.
I’m using Blynk Edgent so I have:
#include “BlynkEdgent.h”
…
BlynkEdgent.begin();
…
BlynkEdgent.run();
and my question is, how can I connect to blynk cloud by 80 or 8080 port not 443 cause it’s bloked for me???
I’ve read on forum that I just need to change #include <BlynkSimpleEsp32_SSL.h> to #include <BlynkSimpleEsp32.h> but I don’t have one in my code. After opening BlynkEdgent.h there is #include <BlynkSimpleEsp32_SSL.h> but even if I change it to #include <BlynkSimpleEsp32.h> it still connects by 443 port.