Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ESPxx
#7
Pogledaj izvorni kod koji si pronašao:
Code:
  // Print the IP address
  Serial.print("Use this URL to connect: ");
  Serial.print("https://192.168.0.178/");
  Serial.print(WiFi.localIP());
  Serial.println("/");
Dakle, u serijskom terminalu će ti ESP poslati IP adresu koju je dobio od tvog wifi routera.
Potrebno je da u web browser uneseš tu adresu i tako pristupiš tvom uređaju.

Pre toga mu moraš definisati ssid i pass:

Code:
const char* ssid = "YOUR SSID"; // fill in here your router or wifi SSID
const char* password = "YOUR PASSWORD"; // fill in here your router or wifi password

Mnogi wifi routeri imaju mogućnost da određenoj mac adresi stalno dodeljuju jednu te istu IP adresu. Bilo bi dobro da proveriš da li tvoj to ima i da tu opciju podesiš.
Nakon svakog ponovnog povezivanja (recimo prilikom restarta) tvoj će uređaj dobiti predefinisanu IP adresu i ti ništa ne menjaš u browser-u.
Reply


Messages In This Thread
ESPxx - by cicos - 12-21-2021, 04:01 AM
RE: ESPxx - by ddanijel - 12-21-2021, 06:24 PM
RE: ESPxx - by cicos - 12-22-2021, 12:11 AM
RE: ESPxx - by ZASto - 12-22-2021, 08:09 AM
RE: ESPxx - by cicos - 12-22-2021, 11:29 AM
RE: ESPxx - by ddanijel - 12-22-2021, 07:04 PM
RE: ESPxx - by cicos - 12-22-2021, 11:14 PM
RE: ESPxx - by gorankg - 12-22-2021, 08:55 PM
RE: ESPxx - by ddanijel - 12-22-2021, 11:47 PM
RE: ESPxx - by gorankg - 12-23-2021, 05:43 PM
RE: ESPxx - by cicos - 12-23-2021, 09:28 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)