RealDashers,
Already set up an Arduino Nano ESP32 WIFI, I’m able to connect my phone, tablet and my PC to the ESP32 WIFI but for whatever reason RD never connects. What I’m missing…What I’m doing wrong?
I set up RD as follows:
Adapters(CAN/LIN)–>RealDash CAN–>WiFi/LAN–>
IP Address: 192.168.4.1 (As coded in the Arduino sketch)
Adapter Port:80 (As coded in the Arduino sketch)
CAN Description File: the XML sample
Here the Arduino Nano ESP32
#include <WiFi.h> // WiFi Library
const char* ssid = “300ZX-ESP”; // Network Name
WiFiServer server(80); // Set web server port number to 80, make sure RD matches
void setup() // Set UP Routine, occurs only once at powerup
{
Serial.begin(115200);
WiFi.mode(WIFI_AP); // Set WiFi to Access Point mode
WiFi.softAP(ssid, NULL); // Start the softAP without a password (second argument is NULL)
while (!Serial){} // Wait for the Serial Port to be available, then continue with the set up
Serial.print(“AP Created with SSID: " + String(ssid));
Serial.println(” NO PASSWORD REQUIRED");
Serial.print("IP Address: ");
Serial.println(WiFi.softAPIP()); // Typically 192.168.4.1
server.begin();
}
void loop()
{
// code to be added once WIFI comms with RD are established
}