WString.h with AtTiny85

Please could anybody share some tips about to compile arduino string examples in AtTiny85?

I specially interested in string concat function, string to integer conversion and other too.

Best regards, Pescadito.

Yes, my advice is: don't do it.

We just had another post recently from someone who had 2 Kb of SRAM, whose program crashed and behaved strangely (using the String class). You have 512 bytes of SRAM, so that would happen even more.

Or do you mean, "C" strings, where you use strcat, strcpy etc?

No you don't, otherwise you wouldn't have mentioned WString.h.

pescadito:
Please could anybody share some tips about to compile arduino string examples in AtTiny85?

string (as in array of characters) examples or String (as in the String class) examples?

For the former, you should not need to do anything special beyond including the appropriate header file.

For the latter, do understand how little SRAM (memory) an ATtiny85 has?

first thank to consider my question.

i managed to get character serial communication with attiny85 (http://arduino.cc/forum/index.php/topic,85238.0.html), then i can store the characters in a buffer and store some array of characters in the eeprom. that's go.

but how about to convert thats string of character to integer or real that allow me to store some numbers values (serialy configured) in eeprom?

best regards, pescadito