forked from tretyakovsa/Sonoff_WiFi_switch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvent.ino
115 lines (105 loc) · 3.27 KB
/
Event.ino
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// ----------------- Аналоговый вход A0
void initA0() {
HTTP.on("/analog.json", HTTP_GET, []() {
HTTP.send(200, "text/json", graf(analogRead(A0), 10, 3000, "low:0"));
});
modulesReg("analog");
}
// ----------------- Кнопка GPIO 0
void initTach() {
// Кнопка будет работать по прерыванию
uint8_t TACH_PIN = 0;
attachInterrupt(TACH_PIN, Tach_0, RISING); //прерывание сработает, когда состояние вывода изменится с низкого уровня на высокий
configJson = jsonWrite(configJson, "TachCommand", readArgsString());
}
// Выполняется при нажатии на кнопку
void Tach_0() {
static unsigned long millis_prev;
// Устроняем дребезг контакта
if (millis() - 500 > millis_prev) {
command = jsonRead(configJson, "TachCommand");
}
millis_prev = millis();
}
// ----------------- Движение
void initMotion() {
int pin = readArgsInt();
pinMode(pin, INPUT);
attachInterrupt(pin, motionOn, RISING); //прерывание сработает, когда состояние вывода изменится с низкого уровня на высокий
String cmd = readArgsString();
configJson = jsonWrite(configJson, "Command", cmd);
modulesReg("movement");
}
void motionOn() {
motion.attach(120, motionOff);
command = jsonRead(configJson, "Command")+"on";
}
void motionOff() {
motion.detach();
command = jsonRead(configJson, "Command")+"off";
}
// ----------------- DHT
void initDHT() {
dht.setup(readArgsInt());
//delay(dht.getMinimumSamplingPeriod());
delay (1000);
String temp = "";
temp += dht.getTemperature();
if (temp != "nan") {
//Serial.println("ok");
HTTP.on("/sensor.json", HTTP_GET, []() {
float temp = dht.getTemperature();
if (temp == 'NaN') {
temp = 0;
}
HTTP.send(200, "text/json", graf(temp, 10, 3000,"low:0"));
});
modulesReg("temperature");
}
}
// ---------- initD18B20
void initD18B20() {
pinMode(d18b20PIN, INPUT_PULLUP);
d18b20.begin();
d18b20.requestTemperatures();
float ok = d18b20.getTempCByIndex(0);
d18b20.setResolution(12);
//Serial.println(ok);
if (ok != -127) {
HTTP.on("/sensor.json", HTTP_GET, []() {
d18b20.requestTemperatures();
float temp = d18b20.getTempCByIndex(0);
if (temp == -127) {
temp = 0;
}
HTTP.send(200, "text/json", graf(temp, 10, 3000));
});
modulesReg("temperature");
}
}
// ----------------------Приемник на 433мГ
void initRCSwitch() {
byte pin = readArgsInt();
if (pin == 1 || pin == 3) Serial.end();
mySwitch.enableReceive(pin);
//Serial.print("initRCSwitch ");
// задача опрашивать RC код
ts.add(3, 100, [&](void*) {
RCRCreceiv();
}, nullptr, true);
modulesReg("RCreceivi");
}
void RCRCreceiv() {
if (mySwitch.available()) {
int value = mySwitch.getReceivedValue();
if (value == 0) {
configJson = jsonWrite(configJson, "Received", 0);
} else {
int codeRC = mySwitch.getReceivedValue();
//Serial.print("Received ");
//Serial.println(codeRC);
configJson = jsonWrite(configJson, "Received", codeRC);
}
mySwitch.resetAvailable();
}
}