mirror of https://github.com/arendst/Tasmota.git
Add button control when no relay configured
Add button control when no relay configured (#4682)
This commit is contained in:
parent
58d075deff
commit
6c69b8d12d
|
@ -3,6 +3,7 @@
|
|||
* Add support for sensor SCD30 (#5434)
|
||||
* Add support for commands in sensor drivers
|
||||
* Add 0x to IRRemote (SetOption29) and RCSwitch (SetOption28) received hexadecimal data (#5431)
|
||||
* Add button control when no relay configured (#4682)
|
||||
*
|
||||
* 6.4.1.20 20190304
|
||||
* Changed webserver content handling from single String to small Chunks increasing RAM
|
||||
|
|
|
@ -95,8 +95,9 @@ void ButtonHandler(void)
|
|||
uint16_t loops_per_second = 1000 / Settings.button_debounce;
|
||||
char scmnd[20];
|
||||
|
||||
uint8_t maxdev = (devices_present > MAX_KEYS) ? MAX_KEYS : devices_present;
|
||||
for (uint8_t button_index = 0; button_index < maxdev; button_index++) {
|
||||
// uint8_t maxdev = (devices_present > MAX_KEYS) ? MAX_KEYS : devices_present;
|
||||
// for (uint8_t button_index = 0; button_index < maxdev; button_index++) {
|
||||
for (uint8_t button_index = 0; button_index < MAX_KEYS; button_index++) {
|
||||
button = NOT_PRESSED;
|
||||
button_present = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue