13-02-2024, 01:30 PM
Hola, tengo una Arduino Mega 2560 con RAMPS, reprap 1.4 con un LCD_DISCOUNT_SMART_CONTROLLER,, le he instalado la biblioteca de LiquidCrystal y tengo el Marlin en la carpeta Marlin, donde el Configuration.h esta en la ruta Marlin/Configurations-release-2.1.2.2/config/default/Configuration.h
Ahora cuando trato de compilar el simple programa:
#include <Configuration.h>;
const int rs = 12, en = 11, d4 = 4, d6 = 3, d7 = 2;
liquidCrystal lcd(rs, en, d4, d5, d6, d7)
void setup() {
// put your setup code here, to run once:
lcd.begin(20,4);
lcd.print("1st row"=;
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0,1);
lcd.print("2nd row");
lcd.setCursor(0,2);
lcd.print("3rd row");
lcd.setCursor(0,3);lcd.print(24th row");
}
me sale el error: "Arduino:1.8.19 (Linux), Tarjeta:"Arduino Mega or Mega 2560, ATmega2560 (Mega 2560)"
foro:2:28: fatal error: Configuration.h: No existe el fichero o el directorio
compilation terminated.
exit status 1
Configuration.h: No existe el fichero o el directorio"
El error lo entiendo, ahora como deberia establecer la ruta para que tome el archivo Cofiguration.h ?
Desde ya muchas gracias.
Ahora cuando trato de compilar el simple programa:
#include <Configuration.h>;
const int rs = 12, en = 11, d4 = 4, d6 = 3, d7 = 2;
liquidCrystal lcd(rs, en, d4, d5, d6, d7)
void setup() {
// put your setup code here, to run once:
lcd.begin(20,4);
lcd.print("1st row"=;
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0,1);
lcd.print("2nd row");
lcd.setCursor(0,2);
lcd.print("3rd row");
lcd.setCursor(0,3);lcd.print(24th row");
}
me sale el error: "Arduino:1.8.19 (Linux), Tarjeta:"Arduino Mega or Mega 2560, ATmega2560 (Mega 2560)"
foro:2:28: fatal error: Configuration.h: No existe el fichero o el directorio
compilation terminated.
exit status 1
Configuration.h: No existe el fichero o el directorio"
El error lo entiendo, ahora como deberia establecer la ruta para que tome el archivo Cofiguration.h ?
Desde ya muchas gracias.