Search
 
SCRIPT & CODE EXAMPLE
 

C

wifi access point in esp8266

#include <ESP8266WiFi.h>

void setup()
{
  Serial.begin(115200);
  Serial.println();

  Serial.print("Setting soft-AP ... ");
  boolean result = WiFi.softAP("ESPsoftAP_01", "pass-to-soft-AP");
  if(result == true)
  {
    Serial.println("Ready");
  }
  else
  {
    Serial.println("Failed!");
  }
}

void loop()
{
  Serial.printf("Stations connected = %d
", WiFi.softAPgetStationNum());
  delay(3000);
}
Comment

PREVIOUS NEXT
Code Example
C :: c extern 
C :: fread 
C :: command line arguments c 
C :: C program to find power of any number 
C :: sqrt function in c 
C :: insert image material ui 
C :: c char to int 
C :: how to open form in vb.net 
C :: script in c 
C :: compile in c 
C :: node in c 
C :: Install valet-linux 
C :: use frama c online 
C :: C Pass Individual Array Elements 
C :: arduino internal pull up resistor 
C :: Here is a program in C that illustrates the use of fprintf() to write a text file: 
C :: left me on read 
C :: block quote in lua 
C :: solidity signature r s v 
C :: execute asm in c 
C :: Here is a program in C that illustrates the use of fscanf() to read a text file: 
C :: injection 
C :: diiferent between * and & in c 
C :: garbage collection and dangling reference 
C :: under 
C :: laarvel artisan to create controller model miigration 
C :: print octal in c 
C :: snprintf with malloc 
C :: c check if file was created 
C :: pre and post increment in c 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =