Skip to content

Commit 22176f1

Browse files
h2zeroheythisisnate
authored andcommitted
Add secplus v1 smart panel protocol option.
This adds an option for secplus v1 with smart panel protocol option to prevent smart panel emulation when the wall panel is offline.
1 parent 0bd1495 commit 22176f1

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

gdo.c

+14-16
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ esp_err_t gdo_light_on(void) {
491491
return err;
492492
}
493493

494-
if (g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1) {
494+
if (g_status.protocol & GDO_PROTOCOL_SEC_PLUS_V1) {
495495
return gdo_v1_toggle_cmd(V1_CMD_TOGGLE_LIGHT_PRESS, 500000);
496496
} else {
497497
err = queue_command(GDO_CMD_LIGHT, GDO_LIGHT_ACTION_ON, 0, 0);
@@ -514,7 +514,7 @@ esp_err_t gdo_light_off(void) {
514514
return err;
515515
}
516516

517-
if (g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1) {
517+
if (g_status.protocol & GDO_PROTOCOL_SEC_PLUS_V1) {
518518
return gdo_v1_toggle_cmd(V1_CMD_TOGGLE_LIGHT_PRESS, 500000);
519519
} else {
520520
err = queue_command(GDO_CMD_LIGHT, GDO_LIGHT_ACTION_OFF, 0, 0);
@@ -550,7 +550,7 @@ esp_err_t gdo_lock(void) {
550550
return ESP_OK;
551551
}
552552

553-
if (g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1) {
553+
if (g_status.protocol & GDO_PROTOCOL_SEC_PLUS_V1) {
554554
return gdo_v1_toggle_cmd(V1_CMD_TOGGLE_LOCK_PRESS, 500000);
555555
} else {
556556
return queue_command(GDO_CMD_LOCK, GDO_LOCK_ACTION_LOCK, 0, 0);
@@ -566,7 +566,7 @@ esp_err_t gdo_unlock(void) {
566566
return ESP_OK;
567567
}
568568

569-
if (g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1) {
569+
if (g_status.protocol & GDO_PROTOCOL_SEC_PLUS_V1) {
570570
return gdo_v1_toggle_cmd(V1_CMD_TOGGLE_LOCK_PRESS, 500000);
571571
} else {
572572
return queue_command(GDO_CMD_LOCK, GDO_LOCK_ACTION_UNLOCK, 0, 0);
@@ -773,12 +773,14 @@ esp_err_t gdo_set_min_command_interval(uint32_t ms) {
773773
static void gdo_sync_task(void* arg) {
774774
bool synced = true;
775775

776-
if (g_status.protocol <= GDO_PROTOCOL_SEC_PLUS_V1) {
776+
if (g_status.protocol != GDO_PROTOCOL_SEC_PLUS_V2) {
777777
uart_set_baudrate(g_config.uart_num, 1200);
778778
uart_set_parity(g_config.uart_num, UART_PARITY_EVEN);
779779
uart_flush(g_config.uart_num);
780780
xQueueReset(gdo_event_queue);
781-
ulTaskNotifyTake(pdTRUE, pdMS_TO_TICKS(2500));
781+
782+
// Delay forever if there is a smart panel connected to allow it to come online and sync before we do anything.
783+
ulTaskNotifyTake(pdTRUE, g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1_WITH_SMART_PANEL ? portMAX_DELAY : pdMS_TO_TICKS(2500));
782784

783785
if (g_status.door == GDO_DOOR_STATE_UNKNOWN) {
784786
ESP_LOGW(TAG, "V1 panel not found, trying emulation");
@@ -810,6 +812,8 @@ static void gdo_sync_task(void* arg) {
810812
goto done;
811813
}
812814
} else {
815+
ESP_LOGI(TAG, "V1 panel found");
816+
g_status.protocol = GDO_PROTOCOL_SEC_PLUS_V1_WITH_SMART_PANEL;
813817
goto done;
814818
}
815819
}
@@ -1404,7 +1408,7 @@ static void gdo_main_task(void* arg) {
14041408
}
14051409
--rx_pending;
14061410
}
1407-
} else if (g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1) {
1411+
} else if (g_status.protocol & GDO_PROTOCOL_SEC_PLUS_V1) {
14081412
if (rx_packet_size != GDO_PACKET_SIZE) {
14091413
ESP_LOGE(TAG, "RX data size error: %u", rx_packet_size);
14101414
uart_read_bytes(g_config.uart_num, rx_buffer, rx_packet_size, 0);
@@ -1422,7 +1426,7 @@ static void gdo_main_task(void* arg) {
14221426
break;
14231427
}
14241428
case UART_PARITY_ERR:
1425-
if (g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1) {
1429+
if (g_status.protocol & GDO_PROTOCOL_SEC_PLUS_V1) {
14261430
ESP_LOGE(TAG, "Parity error, check wiring?");
14271431
}
14281432
break;
@@ -1553,12 +1557,6 @@ static void update_door_state(const gdo_door_state_t door_state) {
15531557
if (door_state > GDO_DOOR_STATE_UNKNOWN && door_state < GDO_DOOR_STATE_MAX) {
15541558
esp_timer_stop(door_position_sync_timer);
15551559
} else {
1556-
// If we are still detecting the protcol and we get here but the door state is not valid, reset the protocol.
1557-
if (g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1 &&
1558-
g_status.door == GDO_DOOR_STATE_UNKNOWN &&
1559-
gdo_sync_task_handle) {
1560-
g_status.protocol = 0;
1561-
}
15621560
return;
15631561
}
15641562

@@ -1622,7 +1620,7 @@ static void update_door_state(const gdo_door_state_t door_state) {
16221620
}
16231621

16241622
if (g_status.door == GDO_DOOR_STATE_UNKNOWN &&
1625-
g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1 &&
1623+
g_status.protocol & GDO_PROTOCOL_SEC_PLUS_V1 &&
16261624
gdo_sync_task_handle) {
16271625
xTaskNotifyGive(gdo_sync_task_handle);
16281626
}
@@ -1675,7 +1673,7 @@ inline static esp_err_t get_openings() {
16751673
*/
16761674
inline static esp_err_t send_door_action(gdo_door_action_t action) {
16771675
esp_err_t err = ESP_OK;
1678-
if (g_status.protocol == GDO_PROTOCOL_SEC_PLUS_V1) {
1676+
if (g_status.protocol & GDO_PROTOCOL_SEC_PLUS_V1) {
16791677
return gdo_v1_toggle_cmd(V1_CMD_TOGGLE_DOOR_PRESS, 500000);
16801678
} else {
16811679
err = queue_command(GDO_CMD_DOOR_ACTION, action, 1, 1);

gdo_utils.c

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ const char *gdo_protocol_type_str[] = {
110110
"Unknown",
111111
"Security+ 1.0",
112112
"Security+ 2.0",
113+
"Security+ 1.0 with smart panel",
113114
};
114115

115116
const char* cmd_to_string(gdo_command_t cmd) {

include/gdo.h

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ typedef enum {
9696
typedef enum {
9797
GDO_PROTOCOL_SEC_PLUS_V1 = 1,
9898
GDO_PROTOCOL_SEC_PLUS_V2,
99+
GDO_PROTOCOL_SEC_PLUS_V1_WITH_SMART_PANEL,
99100
GDO_PROTOCOL_MAX,
100101
} gdo_protocol_type_t;
101102

0 commit comments

Comments
 (0)