Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xtalism/esp32ap
ESP32 Access Point
https://github.com/xtalism/esp32ap
access-point arduino cpp embedded-systems esp32 industrial-network microcontroller-programming networking platformio
Last synced: 3 months ago
JSON representation
ESP32 Access Point
- Host: GitHub
- URL: https://github.com/xtalism/esp32ap
- Owner: Xtalism
- License: mit
- Created: 2024-08-24T21:06:54.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-08-28T16:57:55.000Z (4 months ago)
- Last Synced: 2024-10-10T11:43:30.066Z (3 months ago)
- Topics: access-point, arduino, cpp, embedded-systems, esp32, industrial-network, microcontroller-programming, networking, platformio
- Language: C++
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESP32AP
This is an ESP32 Access Point code.
## Table of Contents
- [ESP32AP](#esp32ap)
- [Table of Contents](#table-of-contents)
- [Description](#description)
- [Installation](#installation)
- [Documentation](#documentation)## Description
This project sets up an ESP32 microcontroller as a Wi-Fi access point, allowing other devices to connect to it. It can be used for various IoT applications where a local network is required without relying on external Wi-Fi infrastructure.
You can use the [ESP32TCP-IP](https://github.com/Xtalism/ESP32TCP-IP) code I have on my repository so you can connect to the access point whenever you like. This code also works with multiple ESP32's. If you'd like to add more than 2 ESP32's, you'd need to change the [ESP32AP](https://github.com/Xtalism/ESP32AP) code in order to add as many clients as you'd like it to be.
## Installation
1. Clone the repository:
```sh
git clone https://github.com/Xtalism/ESP32AP.git## Documentation
You can look up the [WiFi API](https://docs.espressif.com/projects/arduino-esp32/en/latest/api/wifi.html) documentation which is the one I based my code on.
You can also see the [TCP/IP Adapter](https://docs.espressif.com/projects/esp-idf/en/release-v3.3/api-reference/network/tcpip_adapter.html) for more details.