mirror of
https://github.com/esphome/esphome.git
synced 2024-11-26 12:27:13 +01:00
fix name conflict with zephyr macro (#7252)
This commit is contained in:
parent
64ee40d370
commit
f24fd34d86
@ -307,7 +307,7 @@ void FingerprintGrowComponent::delete_fingerprint(uint16_t finger_id) {
|
|||||||
|
|
||||||
void FingerprintGrowComponent::delete_all_fingerprints() {
|
void FingerprintGrowComponent::delete_all_fingerprints() {
|
||||||
ESP_LOGI(TAG, "Deleting all stored fingerprints");
|
ESP_LOGI(TAG, "Deleting all stored fingerprints");
|
||||||
this->data_ = {EMPTY};
|
this->data_ = {DELETE_ALL};
|
||||||
switch (this->send_command_()) {
|
switch (this->send_command_()) {
|
||||||
case OK:
|
case OK:
|
||||||
ESP_LOGI(TAG, "Deleted all fingerprints");
|
ESP_LOGI(TAG, "Deleted all fingerprints");
|
||||||
|
@ -36,7 +36,7 @@ enum GrowCommand {
|
|||||||
LOAD = 0x07,
|
LOAD = 0x07,
|
||||||
UPLOAD = 0x08,
|
UPLOAD = 0x08,
|
||||||
DELETE = 0x0C,
|
DELETE = 0x0C,
|
||||||
EMPTY = 0x0D,
|
DELETE_ALL = 0x0D, // aka EMPTY
|
||||||
READ_SYS_PARAM = 0x0F,
|
READ_SYS_PARAM = 0x0F,
|
||||||
SET_PASSWORD = 0x12,
|
SET_PASSWORD = 0x12,
|
||||||
VERIFY_PASSWORD = 0x13,
|
VERIFY_PASSWORD = 0x13,
|
||||||
|
Loading…
Reference in New Issue
Block a user