You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No tengo Arduino pero lo he pasado (adaptado) a Java y tuve problemas en la línea 72.
void ZeolitePath::Spin()
{
// Are we due to do anything?
unsigned long now = millis();
// Maybe. What?
switch(state)
{
case idle:
return; // <- aquí
No funcionaba correctamente. Pero al cambiar return por break (sólo en esa línea) se soluciono.
void ZeolitePath::Spin()
{
// Are we due to do anything?
unsigned long now = millis();
// Maybe. What?
switch(state)
{
case idle:
break; // <- aquí lo he corregido.
The text was updated successfully, but these errors were encountered:
No tengo Arduino pero lo he pasado (adaptado) a Java y tuve problemas en la línea 72.
No funcionaba correctamente. Pero al cambiar return por break (sólo en esa línea) se soluciono.
The text was updated successfully, but these errors were encountered: