Tri Core Med Print


Octoprint EINRICHTEN


Laden Sie sich das fertige Packet OctoPrint von den folgenden Webseite herunter: http://octoprint.org/download/

Entpacken Sie die Datei und spielen Sie das Image mit einem Programm wie Win .... auf ein SD-Karte.

 

mein-rechner:~ user$ ssh octopi.local -l pi

pi@octopi.local's password: 

 

The programs included with the Debian GNU/Linux system are free software;

the exact distribution terms for each program are described in the

individual files in /usr/share/doc/*/copyright.

 

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent

 

permitted by applicable law.

pi@octopi:~ $ sudo passwd

Enter new UNIX password: 

Retype new UNIX password: 

passwd: password updated successfully

 

pi@octopi:~ $ sudo raspi-config

 

expand the filesystem

 

Welcome to fdisk (util-linux 2.25.2).

Changes will remain in memory only, until you decide to write them.

Be careful before using the write command.

 

Command (m for help): Disk /dev/mmcblk0: 14.5 GiB, 15523119104 bytes, 30318592 sectors

Units: sectors of 1 * 512 = 512 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disklabel type: dos

Disk identifier: 0x6f92008e

 

Device         Boot  Start      End  Sectors  Size Id Type

/dev/mmcblk0p1        8192   131071   122880   60M  c W95 FAT32 (LBA)

 

/dev/mmcblk0p2      131072 30318591 30187520 14.4G 83 Linux

 

OFFSET einstellen


(gemessene Länge/gewünschte Länge) x DELTA_DIAGONAL_ROD Ergebnis (40,35/40)x250= 252,1875mm --> Bauteil war danach 40mm und 40,1mm der unterschied liegt bei mir evtl. noch an den Rods, wahrscheinlich unterschiedliche Längen.

Temperatur FAN2 Einstellen


 

Quellcode für die Temperatur des FAN2 ändern. Öffne die Datei marlin_main.cpp und suche mit STRG+F nach FAN2. Ersetze die Zahl 6 durch die Temperatur bei der FAN2 angehen soll. 

 

void SetUpFAN2_PIN()

{

    SET_OUTPUT(FAN2_PIN);

    WRITE(FAN2_PIN, LOW);  

}

void Fan2Scan()

{

  if(degHotend(0)>30)

  WRITE(FAN2_PIN, HIGH);

  else WRITE(FAN2_PIN, LOW);

}