Search in Pinguino World !!

Sunday, October 12, 2008

Variables initialisation in Pinguino

/* DEPRECATED */
/* modified in beta 5 */

Initialisation of variables must be done in the setup() loop instead of head of the program.

In Pinguino you must do this:

int led1;

void setup()
{
led1=1;
}

Pinguino do not accept

int led1=1;


We are trying to fix this bug......................

No comments: