This is what Imade of it.
When the splash screen is active the display blinks each second?
Is this rewriting of the values?
Paco
//create the menu tree
r=menu.addMenu(MW_ROOT,NULL,"MAIN MENU"); //create a root menu at first (required)
s1=menu.addMenu(MW_SUBMENU,r,"Settings 1"); //add a submenu node to the root menu
s2=menu.addMenu(MW_VAR,s1,"SpeedStart"); //add a terminal node in the menu tree (that is "variable");
s2->addVar(MW_AUTO_INT,&gp,1,125,5); //Set value
s2=menu.addMenu(MW_VAR,s1,"SpeedCurve"); //add a terminal node in the menu tree (that is "variable");
s2->addVar(MW_AUTO_INT,&gp,1,125,5); //Set value
s2=menu.addMenu(MW_VAR,s1,"Brake"); //add a terminal node in the menu tree (that is "variable");
s2->addVar(MW_AUTO_INT,&gp,1,125,5); //Set value
s2=menu.addMenu(MW_VAR,s1,"Model"); //add a terminal node in the menu tree (that is "variable");
s2->addVar(MW_AUTO_INT,&gp,1,10,1); //Set value
s1=menu.addMenu(MW_SUBMENU,r,"Settings 2"); //add a submenu node to the root menu
s2=menu.addMenu(MW_VAR,s1,"Min"); //add a terminal node in the menu tree (that is "variable");
s2->addVar(MW_AUTO_INT,&gp,1,255,1); //Set value
s2=menu.addMenu(MW_VAR,s1,"Max"); //add a terminal node in the menu tree (that is "variable");
s2->addVar(MW_AUTO_INT,&gp,1,0,1); //Set value
s1=menu.addMenu(MW_SUBMENU,r,"Settings 3"); //add a submenu node to the root menu
s2=menu.addMenu(MW_VAR,s1,"Reset"); //add a terminal node in the menu tree (that is "variable");
s2->addVar(MW_BOOLEAN,&wr); //Set value
s2=menu.addMenu(MW_VAR,s1,"Calibrate"); //add a terminal node in the menu tree (that is "variable");
s2->addVar(MW_BOOLEAN,&wr);