Button pin provider & runtime settings (#2162)
* wip
* cleanup buttons-through-serial code, remove hw mention from button module
* remove wip
* implement mqtt settings
* fixup struct members, dual no longer allocates debouncer
* add missing debounceevent lib
* fix missing event_handler, update names
* fix namespace
* drop lib
* fix int<->bool comparison
* Move gpio16 handling from DigitalPin to EventHandler
* Cleanup debounceevent headers
* Don't expect system headers to be included
* re 70b54c489f - no allocation, for real
* Adjust settings names
* dont retain by default
* unused
* typo
* Fix length type (ref 6017ad9474c5ea2f77fbca5f3c19b6cef058b2e9)
* Move pin class outside of debounce lib, lowercase ns
* move event handling inside of button_t
* refactor config. ..._MODE -> _CONFIG, ..._MODE_... -> ..._ACTION_...
* fix test
* naming
* move indexed value to header
* refactor actions into direct opts
* fix webui, fix buttons not respecting old user setting
* change button config format from bitmask to a struct, adjust settings conversion
* proxy some more header defautls, fix web kv
* gpiopin
* adjust webui func to support every setting
* clarify single-return event->string
* fix dual setting
* fix dual packet condition, de-duplicate funcs
* fix bogus warning 4 years ago |
|
- #pragma once
-
- // 1.13.3 added TELNET_PASSWORD build-only flag
- // 1.13.4 replaces it with TELNET_AUTHENTICATION runtime setting default
- // TODO warning should be removed eventually
- #ifdef TELNET_PASSWORD
- #warning TELNET_PASSWORD is deprecated! Please replace it with TELNET_AUTHENTICATION
- #define TELNET_AUTHENTICATION TELNET_PASSWORD
- #endif
-
- // 1.14.0 combines RF_SUPPORT with RFB_DIRECT
- #ifdef RF_PIN
- #warning RF_PIN is deprecated! Please use RFB_RX_PIN instead
- #define RFB_RX_PIN RF_PIN
- #endif
-
- // 1.14.0 allow multiple digitals
- #ifdef DIGITAL_PIN
- #warning DIGITAL_PIN is deprecated! Please use DIGITAL1_PIN instead
- #define DIGITAL1_PIN DIGITAL_PIN
- #endif
-
- // 1.14.0 allow multiple events
- #ifdef EVENTS_PIN
- #warning EVENTS_PIN is deprecated! Please use EVENTS1_PIN instead
- #define EVENTS1_PIN EVENTS_PIN
- #endif
-
- // 1.14.0 unifies mqtt payload options
- #ifdef HOMEASSISTANT_PAYLOAD_ON
- #warning HOMEASSISTANT_PAYLOAD_ON is deprecated! Global RELAY_MQTT_ON is used instead
- #endif
-
- #ifdef HOMEASSISTANT_PAYLOAD_OFF
- #warning HOMEASSISTANT_PAYLOAD_OFF is deprecated! Global RELAY_MQTT_OFF is used instead
- #endif
-
- #ifdef HOMEASSISTANT_PAYLOAD_AVAILABLE
- #warning HOMEASSISTANT_PAYLOAD_AVAILABLE is deprecated! Global MQTT_STATUS_ONLINE is used instead
- #endif
-
- #ifdef HOMEASSISTANT_PAYLOAD_NOT_AVAILABLE
- #warning HOMEASSISTANT_PAYLOAD_NOT_AVAILABLE is deprecated! Global MQTT_STATUS_OFFLINE is used instead
- #endif
-
- // 1.14.0 adds SecureClient
- #if MQTT_SUPPORT && MQTT_LIBRARY == MQTT_LIBRARY_ASYNCMQTT_CLIENT && ASYNC_TCP_SSL_ENABLED
- #warning "Current implementation of AsyncMqttClient with axTLS is no longer supported. Consider switching to the SECURE_CLIENT configuration with MQTT_LIBRARY_ARDUINOMQTT or MQTT_LIBRARY_PUBSUBCLIENT. See: https://github.com/xoseperez/espurna/issues/1465"
- #endif
-
- // 1.15.0 changes preprocessor var name
- #ifdef BUTTON_DBLCLICK_DELAY
- #warning "BUTTON_DBLCLICK_DELAY is deprecated! Please use BUTTON_REPEAT_DELAY instead"
- #define BUTTON_REPEAT_DELAY BUTTON_DBLCLICK_DELAY
- #endif
-
- #ifdef BUTTON1_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON1_CONFIG BUTTON1_MODE
- #endif
-
- #ifdef BUTTON2_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON2_CONFIG BUTTON2_MODE
- #endif
-
- #ifdef BUTTON3_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON3_CONFIG BUTTON3_MODE
- #endif
-
- #ifdef BUTTON4_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON4_CONFIG BUTTON4_MODE
- #endif
-
- #ifdef BUTTON4_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON4_CONFIG BUTTON4_MODE
- #endif
-
- #ifdef BUTTON5_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON5_CONFIG BUTTON5_MODE
- #endif
-
- #ifdef BUTTON6_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON6_CONFIG BUTTON6_MODE
- #endif
-
- #ifdef BUTTON7_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON7_CONFIG BUTTON7_MODE
- #endif
-
- #ifdef BUTTON8_MODE
- #warning "BUTTON[1-8]_MODE is deprecated! Please use BUTTON[1-8]_CONFIG instead"
- #define BUTTON8_CONFIG BUTTON8_MODE
- #endif
-
- #ifdef CSE7766_PIN
- #warning "CSE7766_PIN is deprecated! Please use CSE7766_RX_PIN instead"
- #define CSE7766_RX_PIN CSE7766_PIN
- #endif
-
- #ifdef WIFI_FALLBACK_APMODE
- #warning "WIFI_FALLBACK_APMODE is deprecated! Please use WIFI_AP_MODE instead"
- #define WIFI_AP_MODE ((1 == WIFI_FALLBACK_APMODE) ? WiFiApMode::Fallback : WiFiApMode::Disabled)
- #endif
-
- #ifdef RFB_DIRECT
- #warning "RFB_DIRECT is deprecated! Please use RFB_PROVIDER=RFB_PROVIDER_..."
- #undef RFB_PROVIDER
- #if RFB_DIRECT
- #define RFB_PROVIDER RFB_PROVIDER_RCSWITCH
- #else
- #define RFB_PROVIDER RFB_PROVIDER_EFM8BB1
- #endif
- #endif
-
- #ifdef RF_LEARN_TIMEOUT
- #warning "RF_LEARN_TIMEOUT is deprecated! Please use RFB_LEARN_TIMEOUT"
- #undef RFB_LEARN_TIMEOUT
- #define RFB_LEARN_TIMEOUT RF_LEARN_TIMEOUT
- #endif
-
- #ifdef RF_SEND_TIMES
- #warning "RF_SEND_TIMES is deprecated! Please use RFB_SEND_TIMES"
- #undef RFB_SEND_TIMES
- #define RFB_SEND_TIMES RF_SEND_TIMES
- #endif
-
- #ifdef RF_SEND_DELAY
- #warning "RF_SEND_DELAY is deprecated! Please use RFB_SEND_DELAY"
- #undef RFB_SEND_DELAY RF_SEND_DELAY
- #endif
-
- #ifdef RF_RECEIVE_DELAY
- #warning "RF_RECEIVE_DELAY is deprecated! Please use RFB_RECEIVE_DELAY"
- #undef RFB_RECEIVE_DELAY RF_RECEIVE_DELAY
- #endif
-
- #ifdef RF_SUPPORT
- #warning "RF_SUPPORT is deprecated! Please use RFB_SUPPORT"
- #undef RFB_SUPPORT
- #define RFB_SUPPORT RF_SUPPORT
- #endif
|