esp8266-wifi-serial
(WIP) Driver to work with the esp8266 module over the serial port.
By using this module you can join the existing access point or creating your own. After a network creation, the module can both listen to incoming TCP connections or connect to other sockets.
let mut module = new.expect;
// Create a new access point.
let mut session = SoftApConfig
.start
.expect;
// Start listening for incoming connections on the specified port.
session.listen.unwrap;
// Start an event loop.
loop
Warning: this library is not finished yet and it is not worth using it in mission-critical software, it can burn your hamster.
The crate was been tested with the gd32vf103
board.
I will be happy to see new contributions to the development of this crate.