StringStream class for Arduino
#ifndef _STRING_STREAM_H_INCLUDED_ | |
#define _STRING_STREAM_H_INCLUDED_ | |
#include <Stream.h> | |
class StringStream : public Stream | |
{ | |
public: | |
StringStream(const String &s) : string(s), position(0) { } | |
// Stream methods | |
virtual int available() { return string.length() - position; } | |
virtual int read() { return position < string.length() ? string[position++] : -1; } | |
virtual int peek() { return position < string.length() ? string[position] : -1; } | |
virtual void flush() { }; | |
// Print methods | |
virtual size_t write(uint8_t c) { string += (char)c; }; | |
private: | |
String &string; | |
int length; | |
int position; | |
}; | |
#endif // _STRING_STREAM_H_INCLUDED_ |
This comment has been minimized.
This comment has been minimized.
Remove |
This comment has been minimized.
This comment has been minimized.
would it be possible to achieve some thing like this:
tried it gives an error,
how do I achieve the above ? |
This comment has been minimized.
This comment has been minimized.
@sanfx, this is really late, but you would have to implement a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Hi, it looks good this library..
do You know why is not working for me?
StringStream.h:9:58: error: invalid initialization of reference of type 'String&' from expression of type 'const String'
StringStream(const String &s) : string(s), position(0) { }
^
Error compiling.