iI plan to do the following:
void setup(){
String term = "12 + (2 * 5)";
int result = eval(term); // eval function (from pythonPython)
Serial.println(result); // expectexpecting 22
}
howeverHowever there is no eval function. Are there any alternatives?