Premier démarrage Prusa Air 2 January 13, 2014 04:42PM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 13, 2014 06:22PM |
Registered: 9 years ago Posts: 16 |
Re: Premier démarrage Prusa Air 2 January 13, 2014 06:45PM |
Registered: 10 years ago Posts: 66 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 02:28AM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 08:08AM |
Registered: 10 years ago Posts: 66 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 09:36AM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 09:38AM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 10:27AM |
Registered: 10 years ago Posts: 548 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 11:30AM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 11:37AM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 03:15PM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 03:26PM |
Registered: 11 years ago Posts: 432 |
=> ton Z fonctionne mais dans un seul sens ? C'est un problème de fin de course sans aucun douteQuote
Quand j'essaye de titiller le controle manuel, seule l'extrudeur ne fait que monter (merci l’arrêt d'urgence ;o) )
=> Tu l'as disQuote
Le contrôle X ne fonctionne seulement quand j'appuis sur son Endstop;
Tu peux régler la puissance du pololu avec la vis (bouge d'1/8 de tour à chaque fois). Si ça ne fonctionne pas, il y a un soucis de branchement.Quote
Avec le contrôle Y j'obtien de très léger ac-coup, mais rien ne bouge.
Re: Premier démarrage Prusa Air 2 January 14, 2014 03:54PM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 03:58PM |
Registered: 11 years ago Posts: 432 |
Re: Premier démarrage Prusa Air 2 January 14, 2014 05:00PM |
Registered: 10 years ago Posts: 66 |
#define MOTHERBOARD 33 #define TEMP_SENSOR_0 1 #define TEMP_SENSOR_1 0 #define TEMP_SENSOR_2 0 #define TEMP_SENSOR_BED 1 #define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors #ifdef ENDSTOPPULLUPS #define ENDSTOPPULLUP_XMAX #define ENDSTOPPULLUP_YMAX #define ENDSTOPPULLUP_ZMAX #define ENDSTOPPULLUP_XMIN #define ENDSTOPPULLUP_YMIN #define ENDSTOPPULLUP_ZMIN #endif // The pullups are needed if you directly connect a mechanical endswitch between the signal and ground pins. const bool X_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops. const bool Y_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops. const bool Z_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops. #define DISABLE_MAX_ENDSTOPS // For Inverting Stepper Enable Pins (Active Low) use 0, Non Inverting (Active High) use 1 #define X_ENABLE_ON 0 #define Y_ENABLE_ON 0 #define Z_ENABLE_ON 0 #define E_ENABLE_ON 0 // For all extruders // Disables axis when it's not being used. #define DISABLE_X true #define DISABLE_Y true #define DISABLE_Z true #define DISABLE_E false // For all extruders #define INVERT_X_DIR false // for Mendel set to false, for Orca set to true #define INVERT_Y_DIR false // for Mendel set to true, for Orca set to false #define INVERT_Z_DIR true // for Mendel set to false, for Orca set to true #define INVERT_E0_DIR true // for direct drive extruder v9 set to true, for geared extruder set to false #define INVERT_E1_DIR false // for direct drive extruder v9 set to true, for geared extruder set to false #define INVERT_E2_DIR false // for direct drive extruder v9 set to true, for geared extruder set to false // ENDSTOP SETTINGS: // Sets direction of endstops when homing; 1=MAX, -1=MIN #define X_HOME_DIR -1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1 #define min_software_endstops true //If true, axis won't move to coordinates less than HOME_POS. #define max_software_endstops true //If true, axis won't move to coordinates greater than the defined lengths below. // Travel limits after homing #define X_MAX_POS 200 #define X_MIN_POS 0 #define Y_MAX_POS 200 #define Y_MIN_POS 0 #define Z_MAX_POS 140 #define Z_MIN_POS 0 // The position of the homing switches #define MANUAL_HOME_POSITIONS // If defined, MANUAL_*_HOME_POS below will be used #define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
//By default pololu step drivers require an active high signal. However, some high power drivers require an active low signal as step. #define INVERT_X_STEP_PIN false #define INVERT_Y_STEP_PIN false #define INVERT_Z_STEP_PIN false #define INVERT_E_STEP_PIN false
Re: Premier démarrage Prusa Air 2 January 17, 2014 04:39AM |
Registered: 9 years ago Posts: 161 |
Re: Premier démarrage Prusa Air 2 January 17, 2014 04:41AM |
Registered: 9 years ago Posts: 161 |