Skip to content

Instantly share code, notes, and snippets.

View futechiot's full-sized avatar
🎯
Focusing

Ankit Rana futechiot

🎯
Focusing
View GitHub Profile
@futechiot
futechiot / esp32_series_AP+StationMode.ino
Last active February 12, 2024 03:34
ESP32 WIFI Modes Series: Create Hotspot on ESP32 in AccessPoint mode, Connect your ESP32 with your Home router or other wifi hotspot in STATION mode, make your ESP32 work in both mode simultaneously to give credentials and to send data on cloud
/*
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
@futechiot
futechiot / Blog_ESp8266_STA or wifi connection.ino
Created October 22, 2019 07:07
Give your ESP8266 a internet connection by connecting it with your wifi router.
/*
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/
@futechiot
futechiot / blog_esp8266_series_AP_STA.ino
Last active April 13, 2024 20:40
ESP8266 in Both Mode AccesssPoint and Station mode, you can connect with esp8266 using your mobile and your ESP8266 connects to your another wifi connection(Home router,) both mode work simultaneously
/*
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
@futechiot
futechiot / Blog_ESP8266_Accesspoint_Code.ino
Last active October 22, 2019 06:58
ESP8266 in AccessPoint(Hotspot) mode : Create Hotspot on ESP8266 device for Connection purpose, to give Wifi Credential, to host WebServer, To host Webpage and Give Command
/*
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
*/
@futechiot
futechiot / configure.sh
Created December 24, 2018 05:20 — forked from lukicdarkoo/configure.sh
Raspberry Pi: AP + client mode
#!/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 <lukicdarkoo@gmail.com>
# 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}"