Asynchronous Socket Programming in ESP-IDF
Implement asynchronous socket operations on ESP32 using callbacks or event-driven models to handle network I/O without blocking application tasks.
Asynchronous Socket Programming in ESP-IDF Read More »
Implement asynchronous socket operations on ESP32 using callbacks or event-driven models to handle network I/O without blocking application tasks.
Asynchronous Socket Programming in ESP-IDF Read More »
Deep dive into various socket options (setsockopt/getsockopt) available in LwIP on ESP32 for fine-tuning TCP, UDP, and IP behavior.
Socket Options and Configurations Read More »
Learn advanced raw socket programming on ESP32 to craft and receive custom IP packets, bypassing the standard TCP/UDP transport layers.
Raw Socket Implementation in ESP-IDF Read More »
Implement UDP socket programming on ESP32 for connectionless, datagram-based communication. Suitable for applications where speed matters over reliability.
UDP Socket Programming with ESP32 Read More »
Explore advanced TCP features and socket options on ESP32, including keepalive, Nagle’s algorithm, window scaling, and error handling.
TCP Advanced Features and Options Read More »
Learn the fundamentals of TCP socket programming on ESP32 using the LwIP stack. Create reliable, connection-oriented communication channels.
TCP Socket Programming Basics Read More »
Utilize multicast DNS (mDNS) on ESP32 for zero-configuration service discovery on local networks (like Apple’s Bonjour). Find devices and services easily.
mDNS and Service Discovery Read More »
Set up a basic DNS server on ESP32 and implement DNS-Based Service Discovery (DNS-SD) for advertising and discovering network services locally.
DNS Server and DNS-SD Implementation Read More »
Implement a DNS client on ESP32 to resolve domain names (like www.google.com) into IP addresses needed for establishing network connections.
DNS Client Implementation Read More »
Configure the ESP32 to act as a DHCP server, assigning IP addresses and network configuration to clients connecting to its network (e.g., in AP mode).
DHCP Server Implementation Read More »