Looking for a way to make DHCP server in softAP mode for esp32 #932
-
I've managed to migrate WiFiAP sample from windows.devices.wifi to system.device.wifi to use on esp32-pico firmware. Appreciate any suggestion. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
To set a fixed IP configuration you have to use this method |
Beta Was this translation helpful? Give feedback.
-
I did some dirty implementation of DHCP server here That solve my problem to avoid manual setting of IP address on every device that I want to connect to nanoframework device in AP mode. That would be good to make some nuget package with better implementation, but i'm not good enough to make that. |
Beta Was this translation helpful? Give feedback.
-
@lsd-techno that's great that you've managed to find and implement a workaround. Agreed that the minimal DHCP server should be made available as a helper NuGet. |
Beta Was this translation helpful? Give feedback.
-
I think, that in older versions of Core (10.x.x) DHCP works correctly (i have one board with older Core version). |
Beta Was this translation helpful? Give feedback.
I did some dirty implementation of DHCP server here
That solve my problem to avoid manual setting of IP address on every device that I want to connect to nanoframework device in AP mode.
That would be good to make some nuget package with better implementation, but i'm not good enough to make that.