mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-14 18:46:59 +00:00
There is a problem with the PlatformIO builder since the last update of @mvdbro It's an issue with the parsing of `#ifdef ESP32`. It is very well explained here: [platformio/platformio-core#801 (comment)](https://github.com/platformio/platformio-core/issues/801#issuecomment-252447178) In short, the event handling functions for the wifi have been moved to a separate .h file, since those files will be parsed properly by the Library Dependency Finder (LDF) in PlatformIO 3.x
10 lines
513 B
Markdown
10 lines
513 B
Markdown
# ESPeasySoftwareSerial
|
|
|
|
Implementation of the Arduino software serial library for the ESP8266
|
|
|
|
Same functionality as the corresponding AVR library but several instances can be active at the same time.
|
|
Speed up to 115200 baud is supported. The constructor also has an optional input buffer size.
|
|
|
|
Please note that due to the fact that the ESP always have other activities ongoing, there will be some inexactness in interrupt
|
|
timings. This may lead to bit errors when having heavy data traffic in high baud rates.
|