Hello Everyone!
I'm facing a problem related to Eclipse IDE with Arduino Plugin (Site) by Jan Baeyens. I'm running Arduino IDE V1.6.0, Eclipse Luna 4.4.2 and Arduino Plugin v2.4, all in Windows 7.
Everything is installed correctly, and I was able to compile and to upload several codes from the IDE. However, when I'm editing a .ino file, Eclipse don't give me any code completion (ctrl+space).
For example, in this code:
#include <LiquidCrystal.h>
LiquidCrystal lcd(10, 9, 5, 4, 3, 2);
void setup(){
lcd.begin(16,2);
lcd.setCursor(1,0);
lcd.print("Hello")
}
void loop(){}
When I type lcd. and try the ctrl+space, Eclipse can't figure out what methods could complete the sentence. But, when I compile and upload, everything works as it shoulds.
I already tried going to Window > Preferences > C/C++ > Editor > Content Assist > Advanced and marking all the proposals. But it was useless.
Could you help me figure out whats wrong?
Thanks!