-
Notifications
You must be signed in to change notification settings - Fork 15
/
homeGW.cpp
101 lines (77 loc) · 2.11 KB
/
homeGW.cpp
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
/*
Written by Diogo Gomes, diogogomes@gmail.com
Copyright (c) 2014 Diogo Gomes. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <homeGW.h>
#if defined(ESP8266)
#define ISR_PREFIX ICACHE_RAM_ATTR
#elif defined(ESP32)
#define ISR_PREFIX IRAM_ATTR
#else
#define ISR_PREFIX
#endif
Plugin **HomeGW::plugin;
uint8_t HomeGW::MAX_PLUGINS;
HomeGW::HomeGW(uint8_t max_plugins) {
MAX_PLUGINS = max_plugins;
plugin = new Plugin*[MAX_PLUGINS];
for(int i=0; i<MAX_PLUGINS; i++)
plugin[i] = NULL;
}
HomeGW::~HomeGW() {
delete HomeGW::plugin;
}
void HomeGW::registerPlugin(Plugin *p) {
for(int i=0; i<MAX_PLUGINS; i++) {
if(plugin[i] == NULL) {
plugin[i] = p;
return;
}
}
}
bool HomeGW::setup(uint8_t pin) {
bool isESP = false;
#if defined(ESP8266) || defined(ESP32)
isESP = true;
#endif
if (!isESP && (!(pin == 3 || pin == 2)))
{
return false;
}
HomeGW::pin = pin;
pinMode(pin, INPUT);
digitalWrite(pin, LOW);
uint8_t interuptPin;
if (!isESP)
{
interuptPin = pin - 2;
}
else
{
interuptPin = pin;
}
attachInterrupt(interuptPin, HomeGW::handleInterrupt, CHANGE); // 1 = PIN3
return true;
}
ISR_PREFIX void HomeGW::handleInterrupt() {
static unsigned long lastTime;
long time = micros();
unsigned int duration = time - lastTime;
for(int i=0; i<MAX_PLUGINS; i++) {
if(plugin != NULL) {
plugin[i]->detectPacket(duration, plugin[i]);
}
}
lastTime = time;
}