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?
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.
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