Gustavo04
hola tengo este problema al compilar.
por favor me pueden ayudar
arduino: 1.6.4 (windows 7), board: "arduino uno"
sketch_aug21a.ino: in function 'void setup()':
sketch_aug21a:6: error: expected unqualified-id before '.' token
multiple libraries found "scheduler.h"
used: c:\users\gustavo solano\documents\arduino\libraries\scheduler
not used: c:\program files (x86)\arduino\libraries\scheduler
expected unqualified-id before '.' token
this report have more information with
"show verbose output during compilation"
enabled in file > preferences.
adjunto el programa.
#include <scheduler.h>
void setup()
{
scheduler.startloop(loop1);
}
void loop() {
// put main code here, run repeatedly:
}
void loop1 () {
}
por favor me pueden ayudar
arduino: 1.6.4 (windows 7), board: "arduino uno"
sketch_aug21a.ino: in function 'void setup()':
sketch_aug21a:6: error: expected unqualified-id before '.' token
multiple libraries found "scheduler.h"
used: c:\users\gustavo solano\documents\arduino\libraries\scheduler
not used: c:\program files (x86)\arduino\libraries\scheduler
expected unqualified-id before '.' token
this report have more information with
"show verbose output during compilation"
enabled in file > preferences.
adjunto el programa.
#include <scheduler.h>
void setup()
{
scheduler.startloop(loop1);
}
void loop() {
// put main code here, run repeatedly:
}
void loop1 () {
}
quote
multiple libraries found "scheduler.h"you have header file in 2 places. not same header file syntax use scheduler object not match in header file being used.
used: c:\users\gustavo solano\documents\arduino\libraries\scheduler
not used: c:\program files (x86)\arduino\libraries\scheduler
decide 1 right 1 , delete other one.
Arduino Forum > International > Español > Software (Moderators: surbyte, Hector_A) > Gustavo04
arduino
Comments
Post a Comment