esp32: PPP tunel for WiFi
HI
say ESP32 connects as client to home WiFi access point.
can ESP32 provide PPP internet access for linux over RX/TX serial?
(or over something similar like SPI channel)
Is there some example for this on micropython, please help
How to connect to an ESP32 from a mobile application?
I want to communicate ESP32 with my mobile app. I done micopython coding as follows :
import network
ap = network.WLAN(network.AP_IF)
ap.active(True)
ap.config(essid='ESP32')
ap.config(authmode=3, password='123456789')
In this code Access point is created and it is visible in my android mobile.
But when i connect my mobile to access point it is showing “saved” message instead of “connected” even though i have entered correct password.
I followed same procedure using arduino code then i am able to connect my mobile with access point created by esp32. Any help is highly appreciable .