This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# The script configures simultaneous AP and Managed Mode Wifi on Raspberry Pi Zero W (should also work on Raspberry Pi 3) | |
# Usage: curl https://gist.githubusercontent.com/lukicdarkoo/6b92d182d37d0a10400060d8344f86e4/raw | sh -s WifiSSID WifiPass APSSID APPass | |
# Licence: GPLv3 | |
# Author: Darko Lukic <[email protected]> | |
# Special thanks to: https://albeec13.github.io/2017/09/26/raspberry-pi-zero-w-simultaneous-ap-and-managed-mode-wifi/ | |
MAC_ADDRESS="$(cat /sys/class/net/wlan0/address)" | |
CLIENT_SSID="${1}" | |
CLIENT_PASSPHRASE="${2}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
OUTPUT: Creating your own hotspot on esp8266 wifi module. | |
Author: Ankit Rana (Futechiot) | |
Board Used: Wemos d1 mini, Wemos d1 mini pro, Node MCU | |
Website: www.futechiot.com | |
GitHub: https://github.com/futechiot | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
OUTCOME: Esp8266 Hotspot as well as Connecting your Esp8266 to any Wifi NETWORK(Mobile Hotspot,Home Route) | |
Author: Ankit Rana (Futechiot) | |
Board Used: Wemos d1 mini, Wemos d1 mini pro, Node MCU | |
Website: www.futechiot.com | |
GitHub: https://github.com/futechiot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
OUTCOME: Connecting your ESP8266 to any Wifi NETWORK(Mobile Hotspot,Home Route) | |
Author: Ankit Rana (Futechiot) | |
Board Used: Wemos d1 mini, Wemos d1 mini pro, Node MCU | |
Website: www.futechiot.com | |
GitHub: https://github.com/futechiot | |
Rrsource: | |
Advanced IP Scanner: https://www.advanced-ip-scanner.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
OUTPUT: Creating your own hotspot on esp32 wifi+ble module as well as | |
connect to your home router or mobile hotspot. | |
BOTH ACCESS POINT + STATION ACTIVATED | |
Author: Ankit Rana (Futechiot) | |
Board Used: esp32 development board, LolinD32,WEMOS LOLIN32, ESP32 MH-ET live Minikit | |
Website: www.futechiot.com | |
GitHub: https://github.com/futechiot |