This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Bienvenido, Invitado
Tienes que registrarte para poder participar en nuestro foro.

Nombre de usuario
  

Contraseña
  





Estadísticas del foro
» Miembros: 18,209
» Último miembro: DavidLob
» Temas del foro: 12,473
» Mensajes del foro: 119,051

Estadísticas totales

Últimos temas
Impresión 3D a partir de ...
Foro: Informática
Último mensaje por: blinkcagey
07-04-2026, 10:36 AM
» Respuestas: 1
» Vistas: 1,273
Pregunta sobre el filamen...
Foro: General
Último mensaje por: KOrNeJ
03-04-2026, 10:12 AM
» Respuestas: 0
» Vistas: 105
Que monitor que useis,o u...
Foro: Informática
Último mensaje por: callousaudit
03-04-2026, 08:33 AM
» Respuestas: 2
» Vistas: 1,218
Pequeñas variaciones en c...
Foro: General
Último mensaje por: Tonete
26-03-2026, 03:01 PM
» Respuestas: 2
» Vistas: 233
Problema al extruír desde...
Foro: Prusa
Último mensaje por: Simemart
24-03-2026, 08:55 PM
» Respuestas: 3
» Vistas: 325
[RECOPILATORIO] Las impre...
Foro: Impresoras
Último mensaje por: Franz3D
22-03-2026, 02:43 PM
» Respuestas: 31
» Vistas: 64,817





















 
  Ayuda configuracion del Marlin para compilar en el arduino
Enviado por: NOQUI - 13-02-2024, 01:30 PM - Foro: Firmware y Software - Respuestas (1)

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.


  Problemas con DELTA_HEIGHT
Enviado por: infohome - 10-02-2024, 06:30 PM - Foro: Delta - Respuestas (1)

Hola a todos, 

Tengo una Impresora Delta Kosell Mini con firmware Marlin, tengo que modificar la altura de la cama, modifico el parámetro DELTA_HEIGHT pero a la hora de imprimir la impresora siempre baja a la misma altura. Estoy desesperado, ¿se os ocurre que puede suceder?

Gracias,


  aceleraciones prusa i3
Enviado por: fedasil - 08-02-2024, 07:28 AM - Foro: Impresoras - Respuestas (2)

Hola no encuentro las aceleraciones normales para una prusa i3 alguien tiene alguin ejemple gracias y buenos dias
// @section motion

/**
* Default Settings
*
* These settings can be reset by M502
*
* Note that if EEPROM is enabled, saved values will override these.
*/

/**
* With this option each E stepper can have its own factors for the
* following movement settings. If fewer factors are given than the
* total number of extruders, the last value applies to the rest.
*/
//#define DISTINCT_E_FACTORS

/**
* Default Axis Steps Per Unit (linear=steps/mm, rotational=steps/°)
* Override with M92
* X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
*/
#define DEFAULT_AXIS_STEPS_PER_UNIT { 79.5, 80.32, 400, 150.61 }

/**
* Default Max Feed Rate (linear=mm/s, rotational=°/s)
* Override with M203
* X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
*/
#define DEFAULT_MAX_FEEDRATE { 200, 200, 5, 25 }

//#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2
#if ENABLED(LIMITED_MAX_FR_EDITING)
#define MAX_FEEDRATE_EDIT_VALUES { 600, 600, 10, 50 } // ...or, set your own edit limits
#endif

/**
* Default Max Acceleration (speed change with time) (linear=mm/(s^2), rotational=°/(s^2))
* (Maximum start speed for accelerated moves)
* Override with M201
* X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
*/
#define DEFAULT_MAX_ACCELERATION { 1100, 1100, 50, 5000 }

//#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
#if ENABLED(LIMITED_MAX_ACCEL_EDITING)
#define MAX_ACCEL_EDIT_VALUES { 6000, 6000, 200, 20000 } // ...or, set your own edit limits
#endif

/**
* Default Acceleration (speed change with time) (linear=mm/(s^2), rotational=°/(s^2))
* Override with M204
*
* M204 P Acceleration
* M204 R Retract Acceleration
* M204 T Travel Acceleration
*/
#define DEFAULT_ACCELERATION 650 // X, Y, Z and E acceleration for printing moves
#define DEFAULT_RETRACT_ACCELERATION 1000 // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION 1000 // X, Y, Z acceleration for travel (non printing) moves

/**
* Default Jerk limits (mm/s)
* Override with M205 X Y Z . . . E
*
* "Jerk" specifies the minimum speed change that requires acceleration.
* When changing speed and direction, if the difference is less than the
* value set here, it may happen instantaneously.
*/
//#define CLASSIC_JERK
#if ENABLED(CLASSIC_JERK)
#define DEFAULT_XJERK 10.0
#define DEFAULT_YJERK 10.0
#define DEFAULT_ZJERK 0.6
//#define DEFAULT_IJERK 0.3
//#define DEFAULT_JJERK 0.3
//#define DEFAULT_KJERK 0.3
//#define DEFAULT_UJERK 0.3
//#define DEFAULT_VJERK 0.3
//#define DEFAULT_WJERK 0.3

//#define TRAVEL_EXTRA_XYJERK 0.0 // Additional jerk allowance for all travel moves

//#define LIMITED_JERK_EDITING // Limit edit via M205 or LCD to DEFAULT_aJERK * 2
#if ENABLED(LIMITED_JERK_EDITING)
#define MAX_JERK_EDIT_VALUES { 20, 20, 0.6, 10 } // ...or, set your own edit limits
#endif
#endif

#define DEFAULT_EJERK 5.0 // May be used by Linear Advance

/**
* Junction Deviation Factor
*
* See:
* https://reprap.org/forum/read.php?1,739819
* https://blog.kyneticcnc.com/2018/10/comp...arlin.html
*/
#if DISABLED(CLASSIC_JERK)
#define JUNCTION_DEVIATION_MM 0.062 // (mm) Distance from real junction edge
#define JD_HANDLE_SMALL_SEGMENTS // Use curvature estimation instead of just the junction angle
// for small segments (< 1mm) with large junction angles (> 135°).
#endif

/**
* S-Curve Acceleration
*
* This option eliminates vibration during printing by fitting a Bézier
* curve to move acceleration, producing much smoother direction changes.
*
* See https://github.com/synthetos/TinyG/wiki/...-Explained
*/
#define S_CURVE_ACCELERATION


  Ayuda
Enviado por: Carlosrodas68 - 07-02-2024, 07:16 AM - Foro: Anycubic - Respuestas (1)

Necesito ayuda con mi impresora escanee código QR que trae y descargue el firwere bin y cuando le di instalar se apago y ahora no me da pantalla donde salia print. Que puedo hacer pensé en conectarla a un ordenador PC, pero no se si se puedo ayuda porfavor gracias bendiciones


  Capa inicial sale mal
Enviado por: roberr_12 - 06-02-2024, 09:27 PM - Foro: General - Respuestas (2)

Buenas a todos , estoy empezando a imprimir y me he encontrado con que algunas piezas , en este caso un llavero cuyo uno de los lados está pegado a la cama de la impresora , sale mal ( con líneas de filamento) , no sé cómo podría salir bien liso como en la capa final. Adjunto foto de cómo me ha salido, os agradecería si me dieseis unos tips de cómo configurar las capas iniciales y finales. Muchas Gracias

[Imagen: IMG-9526.jpg]