Vai al contenuto

IJNYamato72

Membri
  • Numero contenuti

    13
  • Iscritto

  • Ultima visita

Visite recenti

900 visite nel profilo

Obiettivi di IJNYamato72

Newbie

Newbie (1/14)

1

Reputazione Forum

  1. la metratura e quello che ho messo nel codice Mi piaccerebbe utilizzare 400mt anche se gli metti 999mt la stampante non gli vede ma il software XYZware lo vede che strano....... nel codice che ho condiviso la temperatura dell'estrusore 185° e piatto 60° tu come gli hai impostati ?
  2. mmecher ciao che metratura ti accetta????? che firmware hai della davinci ??? hai la AIO?? come hai fatto il downgrade del firmware....
  3. si e proprio cosi sono andato alla ricerca le temperature ottimali per il PLA e posi gli ho confrontati con quella che usava la davinci e ho provato prima di pubblicare ora ieri ho fatto nuovamente il reset e ho riprovato un altra volta e non ho riscontrato alcun problema e ieri ho ordinato 3 bobine da 1 kg speso 75 euro ma ci ho guadagnato 1.2 kg di filo in più cioè e come aver acquistato altre 2 originali in totale visto che costano 39 euro a cartuccia e come aver preso 6 cartucce per un totale di € 234.- un ben risparmio in tutti gli effetti .... ma la cosa importante che deve essere utilizzata un chip originale PLA perché come già detto ci sono due codici uno che gli dice chi sono e un altro che gli dice come devo lavorare noi andiamo a modificare solo il secondo e il gioco e fatto..... cordialmente ijnyamato72
  4. /* Da Vinci EEPROM update Copyright (C) 2014 by Oliver Fueckert <oliver@voltivo.com> Increment Serial code - contributed by Matt UNI/O Library Copyright (C) 2011 by Stephen Early <steve@greenend.org.uk> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef _NANODEUNIO_LIB_H #define _NANODEUNIO_LIB_H #if ARDUINO >= 100 #include <Arduino.h> // Arduino 1.0 #else #include <WProgram.h> // Arduino 0022 #endif #define NANODE_MAC_DEVICE 0xa0 #define NANODE_MAC_ADDRESS 0xfa #define CODE 0x00 //1 Byte #define MATERIAL 0x02 //1 Byte #define COLOR 0x01 //2 Bytes #define DATE 0x05 //4 Bytes #define TOTALLEN 0x08 //4 Bytes #define NEWLEN 0x0C //4 Bytes #define HEADTEMP 0x10 //2 Bytes #define BEDTEMP 0x12 //2Bytes #define MLOC 0x14 //2 Bytes #define DLOC 0x16 //2 Bytes #define SN 0x18 //12 Bytes #define CRC 0x24 //2 Bytes #define LEN2 0x34 //4 Bytes void IncrementSerial(unsigned char * cArray, long lAddress, long lSize) { unsigned char szTempBuffer[20] = {0}; memcpy(szTempBuffer,&cArray[lAddress],lSize); long lSerial = atol((char *)szTempBuffer); lSerial++; sprintf((char *)szTempBuffer,"%04d",lSerial); memcpy(&cArray[lAddress],szTempBuffer,lSize); } class NanodeUNIO { private: byte addr; public: NanodeUNIO(byte address); boolean read(byte *buffer,word address,word length); boolean start_write(const byte *buffer,word address,word length); boolean enable_write(void); boolean disable_write(void); boolean read_status(byte *status); boolean write_status(byte status); boolean await_write_complete(void); boolean simple_write(const byte *buffer,word address,word length); }; #endif /* _NANODEUNIO_LIB_H */ #define UNIO_STARTHEADER 0x55 #define UNIO_READ 0x03 #define UNIO_CRRD 0x06 #define UNIO_WRITE 0x6c #define UNIO_WREN 0x96 #define UNIO_WRDI 0x91 #define UNIO_RDSR 0x05 #define UNIO_WRSR 0x6e #define UNIO_ERAL 0x6d #define UNIO_SETAL 0x67 #define UNIO_TSTBY 600 #define UNIO_TSS 10 #define UNIO_THDR 5 #define UNIO_QUARTER_BIT 10 #define UNIO_FUDGE_FACTOR 5 #define UNIO_OUTPUT() do { DDRD |= 0x80; } while (0) #define UNIO_INPUT() do { DDRD &= 0x7f; } while (0) static void set_bus(boolean state) { PORTD=(PORTD&0x7f)|(!!state)<<7; } static boolean read_bus(void) { return !!(PIND&0x80); } static void unio_inter_command_gap(void) { set_bus(1); delayMicroseconds(UNIO_TSS+UNIO_FUDGE_FACTOR); } static void unio_standby_pulse(void) { set_bus(0); UNIO_OUTPUT(); delayMicroseconds(UNIO_TSS+UNIO_FUDGE_FACTOR); set_bus(1); delayMicroseconds(UNIO_TSTBY+UNIO_FUDGE_FACTOR); } static volatile boolean rwbit(boolean w) { boolean a,b; set_bus(!w); delayMicroseconds(UNIO_QUARTER_BIT); a=read_bus(); delayMicroseconds(UNIO_QUARTER_BIT); set_bus(w); delayMicroseconds(UNIO_QUARTER_BIT); b=read_bus(); delayMicroseconds(UNIO_QUARTER_BIT); return b&&!a; } static boolean read_bit(void) { boolean b; UNIO_INPUT(); b=rwbit(1); UNIO_OUTPUT(); return b; } static boolean send_byte(byte b, boolean mak) { for (int i=0; i<8; i++) { rwbit(b&0x80); b<<=1; } rwbit(mak); return read_bit(); } static boolean read_byte(byte *b, boolean mak) { byte data=0; UNIO_INPUT(); for (int i=0; i<8; i++) { data = (data << 1) | rwbit(1); } UNIO_OUTPUT(); *b=data; rwbit(mak); return read_bit(); } static boolean unio_send(const byte *data,word length,boolean end) { for (word i=0; i<length; i++) { if (!send_byte(data,!(((i+1)==length) && end))) return false; } return true; } static boolean unio_read(byte *data,word length) { for (word i=0; i<length; i++) { if (!read_byte(data+i,!((i+1)==length))) return false; } return true; } static void unio_start_header(void) { set_bus(0); delayMicroseconds(UNIO_THDR+UNIO_FUDGE_FACTOR); send_byte(UNIO_STARTHEADER,true); } NanodeUNIO::NanodeUNIO(byte address) { addr=address; } #define fail() do { sei(); return false; } while (0) boolean NanodeUNIO::read(byte *buffer,word address,word length) { byte cmd[4]; cmd[0]=addr; cmd[1]=UNIO_READ; cmd[2]=(byte)(address>>8); cmd[3]=(byte)(address&0xff); unio_standby_pulse(); cli(); unio_start_header(); if (!unio_send(cmd,4,false)) fail(); if (!unio_read(buffer,length)) fail(); sei(); return true; } boolean NanodeUNIO::start_write(const byte *buffer,word address,word length) { byte cmd[4]; if (((address&0x0f)+length)>16) return false; // would cross page boundary cmd[0]=addr; cmd[1]=UNIO_WRITE; cmd[2]=(byte)(address>>8); cmd[3]=(byte)(address&0xff); unio_standby_pulse(); cli(); unio_start_header(); if (!unio_send(cmd,4,false)) fail(); if (!unio_send(buffer,length,true)) fail(); sei(); return true; } boolean NanodeUNIO::enable_write(void) { byte cmd[2]; cmd[0]=addr; cmd[1]=UNIO_WREN; unio_standby_pulse(); cli(); unio_start_header(); if (!unio_send(cmd,2,true)) fail(); sei(); return true; } boolean NanodeUNIO::disable_write(void) { byte cmd[2]; cmd[0]=addr; cmd[1]=UNIO_WRDI; unio_standby_pulse(); cli(); unio_start_header(); if (!unio_send(cmd,2,true)) fail(); sei(); return true; } boolean NanodeUNIO::read_status(byte *status) { byte cmd[2]; cmd[0]=addr; cmd[1]=UNIO_RDSR; unio_standby_pulse(); cli(); unio_start_header(); if (!unio_send(cmd,2,false)) fail(); if (!unio_read(status,1)) fail(); sei(); return true; } boolean NanodeUNIO::write_status(byte status) { byte cmd[3]; cmd[0]=addr; cmd[1]=UNIO_WRSR; cmd[2]=status; unio_standby_pulse(); cli(); unio_start_header(); if (!unio_send(cmd,3,true)) fail(); sei(); return true; } boolean NanodeUNIO::await_write_complete(void) { byte cmd[2]; byte status; cmd[0]=addr; cmd[1]=UNIO_RDSR; unio_standby_pulse(); do { unio_inter_command_gap(); cli(); unio_start_header(); if (!unio_send(cmd,2,false)) fail(); if (!unio_read(&status,1)) fail(); sei(); } while (status&0x01); return true; } boolean NanodeUNIO::simple_write(const byte *buffer,word address,word length) { word wlen; while (length>0) { wlen=length; if (((address&0x0f)+wlen)>16) { wlen=16-(address&0x0f); } if (!enable_write()) return false; if (!start_write(buffer,address,wlen)) return false; if (!await_write_complete()) return false; buffer+=wlen; address+=wlen; length-=wlen; } return true; } static void status(boolean r) { if (r) Serial.println("(success)"); else Serial.println("(failure)"); } static void dump_eeprom(word address,word length) { byte buf[128]; char lbuf[80]; char *x; int i,j; NanodeUNIO unio(NANODE_MAC_DEVICE); memset(buf,0,128); status(unio.read(buf,address,length)); for (i=0; i<128; i+=16) { x=lbuf; sprintf(x,"%02X: ",i); x+=4; for (j=0; j<16; j++) { sprintf(x,"%02X",buf[i+j]); x+=2; } *x=32; x+=1; for (j=0; j<16; j++) { if (buf[i+j]>=32 && buf[i+j]<127) *x=buf[i+j]; else *x=46; x++; } *x=0; Serial.println(lbuf); } } int led = 13; /* These are the values to be written to the EEPROM Make sure only one is uncommented. By default its set for the starter PLA cartdridge with 120m of filament Verified with firmware 1.1.I */ // Value to write to the EEPROM for remaining filament lenght // Default Starter Cartdridge is 120m //char x[] = {0xc0,0xd4,0x01,0x00}; //120m char x[] = {0x80,0xa9,0x03,0x00}; //240m //char x[] = {0x80,0x1a,0x06,0x00}; //400m // extruder temp, default is 200 C for PLA char et[] = {0xd2,0x00}; // 185 C //char et[] = {0xe6,0x00}; // 200 C //char et[] = {0xf5,0x00}; // 205 C //char et[] = {0xfa,0x00}; // 210 C // bed temp 60 degrees, default PLA char bt[] = {0x5a,0x00}; byte sr; NanodeUNIO unio(NANODE_MAC_DEVICE); void setup() { Serial.begin(115200); } void loop() { do { digitalWrite(led, LOW); Serial.println("Testing connection to Da Vinci EEPROM CHIP\n"); delay(100); digitalWrite(led, HIGH); } while(!unio.read_status(&sr)); Serial.println("Da Vinci EEPROM found..."); Serial.println("Reading the Davinci EEPROM Contents..."); dump_eeprom(0,128); //dump_eeprom(116,4); //Read the serial number - added by Matt byte buf[20]; memset(buf,0,20); status(unio.read(buf,SN,12)); //Increment the serial number IncrementSerial(&buf[0], 0, 12); Serial.println("Updating EEPROM..."); status(unio.simple_write((const byte *)x,TOTALLEN,4)); status(unio.simple_write((const byte *)x,NEWLEN,4)); status(unio.simple_write((const byte *)et,HEADTEMP,2)); // extruder temp status(unio.simple_write((const byte *)bt,BEDTEMP,2)); // bed temp //Write the serial number status(unio.simple_write((const byte *)buf,SN,12)); //Serial Number status(unio.simple_write((const byte *)x,LEN2,4)); // same block from offset 0 is offset 64 bytes status(unio.simple_write((const byte *)x,64 + TOTALLEN,4)); status(unio.simple_write((const byte *)x,64 + NEWLEN,4)); status(unio.simple_write((const byte *)et,64 + HEADTEMP,2)); // extruder temp status(unio.simple_write((const byte *)bt,64 + BEDTEMP,2)); // bed temp //Write the serial number status(unio.simple_write((const byte *)buf,64 + SN,12)); //Serial Number status(unio.simple_write((const byte *)x,64 + LEN2,4)); Serial.println("Dumping Content after modification..."); dump_eeprom(0,128); digitalWrite(led, HIGH); // turn the LED on delay(10000); // wait for two seconds }
  5. sono riuscito a resettare la cartuccia PLA originale ha 200 metri di filo e poi ne aveva 240 metri provato e testato e funziona tutti potete farlo e semplice: Ho notato che ci sono due codici identificativi per la cartuccia : quello che facciamo e andare a modificare il secondo codice quello che gli va a dire la velocita e la lunghezza del filamento e la temperatura che deve avere l'ugello e il piano. Ecco cosa ho fatto ho modificato quello che sono i parametri di temperatura ugello e piano e sono rimasto sbalordito ho fatto questa stampa e un supporto per un motore per il mio modello di una nave
  6. Vorrei chiedere se per caso sia possibile rendere fisso il piano cosi da non diventare matti con la calibrazione? Sto diventando matto a calibrarequel piano infernale Grazie mille
  7. salve a tutti . mi potete indicarmi dove posso trovare un codice sempre se esite per fare il reset della cartuccia PLA non si trova .... Cosa devo modificare del codice per ABS se voglio utilizzare il PLA visto che utilizzano temperature diversi? ho già resettato quella ABS ma non posso portarla a 400 ho una 1.0aio quale versione dell'firmware devo dowgradare? firmware attuale della stampante e 1.1.5 e possibie sostituire nel codice di reset By default its set for the starter ABS cartdridge with 240m of filament Verified with firmware 1.1.I sostituire con 1.1.5 and Verificato with firmware 1.1. J o sostituire questo by xnotar */ // Value to write to the EEPROM for remaining filament lenght // Default Starter Cartdridge is 120m //char x[] = {0xc0,0xd4,0x01,0x00}; //120m char x[] = {0x80,0xa9,0x03,0x00}; //240m //char x[] = {0x80,0x1a,0x06,0x00}; //400m //char x[] = {0x3f, 0x42, 0x0f, 0x00}; //999m add by xnotar il mio interesse e di utilizzare queste due soluzioni Grazie mille
  8. ciao silvestroZ Per eliminare le righe devi utilizzare dei prodotti per il modellismo io utilizzo mr.hobby primer surfacer lo trovi sia spray che da applicare sui un vecchio pennellino poi una volta che è asciutto lo carteggi con carta vetrata da 800 e poi da 600 quelle che si utilizzano con l'acqua. http://www.ebay.it/itm/GUNZE-SANGYO-MR-HOBBY-MR-SURFACER-1000-/281638647612?pt=LH_DefaultDomain_101&hash=item4192f8b73c http://www.ebay.it/itm/Mr-Hobby-Stucco-spray-finissimo-art-SB506-/151282186054?pt=Utensili_da_Modellismo&hash=item23391ef746 questo e il risultato: Prima E dopo: Qui ho applicato con il pennello perchè avevo finito lo spray.... ma il risultato non cambia.... Ciao cavalieresenzafilo Il spinotto bianco o nero dipende dal modello credo non arriva corrente con il tester ho provato direttamente dalla mainboard staccando il conettore e misurando quando si fà load filament o upload filament dovrebbe passare 12V quindi penso che sia innutile tagliare e collegare direttamente, non credi anche tu? e poi visto che è in garanzia non vorrei danneggiare o modificare in alcun modo la stampante.
  9. io con la mia non ho avvuto questo tipo di problema ho scansionato il faro di prova e risultato e stato molto positivo il problama credo sia sulla calibrazione e di averlo fatto in un ambiente buio ho notato che viene facilmente influenzato dalla luce esterna. attualmente ho un problema diverso acquistato un mese fà oggi dopo 119 ore di lavoro non si riscalda piu il la testa dell'estrusore con il tester ho misurato e non mi da nessuna tensione ho aperto il panello posteriore e ho misurato anche li e non c'è tensione spero che non sia la scheda madre perchè se lo fosse non dovrebbe funzionare niente nemmeno lo scanner il bello che funziona tutto. Qualcuno di voi ha gia avvuto un problema del genere? e come ha risolto? Vi ringrazio moltissimo IJNyamato72
  10. salve a tutti Sono il possesore di una davinci aio acquistato un mese fà. Il problema che invece ho riscontrato e simile al B1BB1 confermo il tuo secondo problema e capitato anche a me ma non con stampe lunghe ma pe soli 20 min stampando due pezzi che erano due piedini della tastiera una e risultato perfetto il secondo invece si era leggermante rialzato e desformanto dopo di questo il problema piu serio e che dopo questa stampa pulito il piano e preparato il secondo lavoro e solo dopo 119 ore di lavoro ha smesso di riscaldare e da quello che ho riscontrato e testato con il tester non arriva corente al riscaldatore ho aperto il panello posteriore e ho misurato anche li e non c'è tensione non dovrebbe essere la scheda madre perche se lo fosse non dovrebbe funzionare niente nemmeno lo scanner il bello che funziona tutto. Qualcuno di voi ha gia avvuto un problema del genere? Vi ringrazio moltissimo
  11. IJNYamato72

    salve a tutti

    Ciao a tutto il Forum Sono nuovo dell'ambiente, Ho acquistato una davinci 1.0 Aio e volevo capiere nel meglio alcuni trucchi per migliorare i miei risultati hobbistici. Sono un modellista che realizza parti o interi modelli in 3D, attualmente e in fase di costruzione il modello in scala 1/72 della corazzata yamato. Saluti e Buona Pasqua.
×
×
  • Crea Nuovo...