Editing Imp3D-Gort

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
 
{{Template:HerramientaRoja}}
 
{{Template:HerramientaRoja}}
 
 
==Después de pasar una buena temporada imprusando en MakeSpace Gort ha regresado con su padre Jose Maria.==
 
  
 
= Información de seguridad =
 
= Información de seguridad =
  
 
Revisar la información de seguridad general referente a impresoras 3D en [[Equipamiento/Impresora3D|Impresoras 3D]]
 
Revisar la información de seguridad general referente a impresoras 3D en [[Equipamiento/Impresora3D|Impresoras 3D]]
= Dirección online de la máquina =
+
 
http://mksmad-lulzbot:5001/
+
  
 
= Precauciones específicas =
 
= Precauciones específicas =
  
* '''El pin 14 no funciona'''. Si se cambia el firmware hay que tener en cuenta que en pins.h (en Marlin) hay que hacer las modificaciones inidcadas más abajo en [[#Firmware]].
+
* '''El pin 14 no funciona'''. Si se cambia el firmware hay que tener en cuenta que en pins.h (en Marlin) hay que hacer esta modificación:
 
+
<source lang="csharp">
= Especificaciones =
+
// Hello World in Microsoft C# ("C-Sharp").
 
+
== Ficha [http://www.reprap.org/wiki/Clone_wars:Impresora_Gort/es Clone Wars]==
+
* '''Nombre''': [http://www.reprap.org/wiki/Clone_wars:Impresora_Gort/es '''GORT''']
+
* '''Tipo''': [http://www.reprap.org/wiki/Prusa_i3  Prusa i3] en concreto [http://www.reprap.org/wiki/Clone_wars:_Prusa_iteraci%C3%B3n_3_single_frame Prusa iteración 3 single frame]
+
* '''Electrónica''': [http://arduino.cc/en/Main/ArduinoBoardMega2560 Arduino Mega 2560] + [http://reprap.org/wiki/RAMPS_1.4 RAMPS 1.4]
+
* '''Extrusor''': [http://www.thingiverse.com/thing:135799 Greg's Wade extruder for Prusa i3 redux]
+
* '''Hot-End''': [http://jtendero-es.tumblr.com/post/63453252994/diseno-de-hotend-leonozzle-allmetal-en LeoNozzle]
+
* '''Firmware''': [http://www.reprap.org/wiki/Marlin Marlin]
+
* '''Nacimiento''': 3/04/2013
+
* '''Nº Clon''': [http://www.reprap.org/wiki/Clone_Wars:_El_imperio_de_los_clones/es#Consejero_Jedi:_Miembro_del_consejo_jedi 185]
+
 
+
==HotEnd==
+
LeoNozzle con las siguientes características:
+
*Para filamento de 3mm
+
*Termistor: EPOC 100k
+
*Nozzle: 0,4mm
+
 
+
== Firmware ==
+
 
+
El firmware actual es Marlin v1. Puedes descargarlo del [https://github.com/makespacemadrid/equipment-config github de MakeSpace] si te  hiciera falta('''TODO: SUBIR el firm al repositorio''') - (temporalmente en [https://github.com/jmartinz/equipment-config/tree/master/Impresoras3D/GORT github de jmartinz] )
+
 
+
('''TODO: activar la EEPROM''')Hay que activar la EEPROM esta activada, así que no es necesario reprogramar el firmware para cambiar la configuración. Se cambia la configuración con los g-codes y se guarda en la EEPROM con un M500. Ver [[G-code]]
+
 
+
'''¡¡OJO!!''' '''El pin 14 no funciona''', con el Marlin original  no lee la temperatura de la cama caliente, '''hay que conectar el termistor de la cama al TEMP_SENSOR 1 de la RAMPS  y cambiar el pin en el pins.h''' para que sea el TEMP_BED_PIN.
+
 
+
Dentro del pins.h buscar la seccion :
+
#if MOTHERBOARD == 3 || MOTHERBOARD == 33 || MOTHERBOARD == 34
+
 
+
La configuración de los pines de temperatura tendra esta pinta :
+
#define TEMP_0_PIN        13  // ANALOG NUMBERING
+
#define TEMP_1_PIN        15  // ANALOG NUMBERING
+
#define TEMP_2_PIN        -1  // ANALOG NUMBERING
+
#define TEMP_BED_PIN      14
+
cambiar a:
+
#define TEMP_0_PIN        13  // ANALOG NUMBERING
+
#define TEMP_1_PIN        14  // ANALOG NUMBERING
+
#define TEMP_2_PIN        -1  // ANALOG NUMBERING
+
#define TEMP_BED_PIN      15
+
 
+
===Datos de configuraccion:===
+
 
+
Pasos por mm eje X/Y  : 80.
+
Pasos por mm eje Z    : 4040.
+
Pasos por mm extrusor : 752,68.
+
+
Máximo eje X :190.
+
Máximo eje Y :190.
+
Máximo eje Z :200.
+
+
Thermistor del hotend          : EPCOS 100k.
+
Thermistor de la cama caliente : EPCOS 100k.
+
  
== Controlador LCD ==
+
using System;
Tipo [http://reprap.org/wiki/RepRapDiscount_Smart_Controller RepRapDiscount Smart Controller]
+
  
[[Category:Maquinaria]][[Category:Maquinaria de fabricación digital]][[Category:Impresión 3D]]
+
class HelloWorld
 +
{
 +
    public static int Main(String[] args)
 +
    {
 +
        Console.WriteLine("Hello, World!");
 +
        return 0;
 +
    }
 +
}
 +
</source>

Please note that all contributions to Wiki Makespace Madrid may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Wiki Makespace Madrid:Copyrights for details). Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to type the two words you see in the box below:

Cancel | Editing help (opens in new window)

Template used on this page: