Re: auto livellamento asse Z March 14, 2015 01:00PM |
Registered: 10 years ago Posts: 6,409 |
Re: auto livellamento asse Z March 14, 2015 01:39PM |
Registered: 9 years ago Posts: 114 |
Re: auto livellamento asse Z March 14, 2015 02:56PM |
Registered: 10 years ago Posts: 6,409 |
Re: auto livellamento asse Z March 14, 2015 03:20PM |
Registered: 10 years ago Posts: 860 |
Questa è la domanda che ho posto anche io perche mi è piu facile lavorare in PNP ma in caso ho sia NPN che il PNP e sia il 7805 che il 7905 e mi adatto al casoQuote
corso_shiba
non c'è un sistema per dire al firmware di lavorare con tensione positiva?
Re: auto livellamento asse Z March 14, 2015 06:07PM |
Registered: 9 years ago Posts: 114 |
// coarse Endstop Settings //#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors #ifndef ENDSTOPPULLUPS // fine endstop settings: Individual pullups. will be ignored if ENDSTOPPULLUPS is defined #define ENDSTOPPULLUP_XMAX #define ENDSTOPPULLUP_YMAX #define ENDSTOPPULLUP_ZMAX #define ENDSTOPPULLUP_XMIN #define ENDSTOPPULLUP_YMIN //#define ENDSTOPPULLUP_ZMIN #define ENDSTOPPULLUP_EMIN #endif #ifdef ENDSTOPPULLUPS #define ENDSTOPPULLUP_XMAX #define ENDSTOPPULLUP_YMAX #define ENDSTOPPULLUP_ZMAX #define ENDSTOPPULLUP_XMIN #define ENDSTOPPULLUP_YMIN //#define ENDSTOPPULLUP_ZMIN #define ENDSTOPPULLUP_EMIN #endif
Re: auto livellamento asse Z March 14, 2015 06:14PM |
Registered: 10 years ago Posts: 6,409 |
Quote
MagoKimbra
Il circuito è questo, Il signal va all'ingresso della scheda al posto del classico endstop sul pin Signal (S).
L'unica modifica da fare al firmware è togliere la pullup su Z
//#define ENDSTOPPULLUP_ZMIN
Re: auto livellamento asse Z March 14, 2015 06:51PM |
Registered: 9 years ago Posts: 114 |
Re: auto livellamento asse Z March 15, 2015 06:04AM |
Registered: 10 years ago Posts: 860 |
[/quote]Quote
MagoKimbra
Il circuito è questo, Il signal va all'ingresso della scheda al posto del classico endstop sul pin Signal (S).
L'unica modifica da fare al firmware è togliere la pullup su Z
//#define ENDSTOPPULLUP_ZMIN
Re: auto livellamento asse Z March 15, 2015 09:10AM |
Registered: 10 years ago Posts: 6,409 |
Re: auto livellamento asse Z March 15, 2015 11:39AM |
Registered: 9 years ago Posts: 114 |
Quote
MagoKimbra
Si, però hai spiegato male... LA resistenza di pullup interna al processore fa si che se su quel pin non c'è niente attaccato legge 1 come se ci fossero i 5v, se invece lo porto a massa allora legge 0.
Nel caso di questo sensore, quando no attivo sul signal ho circuito aperto, quindi con la resistenza di pullup attiva il processore rileverebbe 1. Quando il senso
re si attiva tira fuori i 5v e quindi il processore rileva sempre 1, nessun cambio di stato per lui...
const bool Z_MIN_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
Re: auto livellamento asse Z March 15, 2015 03:37PM |
Registered: 10 years ago Posts: 860 |
//#define ENDSTOPPULLUP_ZMIN
const bool Z_MIN_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
Re: auto livellamento asse Z March 15, 2015 04:49PM |
Registered: 9 years ago Posts: 21 |
Re: auto livellamento asse Z March 15, 2015 05:00PM |
Registered: 10 years ago Posts: 6,409 |
Re: auto livellamento asse Z March 15, 2015 06:06PM |
Registered: 9 years ago Posts: 21 |
Re: auto livellamento asse Z March 15, 2015 06:45PM |
Registered: 10 years ago Posts: 860 |
Di niente ognuno da una mano per quello che sa e conosceQuote
Denis83
Ciao a tutti.Ringrazio ancora saviothecnic per l aiuto ed in effetti con le resistenze non e preciso utilizzerò 7805.
Un altra cosa dove trovo un sensore pnp da 5v non li trovo mica.grazie
Re: auto livellamento asse Z March 15, 2015 07:17PM |
Registered: 9 years ago Posts: 114 |
Quote
Denis83
Un altra cosa dove trovo un sensore pnp da 5v non li trovo mica.grazie
Re: auto livellamento asse Z March 15, 2015 07:25PM |
Registered: 10 years ago Posts: 860 |
Re: auto livellamento asse Z March 16, 2015 04:21AM |
Registered: 10 years ago Posts: 73 |
Re: auto livellamento asse Z March 16, 2015 07:33AM |
Registered: 9 years ago Posts: 45 |
Re: auto livellamento asse Z March 16, 2015 07:43AM |
Registered: 10 years ago Posts: 6,409 |
Re: auto livellamento asse Z March 16, 2015 08:12AM |
Registered: 10 years ago Posts: 73 |
Re: auto livellamento asse Z March 16, 2015 09:49AM |
Registered: 9 years ago Posts: 45 |
Re: auto livellamento asse Z March 16, 2015 10:05AM |
Registered: 10 years ago Posts: 73 |
Re: auto livellamento asse Z March 16, 2015 11:52AM |
Registered: 9 years ago Posts: 43 |
Re: auto livellamento asse Z March 16, 2015 01:42PM |
Registered: 10 years ago Posts: 6,409 |
#define min_software_endstops true // If true, axis won't move to coordinates less than HOME_POS.
Quote
superierz
ciao Marck80, ho proprio il problema che non so come posso determinare i miei parametri!
Allora io ho fatto cosi come da guida di MagoKimbra:
decommentato //#define ENABLE_AUTO_BED_LEVELING
#define min_software_endstops true portato a false
Do il comando G28 X0 Y0 e cosi faccio la home di x e y, poi mi sposto manualmente al centro del piatto e comincio a far scendere la Z finchè non tocca il piatto... ma ancor prima di toccare il piatto il sensore lo rileva prima e mi blocca in quel punto la Z! da qui non so + cosa fare!
Re: auto livellamento asse Z March 16, 2015 04:08PM |
Registered: 9 years ago Posts: 21 |
Quote
saviothecnic
Ve lo dicevo che la migliore e più sicura soluzione era usare un 7805
Seconda cosa i 7805 funziona bene se è alimentato da una tensione almeno 3V superiore
Quindi va bene dai 8 a 12V poi se è troppo alta scalda troppo e in quel caso conviene mettere un 78012 e poi in scascata un 7805
nel caso magari alimenti il tutto a 24V
Terzo i prossimetri solitamente sono alimentabili nel rang 6-36V ma iniziano ad andare bene a 12V quindi alimentalo a 12V con con il 7805 hai 5V tranquilli per la logica d'Arduino
Re: auto livellamento asse Z March 16, 2015 04:25PM |
Registered: 9 years ago Posts: 21 |
Re: auto livellamento asse Z March 16, 2015 04:32PM |
Registered: 9 years ago Posts: 45 |
Re: auto livellamento asse Z March 16, 2015 06:16PM |
Registered: 10 years ago Posts: 6,409 |
Re: auto livellamento asse Z March 16, 2015 06:36PM |
Registered: 9 years ago Posts: 21 |