|
Premiers cris de ma pursa April 08, 2012 12:00PM |
Registered: 14 years ago Posts: 38 |
|
Re: Premiers cris de ma pursa April 08, 2012 04:04PM |
Registered: 14 years ago Posts: 153 |

|
Re: Premiers cris de ma pursa April 08, 2012 06:28PM |
Registered: 14 years ago Posts: 38 |
|
Re: Premiers cris de ma pursa April 09, 2012 05:04AM |
Registered: 14 years ago Posts: 153 |
|
Re: Premiers cris de ma pursa April 09, 2012 08:35AM |
Registered: 14 years ago Posts: 38 |
|
Re: Premiers cris de ma pursa April 09, 2012 02:43PM |
Registered: 14 years ago Posts: 153 |
ou préhensible tout court)|
Re: Premiers cris de ma pursa April 09, 2012 03:04PM |
Registered: 14 years ago Posts: 432 |
|
Re: Premiers cris de ma pursa May 05, 2012 07:52AM |
Registered: 14 years ago Posts: 38 |
/***************************************************************************\
* *
* 4. TEMPERATURE SENSORS *
* *
\***************************************************************************/
/**
TEMP_HYSTERESIS: actual temperature must be target +/- hysteresis before target temperature can be achieved.
Unit is degree Celsius.
*/
#define TEMP_HYSTERESIS 20
/**
TEMP_RESIDENCY_TIME: actual temperature must be close to target for this long before target is achieved
temperature is "achieved" for purposes of M109 and friends when actual temperature is within [hysteresis] of target for [residency] seconds
*/
#define TEMP_RESIDENCY_TIME 60
/// which temperature sensors are you using? List every type of sensor you use here once, to enable the appropriate code. Intercom is the gen3-style separate extruder board.
// #define TEMP_MAX6675
#define TEMP_THERMISTOR
// #define TEMP_AD595
// #define TEMP_PT100
// #define TEMP_INTERCOM
// #define TEMP_NONE
/***************************************************************************\
* *
* Define your temperature sensors here. One line for each sensor, only *
* limited by the number of available ATmega pins. *
* *
* For a GEN3 set temp_type to TT_INTERCOM and temp_pin to 0. *
* *
* Types are same as TEMP_ list above - TT_MAX6675, TT_THERMISTOR, TT_AD595, *
* TT_PT100, TT_INTERCOM, TT_NONE. See list in temp.c. *
* *
* The "additional" field is used for TT_THERMISTOR only. It defines the *
* name of the table(s) in ThermistorTable.h to use. Typically, this is *
* THERMISTOR_EXTRUDER for the first or only table, or THERMISTOR_BED for *
* the second table. See also early in ThermistorTable.{single|double}.h. *
* *
\***************************************************************************/
#ifndef DEFINE_TEMP_SENSOR
#define DEFINE_TEMP_SENSOR(...)
#endif
// name type pin additional
DEFINE_TEMP_SENSOR(extruder, TT_THERMISTOR, PINA1, THERMISTOR_EXTRUDER)
DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, PINA2, THERMISTOR_BED)
Edit : J'ai aussi un problème avec les fins de cours (opto), quand ils s'enclenchent, la led s'allume, mais le déplacement continu... Je dois aussi configurer quelque chose ?|
Re: Premiers cris de ma pursa May 09, 2012 07:39AM |
Registered: 14 years ago Posts: 38 |
// ./createTemperatureLookup.py --r0=100000 --t0=25 --r1=0 --r2=4700 --beta=4066 --max-adc=1023 // r0: 100000 // t0: 25 // r1: 0 // r2: 4700 // beta: 4066 // max adc: 1023Après ça je passe à la calibration.