Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

printTo(string) prints numbers #120

Closed
burner- opened this issue Sep 18, 2015 · 1 comment
Closed

printTo(string) prints numbers #120

burner- opened this issue Sep 18, 2015 · 1 comment
Assignees
Labels

Comments

@burner-
Copy link

burner- commented Sep 18, 2015

String buffer = "";
root.printTo(buffer);
Serial1.println(buffer);
print just a numbers at esp8266 arduino platfrom. With direct serial print it works fine but that is not suitable method with webserver.
Using char[] as output format looks working well
String buffer = "";
char cbuf[256];
root.printTo(cbuf,sizeof(cbuf));
buffer = cbuf;
Serial1.println(buffer);

@bblanchon bblanchon added the bug label Sep 19, 2015
bblanchon added a commit that referenced this issue Sep 19, 2015
@bblanchon bblanchon self-assigned this Sep 19, 2015
@bblanchon
Copy link
Owner

Fixed in v5.0.3.
Thanks.

Repository owner locked and limited conversation to collaborators Sep 21, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants