RUMBA + Marlin (1.1.9): 2 Servos benötigt, nur ein Servo ist ansteuerbar 22. March 2020 05:30 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 422 |
#define NUM_SERVOS 2 // Servo index starts with 0 for M280 command // Delay (in milliseconds) before the next move will start, to give the servo time to reach its target angle. // 300ms is a good value but you can try less delay. // If the servo can't reach the requested position, increase it. #define SERVO_DELAY { 300, 300 } // Only power servos during movement, otherwise leave off to prevent jitter //#define DEACTIVATE_SERVOS_AFTER_MOVE
#if TEMP_SENSOR_1 == -1 #define TEMP_1_PIN 5 // Analog Input (connector *K2* on RUMBA thermocouple ADD ON is used) #else #define TEMP_1_PIN 14 // Analog Input (default connector for thermistor *T1* on rumba board is used)
#if TEMP_SENSOR_BED == -1 #define TEMP_BED_PIN 7 // Analog Input (connector *K3* on RUMBA thermocouple ADD ON is used <-- this can't be used when TEMP_SENSOR_2 is defined as thermocouple) #else #define TEMP_BED_PIN 11 // Analog Input (default connector for thermistor *THB* on rumba board is used) #endif
// LCD / Controller #define BTN_EN1 11
Re: RUMBA + Marlin (1.1.9): 2 Servos benötigt, nur ein Servo ist ansteuerbar 22. March 2020 15:48 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: RUMBA + Marlin (1.1.9): 2 Servos benötigt, nur ein Servo ist ansteuerbar 23. March 2020 10:39 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 422 |
Re: RUMBA + Marlin (1.1.9): 2 Servos benötigt, nur ein Servo ist ansteuerbar 24. March 2020 13:02 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 422 |
Re: RUMBA + Marlin (1.1.9): 2 Servos benötigt, nur ein Servo ist ansteuerbar 24. March 2020 15:38 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |