Hey, Im pretty new to arduino and C++ so bear with me.
Im working on a small calculator project, most parts of it are working fine but im having trouble with inputing larger numbers.
Right now, the user types I(10 Numbers) [E.G I1111111111] into the serial monitor and sends, the first thing this does is trips and if statement that tells the program to run the function ManualInput() This then sets an int as 1 and runs the NumberI() function. This Decifers the Numbers after The Action Letter And sets them as Int's N1 Through N10, (When it gets to the bottom of NumberI an If statement sends it to ManualI2, due to the MI = 1;.
What i then wanted to happen was to convert the 10 N1-N10 int's into a single one called Answer. Which is eventualy Displayed.
I've searched low and high on the net but didnt come up with anything usefull / understandable.
Sorry if the question was badly worded.
Thanks in advance for any replies.