Hello after a long absence. I have this question, I have a problem converting const char to int. I don't know how to do it, I tried toInt () but unfortunately it only applies to the string.
TinyGPSCustom sats (gps, "GPGSV", 3);
int sat_numb = sats.value (). toInt ();
And I get such a message
invalid conversion from 'const char*' to 'int' [-fpermissive]
Could someone please explain to me how to convert it correctly?
thank you in advance for your help