Search
 
SCRIPT & CODE EXAMPLE
 

CPP

Arduino Access Point ESP8266

#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('
');

  WiFi.softAP(ssid, password);             // Start the access point
  Serial.print("Access Point "");
  Serial.print(ssid);
  Serial.println("" started");

  Serial.print("IP address:	");
  Serial.println(WiFi.softAPIP());         // Send the IP address of the ESP8266 to the computer
}

void loop() { }
Comment

PREVIOUS NEXT
Code Example
Cpp :: sin trigonometric function 
Cpp :: 12 to december in c++ code 
Cpp :: temporary variable ex c++ 
Cpp :: C++ Battery Low 
Cpp :: calculate number of edges of graph in data structure c++ 
Cpp :: ++i v.s i++ 
Cpp :: how to store array of string with spaces in c++ stl 
Cpp :: frac{2}{5}MR^2 typed in c++ 
Cpp :: c++ string not printing 
Cpp :: 2dvector c++ 
Cpp :: Marin and Anti-coprime Permutation codeforces solution in c++ 
Cpp :: c++ arreglo/array 
Cpp :: nlohmann json, writing to json file 
Cpp :: how to call subclass override method in c++ 
Cpp :: c++ convert const char* to LPCWSTR 
Cpp :: search in vector of pairs c++ 
Cpp :: constants in cpp 
Cpp :: inpout in Array c++ 
Cpp :: c vs c++ vs c# 
Cpp :: computer vision libraries c++ 
Cpp :: is the c++ 20 char te same as the old one 
C :: unity change transparency script 
C :: docker container give usb access 
C :: variably modified ‘_memory’ at file scope 
C :: Reduce fractions in C 
C :: c static 
C :: array loop in c 
C :: c int to string 
C :: get last char string c 
C :: vbnet create and write on file 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =