https://github.com/skitsanos/esp32-app-template
ESP32 Application/Firmware Template
https://github.com/skitsanos/esp32-app-template
Last synced: 3 months ago
JSON representation
ESP32 Application/Firmware Template
- Host: GitHub
- URL: https://github.com/skitsanos/esp32-app-template
- Owner: skitsanos
- License: mit
- Created: 2019-01-29T09:43:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-05T10:04:54.000Z (almost 2 years ago)
- Last Synced: 2025-01-15T20:19:56.648Z (9 months ago)
- Language: C
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# esp32-app-template
ESP-IDF Template application for building apps running on ESP32 modules
### Cloning template into selected folder
```
git clone https://github.com/skitsanos/esp32-app-template.git .
```### WIFI
When it comes to WIFI, application preconfigured to run in station and dual modes, use _wifi_init_apsta_ to run dual-mode and _wifi_init_sta_ to run in station mode.
In order to set your device as access point, in _app_config.h_ modify the access point SSID (_ap_ssid_) and password (_ap_password_):
```
#define ap_ssid "ESP32-node"
#define ap_password "password12345678"
```