Good evening everyone,
I did a simple function to parse a string in order to be able to send simple but meaningful commands to my arduino (like : up@80 - up is a function that will run the motor forward and 80 is its speed for instance, then I just have to do a "dictionnary" of all the functions). In order to do that, I had to use some standard C libraries like string.h, iostream or whatever. Is it any way to make it run on the Arduino ? Because when I include "parsing.h", the IDE obviously doesn't find string.h, iostream,sstream or whatever..
Thank you very much.