Lasercutting e Alligator Board May 18, 2016 09:13AM |
Registered: 10 years ago Posts: 1,409 |
Re: Lasercutting e Alligator Board May 24, 2016 12:03AM |
Registered: 10 years ago Posts: 1,409 |
Re: Lasercutting e Alligator Board May 24, 2016 02:19AM |
Registered: 11 years ago Posts: 6,409 |
#define LED_PWM1_PIN 36 // PC4 #define LED_PWM2_PIN 40 // PC8 #define LED_PWM3_PIN 41 // PC9
Re: Lasercutting e Alligator Board May 24, 2016 02:39AM |
Registered: 10 years ago Posts: 1,409 |
Re: Lasercutting e Alligator Board May 24, 2016 02:43AM |
Registered: 11 years ago Posts: 6,409 |
Re: Lasercutting e Alligator Board May 24, 2016 02:43AM |
Registered: 10 years ago Posts: 1,409 |
Re: Lasercutting e Alligator Board May 24, 2016 02:47AM |
Registered: 10 years ago Posts: 1,409 |
Re: Lasercutting e Alligator Board May 24, 2016 03:17AM |
Registered: 11 years ago Posts: 6,409 |
Re: Lasercutting e Alligator Board May 24, 2016 03:24AM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
E si!!
Re: Lasercutting e Alligator Board May 24, 2016 06:46AM |
Registered: 11 years ago Posts: 6,409 |
Re: Lasercutting e Alligator Board May 24, 2016 06:52AM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
Nel configuratore una volta attivato il laser nella sezione laser TTl pin metti Heater 0 normally used for hotend 0 o heaterbed normally used for bed e automaticamente prende i pin
Re: Lasercutting e Alligator Board May 31, 2016 03:26PM |
Registered: 8 years ago Posts: 1 |
Re: Lasercutting e Alligator Board June 02, 2016 02:41PM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
Da quello che vedo va direttamente all'alimentatore e non ha un pin di pilotaggio..
Secondo me conviene prendere un laser con scheda di controllo adatta, alimentazione e pin pwm per accenderlo e spegnerlo.. Collegare quel laser direttamente all'uscita dell'alligator non si può fare assorbe 3A quel coso... A quel punto dovrai usare un relè per accenderlo e spegnerlo...
Cmq i pin dell'alligator sono questi:
#define LED_PWM1_PIN 36 // PC4 #define LED_PWM2_PIN 40 // PC8 #define LED_PWM3_PIN 41 // PC9
Re: Lasercutting e Alligator Board June 02, 2016 02:46PM |
Registered: 11 years ago Posts: 6,409 |
Re: Lasercutting e Alligator Board June 02, 2016 02:49PM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
Ne basta uno, l'altro serve solo per accendere e spegnere quindi puoi prendere un pin normale..
Però bisogna capire come funzionano quei pin che hai, che funzione svolgono...
Re: Lasercutting e Alligator Board June 06, 2016 08:36AM |
Registered: 10 years ago Posts: 1,409 |
Re: Lasercutting e Alligator Board June 10, 2016 05:09AM |
Registered: 10 years ago Posts: 1,409 |
Re: Lasercutting e Alligator Board July 08, 2016 10:32AM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
Ne basta uno, l'altro serve solo per accendere e spegnere quindi puoi prendere un pin normale..
Però bisogna capire come funzionano quei pin che hai, che funzione svolgono...
Re: Lasercutting e Alligator Board July 09, 2016 03:11PM |
Registered: 8 years ago Posts: 57 |
Re: Lasercutting e Alligator Board July 09, 2016 03:28PM |
Registered: 10 years ago Posts: 1,409 |
Quote
Oiram
Per quanto riguarda la parte firmware aspetta il mago perchè purtroppo io non so aiutarti, mentre dal lato elettronico vediamo un pò se ho capito bene.
Premettendo il fatto che (come dicevamo prima) l'assorbimento del laser è sempre sui 3A non credo che potresti usare direttamente l'uscita dell'hotend, rischieresti di bruciarla.
Re: Lasercutting e Alligator Board July 09, 2016 04:39PM |
Registered: 11 years ago Posts: 6,409 |
Re: Lasercutting e Alligator Board July 09, 2016 08:07PM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
Guarda se vai sul configuratore e attivi laserbeam vedrai che hai due tipologie una è single pin l'altra è dual pin. Con il single pin hai solo on off e se possibile il PWM, con il due hai un pin per l'on off e l'altro per PWM.
Quindi attivi dual metti come on off quello del'Hotend e come PWM il pin che vuoi e hai fatto..
Re: Lasercutting e Alligator Board July 10, 2016 08:03AM |
Registered: 10 years ago Posts: 1,409 |
Re: Lasercutting e Alligator Board July 13, 2016 08:06AM |
Registered: 10 years ago Posts: 1,409 |
^ sketch/module/MK_Main.cpp: In function 'void gcode_G0_G1(bool)': sketch/module/MK_Main.cpp:3623:81: error: 'code_value' was not declared in this scope if (code_seen('S') && IsRunning()) laser.intensity = (float) code_value(); ^ sketch/module/MK_Main.cpp:3624:93: error: 'code_value' was not declared in this scope if (code_seen('L') && IsRunning()) laser.duration = (unsigned long) labs(code_value()); ^ sketch/module/MK_Main.cpp:3625:75: error: 'code_value' was not declared in this scope if (code_seen('P') && IsRunning()) laser.ppm = (float) code_value(); ^ sketch/module/MK_Main.cpp:3626:82: error: 'code_value' was not declared in this scope if (code_seen('D') && IsRunning()) laser.diagnostics = (bool) code_value(); ^ sketch/module/MK_Main.cpp:3627:76: error: 'code_value' was not declared in this scope if (code_seen('B') && IsRunning()) laser_set_mode((int) code_value()); ^ sketch/module/MK_Main.cpp: In function 'void gcode_M649()': sketch/module/MK_Main.cpp:7970:44: error: 'code_value' was not declared in this scope laser.intensity = (float) code_value(); ^ exit status 1 Errore durante la compilazione per la scheda Alligator 3D Printer board (NATIVE/US.
Re: Lasercutting e Alligator Board July 13, 2016 10:06AM |
Registered: 11 years ago Posts: 6,409 |
Re: Lasercutting e Alligator Board July 13, 2016 12:04PM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
Si errore mio, stasera correggo...
Re: Lasercutting e Alligator Board July 13, 2016 01:48PM |
Registered: 11 years ago Posts: 6,409 |
Re: Lasercutting e Alligator Board July 13, 2016 01:57PM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
Fiuuuu!!!!
Re: Lasercutting e Alligator Board July 15, 2016 11:57AM |
Registered: 10 years ago Posts: 1,409 |
Quote
MagoKimbra
Fiuuuu!!!!