Convert a String to int
in
Integration and Hardware
•
2 years ago
Can someone tell me why this won't compile?
int i=0;
void setup()
{
}
void loop()
{
String test = "390";
int i = int(test);
}
int i=0;
void setup()
{
}
void loop()
{
String test = "390";
int i = int(test);
}
1