My Uno WiFi connects ok to 2 different WiFi's _ home and work. I need to connect Uno to a mobile hot spot TMobile Franklin T10. Gets stuck at "Attempting to connect to network (at bottom of following)
#include <SPI.h>
#include <WiFiNINA.h>
#include <ArduinoMqttClient.h>
#include "arduino_secrets.h"
char ssid[] = SECRET_SSID ;
char pass[] = SECRET_PASS ;
int day_Count = 0 ;
int keyIndex = 0;
const int ONBOARD_LED = 13;
int status = WL_IDLE_STATUS;
WiFiServer server(80);
WiFiClient wifiClient;
MqttClient mqttClient(wifiClient) ;
const char broker[] = "test.mosquitto.org";
int port = 1883;
const char topic[] = "HK_35_TWIN";
int inputPin = 7 ;
int proxStatus = 1 ;
while (status != WL_CONNECTED) {
Serial.print("Attempting to connect to Network _ ");
Serial.print(ssid);
status = WiFi.begin(ssid, pass);
delay(10000);
}