-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask_Fkt.ino
More file actions
52 lines (32 loc) · 1020 Bytes
/
Task_Fkt.ino
File metadata and controls
52 lines (32 loc) · 1020 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
// diverse Funktionen in engem und weitem Zusammenhang mit Tasks
void tDis_Macro() {
}
bool tEn_Macro() {
return true;
}
void tf_Macro() {
}
void tf_Temp() {
}
void tf_Press_disable() {
}
void tf_Press() {
}
void tf_H2t() {
}
void tf_blink() {
}
//-------------------------------------------------------------------------
// Task für die Abarbeitung der EIN/AUS/NOT-AUS Schaltzustände vorbereiten
//-------------------------------------------------------------------------
void Prepare_Task_stask() {
//stPWR.setWaiting(); // set the statusrequest object for waiting
//stask.waitFor(&stPWR); // task stask wait on the object st
}
//-------------------------------------
// Task für EIN/AUS/NOT-AUS ARBEIT
//-------------------------------------
void sfunc(){
// RunMacro( sfuncMacroNr, 0, 0, 0, 0, 0); // das entsprechende Makro starten
Prepare_Task_stask(); // damit hört der Task erneut auf ein stPWR.signalComplete()
}