add ifndef to ensure "tasmota-minimal" still builds

This commit is contained in:
Marcus 2021-01-08 21:57:56 +01:00
parent 405f25db08
commit 02d8715d3d

View File

@ -79,7 +79,10 @@
#define TIMEPROP_RELAYS 1, 2 // which relay to control 1:8 #define TIMEPROP_RELAYS 1, 2 // which relay to control 1:8
* Publish values between 0 and 1 to the topic(s) described above * Publish values between 0 and 1 to the topic(s) described above
\*********************************************************************************************/ *
**/
#define D_CMND_TIMEPROP "timeprop_" #define D_CMND_TIMEPROP "timeprop_"
#define D_CMND_TIMEPROP_SETPOWER "setpower_" // add index no on end (0:8) and data is power 0:1 #define D_CMND_TIMEPROP_SETPOWER "setpower_" // add index no on end (0:8) and data is power 0:1
@ -91,6 +94,7 @@ static Timeprop timeprops[TIMEPROP_NUM_OUTPUTS];
static int relayNos[TIMEPROP_NUM_OUTPUTS] = {TIMEPROP_RELAYS}; static int relayNos[TIMEPROP_NUM_OUTPUTS] = {TIMEPROP_RELAYS};
static long currentRelayStates = 0; // current actual relay states. Bit 0 first relay static long currentRelayStates = 0; // current actual relay states. Bit 0 first relay
#ifndef TIMEPROP_NUM_OUTPUTS #ifndef TIMEPROP_NUM_OUTPUTS
#define TIMEPROP_NUM_OUTPUTS 1 // how many outputs to control (with separate alogorithm for each) #define TIMEPROP_NUM_OUTPUTS 1 // how many outputs to control (with separate alogorithm for each)
#endif #endif
@ -178,6 +182,7 @@ bool TimepropCommand()
char command [CMDSZ]; char command [CMDSZ];
bool serviced = true; bool serviced = true;
uint8_t ua_prefix_len = strlen(D_CMND_TIMEPROP); // to detect prefix of command uint8_t ua_prefix_len = strlen(D_CMND_TIMEPROP); // to detect prefix of command
AddLog_P(LOG_LEVEL_ERROR, PSTR("TRP: Timeprop_Command called"));
/* /*
snprintf_P(log_data, sizeof(log_data), "Command called: " snprintf_P(log_data, sizeof(log_data), "Command called: "
"index: %d data_len: %d payload: %d topic: %s data: %s\n", "index: %d data_len: %d payload: %d topic: %s data: %s\n",