Browse Source

relay: proxy header defaults through methods

master
Maxim Prokhorov 5 years ago
parent
commit
5e74adb23e
2 changed files with 119 additions and 42 deletions
  1. +46
    -42
      code/espurna/relay.ino
  2. +73
    -0
      code/espurna/relay_config.h

+ 46
- 42
code/espurna/relay.ino View File

@ -17,7 +17,25 @@ Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
#include "broker.h" #include "broker.h"
#include "tuya.h" #include "tuya.h"
typedef struct {
#include "relay_config.h"
struct relay_t {
// Default to dummy (virtual) relay configuration
relay_t() :
pin(GPIO_NONE),
type(GPIO_NONE),
reset_pin(GPIO_NONE)
{}
// ... unless there are pre-configured values
relay_t(unsigned char id) :
pin(_relayPin(id)),
type(_relayType(id)),
reset_pin(_relayResetPin(id))
{}
// Configuration variables // Configuration variables
@ -45,7 +63,7 @@ typedef struct {
Ticker pulseTicker; // Holds the pulse back timer Ticker pulseTicker; // Holds the pulse back timer
} relay_t;
};
std::vector<relay_t> _relays; std::vector<relay_t> _relays;
bool _relayRecursive = false; bool _relayRecursive = false;
@ -775,32 +793,6 @@ void _relayBoot() {
} }
constexpr const unsigned long _relayDelayOn(unsigned char index) {
return (
(index == 0) ? RELAY1_DELAY_ON :
(index == 1) ? RELAY2_DELAY_ON :
(index == 2) ? RELAY3_DELAY_ON :
(index == 3) ? RELAY4_DELAY_ON :
(index == 4) ? RELAY5_DELAY_ON :
(index == 5) ? RELAY6_DELAY_ON :
(index == 6) ? RELAY7_DELAY_ON :
(index == 7) ? RELAY8_DELAY_ON : 0
);
}
constexpr const unsigned long _relayDelayOff(unsigned char index) {
return (
(index == 0) ? RELAY1_DELAY_OFF :
(index == 1) ? RELAY2_DELAY_OFF :
(index == 2) ? RELAY3_DELAY_OFF :
(index == 3) ? RELAY4_DELAY_OFF :
(index == 4) ? RELAY5_DELAY_OFF :
(index == 5) ? RELAY6_DELAY_OFF :
(index == 6) ? RELAY7_DELAY_OFF :
(index == 7) ? RELAY8_DELAY_OFF : 0
);
}
void _relayConfigure() { void _relayConfigure() {
for (unsigned int i=0; i<_relays.size(); i++) { for (unsigned int i=0; i<_relays.size(); i++) {
_relays[i].pulse = getSetting("relayPulse", i, RELAY_PULSE_MODE).toInt(); _relays[i].pulse = getSetting("relayPulse", i, RELAY_PULSE_MODE).toInt();
@ -1362,11 +1354,9 @@ void relaySetupDummy(unsigned char size, bool reconfigure) {
size = constrain(size + _relays.size(), _relays.size(), RELAYS_MAX); size = constrain(size + _relays.size(), _relays.size(), RELAYS_MAX);
if (size == _relays.size()) return; if (size == _relays.size()) return;
_relayDummy = size;
_relays.insert(_relays.end(), size, {
GPIO_NONE, RELAY_TYPE_NORMAL, GPIO_NONE
});
_relayDummy = size;
_relays.resize(size);
if (reconfigure) { if (reconfigure) {
_relayConfigure(); _relayConfigure();
@ -1378,34 +1368,48 @@ void relaySetupDummy(unsigned char size, bool reconfigure) {
} }
void relaySetup() {
void _relaySetupAdhoc() {
size_t relays = 0;
// Ad-hoc relays
#if RELAY1_PIN != GPIO_NONE #if RELAY1_PIN != GPIO_NONE
_relays.push_back((relay_t) { RELAY1_PIN, RELAY1_TYPE, RELAY1_RESET_PIN });
++relays;
#endif #endif
#if RELAY2_PIN != GPIO_NONE #if RELAY2_PIN != GPIO_NONE
_relays.push_back((relay_t) { RELAY2_PIN, RELAY2_TYPE, RELAY2_RESET_PIN });
++relays;
#endif #endif
#if RELAY3_PIN != GPIO_NONE #if RELAY3_PIN != GPIO_NONE
_relays.push_back((relay_t) { RELAY3_PIN, RELAY3_TYPE, RELAY3_RESET_PIN });
++relays;
#endif #endif
#if RELAY4_PIN != GPIO_NONE #if RELAY4_PIN != GPIO_NONE
_relays.push_back((relay_t) { RELAY4_PIN, RELAY4_TYPE, RELAY4_RESET_PIN });
++relays;
#endif #endif
#if RELAY5_PIN != GPIO_NONE #if RELAY5_PIN != GPIO_NONE
_relays.push_back((relay_t) { RELAY5_PIN, RELAY5_TYPE, RELAY5_RESET_PIN });
++relays;
#endif #endif
#if RELAY6_PIN != GPIO_NONE #if RELAY6_PIN != GPIO_NONE
_relays.push_back((relay_t) { RELAY6_PIN, RELAY6_TYPE, RELAY6_RESET_PIN });
++relays;
#endif #endif
#if RELAY7_PIN != GPIO_NONE #if RELAY7_PIN != GPIO_NONE
_relays.push_back((relay_t) { RELAY7_PIN, RELAY7_TYPE, RELAY7_RESET_PIN });
++relays;
#endif #endif
#if RELAY8_PIN != GPIO_NONE #if RELAY8_PIN != GPIO_NONE
_relays.push_back((relay_t) { RELAY8_PIN, RELAY8_TYPE, RELAY8_RESET_PIN });
++relays;
#endif #endif
_relays.reserve(relays);
for (unsigned char id = 0; id < relays; ++id) {
_relays.emplace_back(id);
}
}
void relaySetup() {
// Ad-hoc relays
_relaySetupAdhoc();
// Dummy (virtual) relays
relaySetupDummy(getSetting("relayDummy", DUMMY_RELAY_COUNT).toInt()); relaySetupDummy(getSetting("relayDummy", DUMMY_RELAY_COUNT).toInt());
_relaySetupProvider(); _relaySetupProvider();


+ 73
- 0
code/espurna/relay_config.h View File

@ -0,0 +1,73 @@
/*
RELAY MODULE
*/
#pragma once
constexpr const unsigned long _relayDelayOn(unsigned char index) {
return (
(index == 0) ? RELAY1_DELAY_ON :
(index == 1) ? RELAY2_DELAY_ON :
(index == 2) ? RELAY3_DELAY_ON :
(index == 3) ? RELAY4_DELAY_ON :
(index == 4) ? RELAY5_DELAY_ON :
(index == 5) ? RELAY6_DELAY_ON :
(index == 6) ? RELAY7_DELAY_ON :
(index == 7) ? RELAY8_DELAY_ON : 0
);
}
constexpr const unsigned long _relayDelayOff(unsigned char index) {
return (
(index == 0) ? RELAY1_DELAY_OFF :
(index == 1) ? RELAY2_DELAY_OFF :
(index == 2) ? RELAY3_DELAY_OFF :
(index == 3) ? RELAY4_DELAY_OFF :
(index == 4) ? RELAY5_DELAY_OFF :
(index == 5) ? RELAY6_DELAY_OFF :
(index == 6) ? RELAY7_DELAY_OFF :
(index == 7) ? RELAY8_DELAY_OFF : 0
);
}
constexpr const unsigned char _relayPin(unsigned char index) {
return (
(index == 0) ? RELAY1_PIN :
(index == 1) ? RELAY2_PIN :
(index == 2) ? RELAY3_PIN :
(index == 3) ? RELAY4_PIN :
(index == 4) ? RELAY5_PIN :
(index == 5) ? RELAY6_PIN :
(index == 6) ? RELAY7_PIN :
(index == 7) ? RELAY8_PIN : GPIO_NONE
);
}
constexpr const unsigned char _relayType(unsigned char index) {
return (
(index == 0) ? RELAY1_TYPE :
(index == 1) ? RELAY2_TYPE :
(index == 2) ? RELAY3_TYPE :
(index == 3) ? RELAY4_TYPE :
(index == 4) ? RELAY5_TYPE :
(index == 5) ? RELAY6_TYPE :
(index == 6) ? RELAY7_TYPE :
(index == 7) ? RELAY8_TYPE : RELAY_TYPE_NORMAL
);
}
constexpr const unsigned char _relayResetPin(unsigned char index) {
return (
(index == 0) ? RELAY1_RESET_PIN :
(index == 1) ? RELAY2_RESET_PIN :
(index == 2) ? RELAY3_RESET_PIN :
(index == 3) ? RELAY4_RESET_PIN :
(index == 4) ? RELAY5_RESET_PIN :
(index == 5) ? RELAY6_RESET_PIN :
(index == 6) ? RELAY7_RESET_PIN :
(index == 7) ? RELAY8_RESET_PIN : GPIO_NONE
);
}

Loading…
Cancel
Save