this tutorial is how to make an AP with small esp 8266 with ...this code is
how to make accespoint with esp8266
code :
#include <ESP8266WiFi.h>
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.print("Setting soft-AP ... ");
Serial.println(WiFi.softAP("ESPsoftAP_01", "pass-to-soft-AP") ? "Ready" : "Failed!");
}
void loop()
{
Serial.printf("Stations connected = %d\n", WiFi.softAPgetStationNum());
delay(3000);
}
source :
https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/soft-access-point-examples.html
https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/soft-access-point-class.html
https://www.teachmemicro.com/nodemcu-wifi-access-point/
https://www.teachmemicro.com/nodemcu-wifi-jammer/
https://www.teachmemicro.com/simple-nodemcu-web-server/
https://www.teachmemicro.com/using-microsd-breakout-board-arduino/
https://lastminuteengineers.com/creating-esp8266-web-server-arduino-ide/
https://www.instructables.com/id/ESP8266-NodeMCU-Access-Point-AP-for-Web-Server-Wit/
https://github.com/muhammaddicky/SIAKAD-PT
Tidak ada komentar:
Posting Komentar