Which Library to use to connect ESP32 board to WiFi to upload data to Blynk

I am receiving LoRa signals to my T-Beam (Lora32) from another device. I want to then upload this received signals to the Blynk server so that it can be seen using my phone.
I can't find the WiFi library to allow the T-Beam to Wifi and I would like to know if I can use Wifi while using LoRa at the same time?

Thanks!

try a web search for esp32 blynk - you should get plenty of links
you should have no problem using LoRa+WiFi as they use different radio modules
get communication with Blynk operational first
when that works add your LoRa code

I see. After setting the board to esp32, I went to the Arduino Examples section and after going to 'WifiClientBasic' example, it already includes the headers

#include <WiFi.h>
#include <WiFiMulti.h>

And the code obviously compiles without any issues which leads me to believe that the libraries are probably built-in into these new esp32 based boards and it is just a matter of including the header within the program.

Thanks.

true - you will find there are plenty of WiFi examples building TCP and UDP client/servers etc
experiment to get the hang of them then look to build you application

esp32 are not new and they exists and are used because they have WiFi

Hi yes! I meant there is no need to download the library.
It is just a matter of including the header file now.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.