diff --git a/components/fingerprint_grow.rst b/components/fingerprint_grow.rst new file mode 100644 index 000000000..9b5c3339b --- /dev/null +++ b/components/fingerprint_grow.rst @@ -0,0 +1,530 @@ +Grow Fingerprint Reader +======================= + +.. seo:: + :description: Instructions for setting up Grow Fingerprint Reader integration in ESPHome. + :image: fingerprint.png + +The ``fingerprint_grow`` component allows you to use your R307, R503, ZFM-20, ... fingerprint sensors with ESPHome. + +.. figure:: images/r307-full.jpg + :align: center + :width: 50.0% + + R307/ZFM-20 Optical Fingerprint Reader (`datasheet `__, `Adafruit `__). Image by `Adafruit `__. + +.. figure:: images/r503-full.jpg + :align: center + :width: 50.0% + + R503 Capacitive Fingerprint Reader with Bi-Color Aura LED (`datasheet `__, `Adafruit `__). Image by `Adafruit `__. + +Overview +-------- + +The reader can be powered by the 3.3V output of an NodeMCU. As the communication with the reader is done using UART (default baud rate is 57600), you need to have an :ref:`UART bus ` in your configuration with the ``rx_pin`` connected to the reader's ``TX`` and the ``tx_pin`` connected to the reader's ``RX``. + +If available on your reader model, it's recommended to connect 3.3VT (touch induction power supply) to 3.3V; WAKEUP (finger detection signal) to a free GPIO pin and define it with the ``sensing_pin`` option to allow the polling function to quickly return when there's no finger on the reader. + +.. code-block:: yaml + + # Example configuration entry + uart: + rx_pin: GPIO13 + tx_pin: GPIO15 + baud_rate: 57600 + + # Declare Grow Fingerprint Reader + fingerprint_grow: + sensing_pin: GPIO12 + on_finger_scan_matched: + - text_sensor.template.publish: + id: fingerprint_state + state: "Authorized finger" + - switch.turn_on: gate + - delay: 500ms + - switch.turn_off: gate + on_finger_scan_unmatched: + - text_sensor.template.publish: + id: fingerprint_state + state: "Unauthorized finger" + on_enrollment_scan: + - text_sensor.template.publish: + id: fingerprint_state + state: "Finger scanned" + on_enrollment_done: + - text_sensor.template.publish: + id: fingerprint_state + state: "Enrolled fingerprint" + on_enrollment_failed: + - text_sensor.template.publish: + id: fingerprint_state + state: "Failed to enroll fingerprint" + + # Optional template text sensor for visual feedback + text_sensor: + - platform: template + id: fingerprint_state + name: "Fingerprint State" + + # Optional component (GPIO switch, lock etc.) to control in on_finger_scan_matched trigger + switch: + - platform: gpio + pin: GPIO14 + id: gate + + # Optional sensors + binary_sensor: + - platform: fingerprint_grow + id: fingerprint_enrolling + name: "Fingerprint Enrolling" + + sensor: + - platform: fingerprint_grow + fingerprint_count: + name: "Fingerprint Count" + last_finger_id: + name: "Fingerprint Last Finger ID" + last_confidence: + name: "Fingerprint Last Confidence" + status: + name: "Fingerprint Status" + capacity: + name: "Fingerprint Capacity" + security_level: + name: "Fingerprint Security Level" + + +Configuration variables: +------------------------ + +The configuration is made up of three parts: The central component, optional individual sensors, and the optional enrolling binary sensor. + +Base Configuration: + +- **uart_id** (*Optional*, :ref:`config-id`): Manually specify the ID of the UART hub. +- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. +- **sensing_pin** (*Optional*, :ref:`Pin Schema `): Pin connected to the reader's finger detection signal (WAKEUP) output. +- **password** (*Optional*, int): Password to use for authentication. Defaults to ``0x00``. +- **set_password** (*Optional*, int): Sets a new password to use for authentication. See :ref:`fingerprint_grow-set_new_password` for more information. +- **on_finger_scan_matched** (*Optional*, :ref:`Automation `): An action to be performed when an enrolled fingerprint is scanned. See :ref:`fingerprint_grow-on_finger_scan_matched`. +- **on_finger_scan_unmatched** (*Optional*, :ref:`Automation `): An action to be performed when an unknown fingerprint is scanned. See :ref:`fingerprint_grow-on_finger_scan_unmatched`. +- **on_enrollment_scan** (*Optional*, :ref:`Automation `): An action to be performed when a fingerprint is scanned during enrollment. See :ref:`fingerprint_grow-on_enrollment_scan`. +- **on_enrollment_done** (*Optional*, :ref:`Automation `): An action to be performed when a fingerprint is enrolled. See :ref:`fingerprint_grow-on_enrollment_done`. +- **on_enrollment_failed** (*Optional*, :ref:`Automation `): An action to be performed when a fingerprint enrollment failed. See :ref:`fingerprint_grow-on_enrollment_failed`. + +Optional Binary Sensor Configuration: + +- **name** (**Required**, string): The name for the enrolling binary sensor. +- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. +- All other options from :ref:`Binary Sensor `. + +Optional Sensor Configuration: + +Available sensors: + +- **fingerprint_count**: The number of enrolled fingerprints stored on the reader. + + - **name** (**Required**, string): The name for the sensor. + - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. + - All other options from :ref:`Sensor `. + +- **last_finger_id**: The last matched enrolled fingerprint as set by :ref:`fingerprint_grow-on_finger_scan_matched`. + + - **name** (**Required**, string): The name for the sensor. + - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. + - All other options from :ref:`Sensor `. + +- **last_confidence**: The last matched confidence as set by :ref:`fingerprint_grow-on_finger_scan_matched`. + + - **name** (**Required**, string): The name for the sensor. + - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. + - All other options from :ref:`Sensor `. + +- **status**: The integer representation of the internal status register of the reader. + + - **name** (**Required**, string): The name for the sensor. + - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. + - All other options from :ref:`Sensor `. + +- **capacity**: The fingerprint storage capacity of the reader. + + - **name** (**Required**, string): The name for the sensor. + - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. + - All other options from :ref:`Sensor `. + +- **security_level**: The integer representation of the currently configured security level of the reader. Higher security levels reduce the false acceptance rate (FAR) at the expense of increasing the false rejection rate (FRR). Range is 1 (lowest) to 5 (highest). + + - **name** (**Required**, string): The name for the sensor. + - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. + - All other options from :ref:`Sensor `. + + +.. _fingerprint_grow-set_new_password: + +Setting a New Password +---------------------- + +.. warning:: + + Forgetting the password will render your fingerprint reader unusable! + +You can set a new password for your fingerprint reader using the ``set_password:`` configuration option. The password is defined as a 32-bit unsigned integer. + +.. code-block:: yaml + + fingerprint_grow: + password: 0x275FE3D2 # Existing password, can be omitted if it's the default of 0x00 + set_password: 0x72AB96CD # New password + +The ``set_password:`` configuration option is meant to be compiled, flashed to the ESP device and run once, after which it's removed and the new password is defined in the ``password:`` configuration option to be compiled and flashed again. + +.. code-block:: yaml + + fingerprint_grow: + password: 0x72AB96CD # Update the existing password with the new one + + +.. _fingerprint_grow-on_finger_scan_matched: + +``on_finger_scan_matched`` Trigger +---------------------------------- + +With this configuration option you can write complex automations whenever a finger scan is matched to an enrolled fingerprint. +To use the variables, use a :ref:`lambda ` template, the matched slot number and the confidence are available inside that lambda under the variables named ``finger_id`` and ``confidence``. + +.. code-block:: yaml + + on_finger_scan_matched: + - text_sensor.template.publish: + id: fingerprint_state + state: !lambda 'return "Authorized finger " + to_string(finger_id) + ", confidence " + tostring(confidence);' + # Pushing a tag_scanned event based on finger_id only if confidence is greater than 50 + - if: + condition: + lambda: 'return confidence > 50;' + then: + - homeassistant.tag_scanned: !lambda |- + switch (finger_id) { + case 0: + return "person_a"; + case 1: + return "person_b"; + ... + default: + return "person_unknown"; + } + +.. _fingerprint_grow-on_finger_scan_unmatched: + +``on_finger_scan_unmatched`` Trigger +------------------------------------ + +With this configuration option you can write complex automations whenever an unknown fingerprint is scanned. + +.. code-block:: yaml + + on_finger_scan_unmatched: + - text_sensor.template.publish: + id: fingerprint_state + state: "Unauthorized finger" + +.. _fingerprint_grow-on_enrollment_scan: + +``on_enrollment_scan`` Trigger +------------------------------ + +With this configuration option you can write complex automations whenever a finger is scanned during enrollment. +To use the variables, use a :ref:`lambda ` template, the scan number and the slot number to be enrolled into are available inside that lambda under the variables named ``scan_num`` and ``finger_id``. + +.. code-block:: yaml + + on_enrollment_scan: + - text_sensor.template.publish: + id: fingerprint_state + state: !lambda 'return "Enrolling into slot " + to_string(finger_id) + ", scanned " + to_string(scan_num) + " time(s)";' + +.. _fingerprint_grow-on_enrollment_done: + +``on_enrollment_done`` Trigger +------------------------------ + +With this configuration option you can write complex automations whenever a finger is successfully enrolled. +To use the variables, use a :ref:`lambda ` template, the slot number enrolled into is available inside that lambda under the variable named ``finger_id``. + +.. code-block:: yaml + + on_enrollment_done: + - text_sensor.template.publish: + id: fingerprint_state + state: !lambda 'return "Enrolled into slot " + to_string(finger_id);' + +.. _fingerprint_grow-on_enrollment_failed: + +``on_enrollment_failed`` Trigger +-------------------------------- + +With this configuration option you can write complex automations whenever a finger failed to be enrolled. +To use the variables, use a :ref:`lambda ` template, the slot number that failed to be enrolled into is available inside that lambda under the variable named ``finger_id``. + +.. code-block:: yaml + + on_enrollment_failed: + - text_sensor.template.publish: + id: fingerprint_state + state: !lambda 'return "Failed to enroll into slot " + to_string(finger_id);' + # Retry enrollment into the same slot + - delay: 3s + - text_sensor.template.publish: + id: fingerprint_state + state: !lambda 'return "Retrying enrollment into slot " + to_string(finger_id) + " in 3 seconds...";' + - delay: 3s + - fingerprint_grow.enroll: !lambda 'return finger_id;' + + +``fingerprint_grow.enroll`` Action +---------------------------------- + +Starts the fingerprint enrollment process on the slot number defined. + +.. code-block:: yaml + + on_...: + then: + - fingerprint_grow.enroll: + finger_id: 0 + num_scans: 2 + # Shorthand + - fingerprint_grow.enroll: 0 + # Update the template text sensor for visual feedback + - text_sensor.template.publish: + id: fingerprint_state + state: "Place a finger on the reader" + +Configuration options: + +- **finger_id** (**Required**, int, :ref:`templatable `): The slot number to enroll the new fingerprint into. Limited to the fingerprint capacity available on the reader. +- **num_scans** (*Optional*, int, :ref:`templatable `): Number of times to scan the finger to be enrolled. Limited to the number of character buffers available on the reader. Defaults to 2. + +``fingerprint_grow.cancel_enroll`` Action +----------------------------------------- + +Cancels the current fingerprint enrollment process. Triggers the ``on_enrollment_failed`` trigger. + +.. code-block:: yaml + + on_...: + then: + - fingerprint_grow.cancel_enroll: + +``fingerprint_grow.delete`` Action +---------------------------------- + +Removes the enrolled fingerprint from the slot number defined. + +.. code-block:: yaml + + on_...: + then: + - fingerprint_grow.delete: + finger_id: 0 + # Shorthand + - fingerprint_grow.delete: 0 + +Configuration options: + +- **finger_id** (**Required**, int, :ref:`templatable `): The slot number of the enrolled fingerprint to delete. + +``fingerprint_grow.delete_all`` Action +-------------------------------------- + +Removes all enrolled fingerprints. + +.. code-block:: yaml + + on_...: + then: + - fingerprint_grow.delete_all: + +``fingerprint_grow.led_control`` Action +--------------------------------------- + +Turns on or off the LED on the reader. Only available on select models. If you have the R503 use :ref:`fingerprint_grow-aura_led_control` instead. + +.. code-block:: yaml + + on_...: + then: + - fingerprint_grow.led_control: + state: ON + # Shorthand + - fingerprint_grow.led_control: ON + +Configuration options: + +- **state** (**Required**, boolean, :ref:`templatable `): The state to set the LED. + +.. _fingerprint_grow-aura_led_control: + +``fingerprint_grow.aura_led_control`` Action +-------------------------------------------- + +Controls the Aura LED on the reader. Only available on select models. + +.. code-block:: yaml + + on_...: + then: + - fingerprint_grow.aura_led_control: + state: BREATHING + speed: 100 + color: BLUE + count: 2 + # Sample Aura LED config for all reader triggers + fingerprint_grow: + on_finger_scan_matched: + - fingerprint_grow.aura_led_control: + state: BREATHING + speed: 200 + color: BLUE + count: 1 + on_finger_scan_unmatched: + - fingerprint_grow.aura_led_control: + state: FLASHING + speed: 25 + color: RED + count: 2 + on_enrollment_scan: + - fingerprint_grow.aura_led_control: + state: FLASHING + speed: 25 + color: BLUE + count: 2 + - fingerprint_grow.aura_led_control: + state: ALWAYS_ON + speed: 0 + color: PURPLE + count: 0 + on_enrollment_done: + - fingerprint_grow.aura_led_control: + state: BREATHING + speed: 100 + color: BLUE + count: 2 + on_enrollment_failed: + - fingerprint_grow.aura_led_control: + state: FLASHING + speed: 25 + color: RED + count: 4 + on...: + then: + - fingerprint_grow.enroll: ... + - fingerprint_grow.aura_led_control: + state: ALWAYS_ON + speed: 0 + color: PURPLE + count: 0 + +Configuration options: + +- **state** (**Required**, string, :ref:`templatable `): The state to set the LED. One of ``BREATHING``, ``FLASHING``, ``ALWAYS_ON``, ``ALWAYS_OFF``, ``GRADUAL_ON`` and ``GRADUAL_OFF``. +- **speed** (**Required**, int, :ref:`templatable `): The duration each cycle lasts, a factor of 10ms. Only relevant for ``BREATHING``, ``FLASHING``, ``GRADUAL_ON`` and ``GRADUAL_OFF`` states. The total duration is defined by 10ms * speed * count. Range is 0 to 255. +- **color** (**Required**, string, :ref:`templatable `): The LED color to activate. One of ``RED``, ``BLUE`` and ``PURPLE``. +- **count** (**Required**, int, :ref:`templatable `): How many times to repeat the pattern. Only relevant for ``BREATHING`` and ``FLASHING`` states. 0 for infinite, or 1 to 255. + +All actions +----------- + +- **id** (*Optional*, :ref:`config-id`): Manually specify the ID of the Grow fingerprint reader if you have multiple components. + + +Test setup +---------- + +With the following code you can quickly setup a node and use Home Assistant's service in the developer tools. +E.g. for calling ``fingerprint_grow.enroll`` select the service ``esphome.test_node_enroll`` and in service data enter + +.. code-block:: json + + { "finger_id": 0, "num_scans": 2 } + +Sample code +*********** + +.. code-block:: yaml + + esphome: + name: test_node + platform: ESP8266 + board: nodemcu + + wifi: + ssid: !secret wifi_ssid + password: !secret wifi_pass + + logger: + + uart: + rx_pin: GPIO13 + tx_pin: GPIO15 + baud_rate: 57600 + + fingerprint_grow: + sensing_pin: GPIO12 + on_finger_scan_matched: + - homeassistant.event: + event: esphome.test_node_finger_scan_matched + data: + finger_id: !lambda 'return finger_id;' + confidence: !lambda 'return confidence;' + on_finger_scan_unmatched: + - homeassistant.event: + event: esphome.test_node_finger_scan_unmatched + on_enrollment_scan: + - homeassistant.event: + event: esphome.test_node_enrollment_scan + data: + finger_id: !lambda 'return finger_id;' + scan_num: !lambda 'return scan_num;' + on_enrollment_done: + - homeassistant.event: + event: esphome.test_node_enrollment_done + data: + finger_id: !lambda 'return finger_id;' + on_enrollment_failed: + - homeassistant.event: + event: esphome.test_node_enrollment_failed + data: + finger_id: !lambda 'return finger_id;' + + api: + services: + - service: enroll + variables: + finger_id: int + num_scans: int + then: + - fingerprint_grow.enroll: + finger_id: !lambda 'return finger_id;' + num_scans: !lambda 'return num_scans;' + - service: cancel_enroll + then: + - fingerprint_grow.cancel_enroll: + - service: delete + variables: + finger_id: int + then: + - fingerprint_grow.delete: + finger_id: !lambda 'return finger_id;' + - service: delete_all + then: + - fingerprint_grow.delete_all: + +See Also +-------- + +- :apiref:`fingerprint_grow/fingerprint_grow.h` +- `Tutorial from Adafruit `__ +- `Adafruit Fingerprint Sensor Library `__ by `Adafruit `__ +- :ghedit:`Edit` diff --git a/components/images/r307-full.jpg b/components/images/r307-full.jpg new file mode 100644 index 000000000..2f88e9b5b Binary files /dev/null and b/components/images/r307-full.jpg differ diff --git a/components/images/r503-full.jpg b/components/images/r503-full.jpg new file mode 100644 index 000000000..d7383e0ca Binary files /dev/null and b/components/images/r503-full.jpg differ diff --git a/images/fingerprint.svg b/images/fingerprint.svg new file mode 100644 index 000000000..3bfef9230 --- /dev/null +++ b/images/fingerprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/index.rst b/index.rst index f5a45565a..ab20cf09f 100644 --- a/index.rst +++ b/index.rst @@ -382,6 +382,7 @@ Misc Components Exposure Notifications, components/exposure_notifications, exposure_notifications.png RTTTL Buzzer, components/rtttl, buzzer.jpg Prometheus, components/prometheus, prometheus.svg + Grow Fingerprint Reader, components/fingerprint_grow, fingerprint.svg Additional Custom Components ----------------------------