ayushsharma82 / WebSerial

A remote terminal library for wireless microcontrollers to log, monitor or debug your firmware/product
https://webserial.pro
GNU Affero General Public License v3.0
461 stars 108 forks source link

Stream serial monitor data to WebSerial #22

Closed mynkow closed 3 years ago

mynkow commented 3 years ago

Is it possible to stream the serial monitor data?

For example, I would like to drop this library into an existing project and get all Serial.println("...") sent and displayed in the WebSerial page.

ayushsharma82 commented 3 years ago

You'll have to replace those functions with WebSerial.println

mynkow commented 3 years ago

ok, thank you.