Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <string.h>
- char str[80];
- char buffer[10];
- void loop(){
- dtostrf(someVal1, buffer);
- strcat(str,buffer);
- dtostrf(someVal2, buffer);
- strcat(str,buffer);
- dtostrf(someVal3, buffer);
- strcat(str,buffer);
- }
Advertisement
Add Comment
Please, Sign In to add comment