-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOvenConfig.h
More file actions
64 lines (46 loc) · 889 Bytes
/
OvenConfig.h
File metadata and controls
64 lines (46 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
// Created by coles on 3/11/2025.
//
#ifndef OVENCONFIG_H
#define OVENCONFIG_H
#ifndef PID_KP
#define PID_KP 0.08
#endif
#ifndef PID_KI
#define PID_KI 0.0
#endif
#ifndef PID_KD
#define PID_KD 0.0
#endif
#ifndef PID_DELTA
#define PID_DELTA 5.0
#endif
// max amount of time heating element can stay on, 1.0 is always on
#ifndef MAX_DUTY_CYCLE
#define MAX_DUTY_CYCLE (0.8f)
#endif
// 100 degrees c is 212 degrees f
#ifndef PREHEAT_TEMP
#define PREHEAT_TEMP 100
#endif
// time is in minutes
#ifndef PREHEAT_TIME
#define PREHEAT_TIME (5)
#endif
// 140 degrees c is 284 degrees f
#ifndef CURE_TEMP
#define CURE_TEMP 140
#endif
// time is in minutes
#ifndef CURE_TIME
#define CURE_TIME (250)
#endif
// 100 degrees c is 212 degrees f
#ifndef DWELL_TEMP
#define DWELL_TEMP 100
#endif
// time is in minutes
#ifndef DWELL_TIME
#define DWELL_TIME (20)
#endif
#endif //OVENCONFIG_H