Prusa Mendel: Difference between revisions
Jump to navigation
Jump to search
Andronicus (talk | contribs) No edit summary |
Andronicus (talk | contribs) |
||
Line 12: | Line 12: | ||
* Hot-End: Thermistor 100K B57560G104F http://ultimachine.com/content/thermistor-100k http://reprap.org/wiki/Thermistor#EPCOS_100K_Thermistor_.28B57560G1104F.29 | * Hot-End: Thermistor 100K B57560G104F http://ultimachine.com/content/thermistor-100k http://reprap.org/wiki/Thermistor#EPCOS_100K_Thermistor_.28B57560G1104F.29 | ||
* Heated Bed: Thermistor 100K B57560G104F | * Heated Bed: Thermistor 100K B57560G104F | ||
{| border="1" | |||
|'''Supplier''' | |||
|'''Part Number''' | |||
|- | |||
|Farnell | |||
|1791917 | |||
|- | |||
|Mouser | |||
|871-B57560G1104F000 | |||
|} | |||
<pre> | |||
// EPCOS 100K Thermistor (B57560G1104F) | |||
// Made with createTemperatureLookup.py (http://svn.reprap.org/trunk/reprap/firmware/Arduino/utilities/createTemperatureLookup.py) | |||
// ./createTemperatureLookup.py --r0=100000 --t0=25 --r1=0 --r2=4700 --beta=4092 --max-adc=1023 | |||
// r0: 100000 | |||
// t0: 25 | |||
// r1: 0 | |||
// r2: 4700 | |||
// beta: 4092 | |||
// max adc: 1023 | |||
#define NUMTEMPS 20 | |||
short temptable[NUMTEMPS][2] = { | |||
{1, 821}, | |||
{54, 252}, | |||
{107, 207}, | |||
{160, 182}, | |||
{213, 165}, | |||
{266, 152}, | |||
{319, 141}, | |||
{372, 131}, | |||
{425, 123}, | |||
{478, 115}, | |||
{531, 107}, | |||
{584, 100}, | |||
{637, 93}, | |||
{690, 86}, | |||
{743, 78}, | |||
{796, 70}, | |||
{849, 60}, | |||
{902, 49}, | |||
{955, 34}, | |||
{1008, 3} | |||
}; | |||
</pre> | |||
<br clear="all"/> | |||
===Firmware=== | ===Firmware=== |
Revision as of 16:49, 21 October 2012
Setup
Hardware
- Printed Parts https://github.com/josefprusa/PrusaMendel/tree/master/metric-prusa-lm8uu
- RAMPS http://reprap.org/wiki/RAMPS_1.4
Hot-End
- J Head Mk IV-B http://reprap.org/wiki/J_Head_Nozzle
Heated Bed
Temperature Sensors
- Hot-End: Thermistor 100K B57560G104F http://ultimachine.com/content/thermistor-100k http://reprap.org/wiki/Thermistor#EPCOS_100K_Thermistor_.28B57560G1104F.29
- Heated Bed: Thermistor 100K B57560G104F
Supplier | Part Number |
Farnell | 1791917 |
Mouser | 871-B57560G1104F000 |
// EPCOS 100K Thermistor (B57560G1104F) // Made with createTemperatureLookup.py (http://svn.reprap.org/trunk/reprap/firmware/Arduino/utilities/createTemperatureLookup.py) // ./createTemperatureLookup.py --r0=100000 --t0=25 --r1=0 --r2=4700 --beta=4092 --max-adc=1023 // r0: 100000 // t0: 25 // r1: 0 // r2: 4700 // beta: 4092 // max adc: 1023 #define NUMTEMPS 20 short temptable[NUMTEMPS][2] = { {1, 821}, {54, 252}, {107, 207}, {160, 182}, {213, 165}, {266, 152}, {319, 141}, {372, 131}, {425, 123}, {478, 115}, {531, 107}, {584, 100}, {637, 93}, {690, 86}, {743, 78}, {796, 70}, {849, 60}, {902, 49}, {955, 34}, {1008, 3} };
Firmware
Software
- Printrun https://github.com/kliment/Printrun
- Slic3r http://slic3r.org/
- OpenSCAD http://www.openscad.org/