2017-11-03 17:07:25 +00:00
|
|
|
/*
|
2018-01-24 16:31:20 +00:00
|
|
|
xsns_interface.ino - Sensor interface support for Sonoff-Tasmota
|
2017-11-03 17:07:25 +00:00
|
|
|
|
2017-12-22 13:55:24 +00:00
|
|
|
Copyright (C) 2018 Theo Arends inspired by ESPEasy
|
2017-11-03 17:07:25 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-11-07 10:57:28 +00:00
|
|
|
#ifdef XFUNC_PTR_IN_ROM
|
2018-01-24 16:31:20 +00:00
|
|
|
boolean (* const xsns_func_ptr[])(byte) PROGMEM = { // Sensor Function Pointers for simple implementation of sensors
|
2018-11-07 10:38:24 +00:00
|
|
|
#else
|
|
|
|
boolean (* const xsns_func_ptr[])(byte) = { // Sensor Function Pointers for simple implementation of sensors
|
|
|
|
#endif
|
2018-11-07 10:57:28 +00:00
|
|
|
|
2017-11-03 17:07:25 +00:00
|
|
|
#ifdef XSNS_01
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns01,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_02
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns02,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_03
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns03,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_04
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns04,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_05
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns05,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_06
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns06,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_07
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns07,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_08
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns08,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_09
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns09,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_10
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns10,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_11
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns11,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_12
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns12,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_13
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns13,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_14
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns14,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_15
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns15,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_16
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns16,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_17
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns17,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_18
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns18,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_19
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns19,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_20
|
2018-01-24 16:31:20 +00:00
|
|
|
&Xsns20,
|
2017-11-03 17:07:25 +00:00
|
|
|
#endif
|
2018-02-08 14:20:03 +00:00
|
|
|
|
|
|
|
#ifdef XSNS_21
|
|
|
|
&Xsns21,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_22
|
|
|
|
&Xsns22,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_23
|
|
|
|
&Xsns23,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_24
|
|
|
|
&Xsns24,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_25
|
|
|
|
&Xsns25,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_26
|
|
|
|
&Xsns26,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_27
|
|
|
|
&Xsns27,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_28
|
|
|
|
&Xsns28,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_29
|
|
|
|
&Xsns29,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_30
|
|
|
|
&Xsns30,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_31
|
|
|
|
&Xsns31,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_32
|
|
|
|
&Xsns32,
|
|
|
|
#endif
|
|
|
|
|
2018-07-11 13:21:11 +01:00
|
|
|
#ifdef XSNS_33
|
|
|
|
&Xsns33,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_34
|
|
|
|
&Xsns34,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_35
|
|
|
|
&Xsns35,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_36
|
|
|
|
&Xsns36,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_37
|
|
|
|
&Xsns37,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_38
|
|
|
|
&Xsns38,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_39
|
|
|
|
&Xsns39,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_40
|
|
|
|
&Xsns40,
|
|
|
|
#endif
|
|
|
|
|
2018-10-23 15:03:57 +01:00
|
|
|
#ifdef XSNS_41
|
|
|
|
&Xsns41,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_42
|
|
|
|
&Xsns42,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_43
|
|
|
|
&Xsns43,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_44
|
|
|
|
&Xsns44,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_45
|
|
|
|
&Xsns45,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_46
|
|
|
|
&Xsns46,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_47
|
|
|
|
&Xsns47,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_48
|
|
|
|
&Xsns48,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_49
|
|
|
|
&Xsns49,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_50
|
|
|
|
&Xsns50,
|
|
|
|
#endif
|
|
|
|
|
2018-02-08 14:20:03 +00:00
|
|
|
// Optional user defined sensors in range 91 - 99
|
|
|
|
|
|
|
|
#ifdef XSNS_91
|
|
|
|
&Xsns91,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_92
|
|
|
|
&Xsns92,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_93
|
|
|
|
&Xsns93,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_94
|
|
|
|
&Xsns94,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_95
|
|
|
|
&Xsns95,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_96
|
|
|
|
&Xsns96,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_97
|
|
|
|
&Xsns97,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_98
|
|
|
|
&Xsns98,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XSNS_99
|
|
|
|
&Xsns99
|
|
|
|
#endif
|
2018-01-24 16:31:20 +00:00
|
|
|
};
|
2017-11-03 17:07:25 +00:00
|
|
|
|
2018-01-24 16:31:20 +00:00
|
|
|
const uint8_t xsns_present = sizeof(xsns_func_ptr) / sizeof(xsns_func_ptr[0]); // Number of External Sensors found
|
2017-11-03 17:07:25 +00:00
|
|
|
|
|
|
|
/*********************************************************************************************\
|
2017-11-07 14:57:24 +00:00
|
|
|
* Function call to all xsns
|
2017-11-03 17:07:25 +00:00
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2018-11-18 14:33:13 +00:00
|
|
|
boolean XsnsNextCall(byte Function, uint8_t &xsns_index)
|
2018-04-12 13:01:43 +01:00
|
|
|
{
|
|
|
|
xsns_index++;
|
2018-11-06 16:33:51 +00:00
|
|
|
if (xsns_index == xsns_present) { xsns_index = 0; }
|
2018-11-18 14:02:52 +00:00
|
|
|
#ifdef USE_DEBUG_DRIVER
|
2018-11-06 16:33:51 +00:00
|
|
|
while (!XsnsEnabled(xsns_index) && !xsns_index) { // Perform at least first sensor (counter)
|
|
|
|
xsns_index++;
|
|
|
|
if (xsns_index == xsns_present) { xsns_index = 0; }
|
|
|
|
}
|
2018-11-18 14:02:52 +00:00
|
|
|
#endif
|
2018-11-24 16:22:06 +00:00
|
|
|
// WifiAddDelayWhenDisconnected();
|
2018-04-12 13:01:43 +01:00
|
|
|
return xsns_func_ptr[xsns_index](Function);
|
|
|
|
}
|
|
|
|
|
2017-11-03 17:07:25 +00:00
|
|
|
boolean XsnsCall(byte Function)
|
|
|
|
{
|
|
|
|
boolean result = false;
|
|
|
|
|
2018-07-12 11:19:08 +01:00
|
|
|
#ifdef PROFILE_XSNS_EVERY_SECOND
|
|
|
|
uint32_t profile_start_millis = millis();
|
|
|
|
#endif // PROFILE_XSNS_EVERY_SECOND
|
|
|
|
|
2018-01-05 11:26:19 +00:00
|
|
|
for (byte x = 0; x < xsns_present; x++) {
|
2018-11-18 14:02:52 +00:00
|
|
|
#ifdef USE_DEBUG_DRIVER
|
2018-11-06 16:33:51 +00:00
|
|
|
if (XsnsEnabled(x)) {
|
2018-11-18 14:02:52 +00:00
|
|
|
#endif
|
2018-07-12 11:19:08 +01:00
|
|
|
|
|
|
|
#ifdef PROFILE_XSNS_SENSOR_EVERY_SECOND
|
2018-11-06 16:33:51 +00:00
|
|
|
uint32_t profile_start_millis = millis();
|
2018-07-12 11:19:08 +01:00
|
|
|
#endif // PROFILE_XSNS_SENSOR_EVERY_SECOND
|
2018-11-24 16:22:06 +00:00
|
|
|
// WifiAddDelayWhenDisconnected();
|
2018-11-06 16:33:51 +00:00
|
|
|
result = xsns_func_ptr[x](Function);
|
2018-07-12 11:19:08 +01:00
|
|
|
|
|
|
|
#ifdef PROFILE_XSNS_SENSOR_EVERY_SECOND
|
2018-11-06 16:33:51 +00:00
|
|
|
uint32_t profile_millis = millis() - profile_start_millis;
|
|
|
|
if (profile_millis) {
|
|
|
|
if (FUNC_EVERY_SECOND == Function) {
|
|
|
|
snprintf_P(log_data, sizeof(log_data), PSTR("PRF: At %08u XsnsCall %d to Sensor %d took %u mS"), uptime, Function, x, profile_millis);
|
|
|
|
AddLog(LOG_LEVEL_DEBUG);
|
|
|
|
}
|
2018-10-31 18:07:27 +00:00
|
|
|
}
|
2018-07-12 11:19:08 +01:00
|
|
|
#endif // PROFILE_XSNS_SENSOR_EVERY_SECOND
|
|
|
|
|
2018-11-06 16:33:51 +00:00
|
|
|
if (result) break;
|
2018-11-18 14:02:52 +00:00
|
|
|
#ifdef USE_DEBUG_DRIVER
|
2018-11-06 16:33:51 +00:00
|
|
|
}
|
2018-11-18 14:02:52 +00:00
|
|
|
#endif
|
2017-11-03 17:07:25 +00:00
|
|
|
}
|
2017-11-07 14:57:24 +00:00
|
|
|
|
2018-07-12 11:19:08 +01:00
|
|
|
#ifdef PROFILE_XSNS_EVERY_SECOND
|
|
|
|
uint32_t profile_millis = millis() - profile_start_millis;
|
|
|
|
if (profile_millis) {
|
|
|
|
if (FUNC_EVERY_SECOND == Function) {
|
|
|
|
snprintf_P(log_data, sizeof(log_data), PSTR("PRF: At %08u XsnsCall %d took %u mS"), uptime, Function, profile_millis);
|
|
|
|
AddLog(LOG_LEVEL_DEBUG);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // PROFILE_XSNS_EVERY_SECOND
|
|
|
|
|
2017-11-03 17:07:25 +00:00
|
|
|
return result;
|
|
|
|
}
|