نوشته اصلی توسط
esmaeil57
با سلام و وقت بخیر
در برنامه ای که برای ماژول esp8266 توسط نرم افزار آردوینو نوشتیم میخوام یه ssid و همچنین رمز اختصاص بدیم که توسط یه ماژول دیگه به این ماژول کانکت بشیم، میشه محبت کنید راهنمایی کنید چطوری؟
راستش اول داخل سایت مرجع آردوینو سرچ کردم ولی چیزی دستگیرم نشد! فقط در حال حاضر میتونم توسط برنامه خودم به ماژول دیگری که اکسس پوینت هست کانکت شم ولی در اینجا میخوام برعکس باشه.
ممنونم
کد:
#include <ESP8266WiFi.h> // Include the Wi-Fi library
const char *ssid = "ESP8266 Access Point"; // The name of the Wi-Fi network that will be created
const char *password = "thereisnospoon"; // The password required to connect to it, leave blank for an open network
void setup() {
Serial.begin(115200);
delay(10);
Serial.println('\n');
WiFi.softAP(ssid, password); // Start the access point
Serial.print("Access Point \"");
Serial.print(ssid);
Serial.println("\" started");
Serial.print("IP address:\t");
Serial.println(WiFi.softAPIP()); // Send the IP address of the ESP8266 to the computer
}
void loop() { }
ssid: اسم اکسس پوینت
password: رمزی که میخوای روش بزاری