Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
DEFAULT_CONFIG PROGMEM =
{
EEPROM_MAGIC, // magic
225, // setpoint
6, // lid open offset %
240, // lid open duration
{ 4.0f, 3.0f, 0.01f, 5.0f }, // PID constants
false, // manual mode
100, // max fan speed
'F'
};
// EEPROM address of the start of the probe structs, the 2 bytes before are magic
#define EEPROM_PROBE_START 64
static const struct __eeprom_probe DEFAULT_PROBE_CONFIG PROGMEM = {
"p", // Name if you change this change the hardcoded number-appender in eepromLoadProbeConfig()
PROBETYPE_INTERNAL, // probeType
0, // offset
-40, // alarm low
-200, // alarm high
0, // unussed1
0, // unussed2
{
//2.3067434e-4,2.3696596e-4,1.2636414e-7 // Maverick ET-72
5.36924e-4,1.91396e-4,6.60399e-8 // Maverick ET-732 (Honeywell R-T Curve 4)
//8.98053228e-4,2.49263324e-4,2.04047542e-7 // Radio Shack 10k
//1.14061e-3,2.32134e-4,9.63666e-8 // Vishay 10k NTCLE203E3103FB0
//4.37E-04, 0.000258396, 9.06E-08 //ikea fantast
,1.0e+4
}
};