2018-06-13 22:38:49 +02:00
Pulse Counter Sensor
====================
2018-05-13 11:37:02 +02:00
2018-11-14 22:12:27 +01:00
.. seo ::
:description: Instructions for setting up pulse counter sensors.
2021-11-16 03:19:33 +01:00
:image: pulse.svg
2018-11-14 22:12:27 +01:00
2018-06-13 22:38:49 +02:00
The pulse counter sensor allows you to count the number of pulses and the frequency of a signal
on any pin.
On the ESP32, this sensor is even highly accurate because it's using the hardware `pulse counter
2018-11-19 18:32:16 +01:00
peripheral <https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/pcnt.html>`__
2020-05-24 16:30:36 +02:00
on the ESP32. However, due to the use of the pulse counter peripheral, a maximum of 8 channels can be used!
2018-05-13 11:37:02 +02:00
2018-06-01 18:10:00 +02:00
.. figure :: images/pulse-counter.png
:align: center
:width: 80.0%
2018-05-13 11:37:02 +02:00
2018-11-19 18:32:16 +01:00
.. code-block :: yaml
2018-05-13 11:37:02 +02:00
# Example configuration entry
sensor:
- platform: pulse_counter
pin: 12
name: "Pulse Counter"
Configuration variables:
2018-08-24 22:44:01 +02:00
------------------------
2018-05-13 11:37:02 +02:00
2018-06-01 18:10:00 +02:00
- **pin** (**Required** , :ref: `config-pin` ): The pin to count pulses on.
- **name** (**Required** , string): The name of the sensor.
- **count_mode** (*Optional* ): Configure how the counter should behave
on a detected rising edge/falling edge.
2018-05-13 11:37:02 +02:00
2018-06-01 18:10:00 +02:00
- **rising_edge** (*Optional* ): What to do when a rising edge is
detected. One of `` DISABLE `` , `` INCREMENT `` and `` DECREMENT `` .
Defaults to `` INCREMENT `` .
- **falling_edge** (*Optional* ): What to do when a falling edge is
detected. One of `` DISABLE `` , `` INCREMENT `` and `` DECREMENT `` .
Defaults to `` DISABLE `` .
2022-09-02 03:41:09 +02:00
- **use_pcnt** (*Optional* , boolean): Use hardware `` PCNT `` pulse counter. Only supported on ESP32. Defaults to `` true `` .
2018-05-13 11:37:02 +02:00
2018-10-13 21:21:33 +02:00
- **internal_filter** (*Optional* , :ref: `config-time` ): If a pulse shorter than this
2022-09-02 03:41:09 +02:00
time is detected, it’ s discarded and no pulse is counted. Defaults to `` 13us `` . On the ESP32, when using the hardware pulse counter
this value can not be higher than `` 13us `` , for the ESP8266 or with `` use_pcnt: false `` you can use larger intervals too.
2020-12-21 01:55:44 +01:00
If you enable this, set up the `` count_mode `` to increase on the falling edge, not leading edge. For S0 pulse meters that are used to meter power consumption 50-100 ms is a reasonable value.
2019-01-15 20:30:37 +01:00
2019-01-06 18:56:14 +01:00
- **update_interval** (*Optional* , :ref: `config-time` ): The interval to check the sensor. Defaults to `` 60s `` .
2018-06-01 18:10:00 +02:00
- **id** (*Optional* , :ref: `config-id` ): Manually specify the ID used for code generation.
2020-11-01 08:45:33 +01:00
2021-05-10 00:12:16 +02:00
- **total** (*Optional* ): Report the total number of pulses.
2019-02-17 12:28:17 +01:00
- All other options from :ref: `Sensor <config-sensor>` .
2018-05-13 11:37:02 +02:00
2019-11-02 18:47:42 +01:00
.. note ::
See :doc: `integration sensor </components/sensor/integration>` for summing up pulse counter
values over time.
2018-05-13 11:37:02 +02:00
Converting units
2018-08-24 22:44:01 +02:00
----------------
2018-05-13 11:37:02 +02:00
The sensor defaults to measuring its values using a unit of measurement
2018-06-01 18:10:00 +02:00
of “pulses/min”. You can change this by using :ref: `sensor-filters` .
2018-05-13 11:37:02 +02:00
For example, if you’ re using the pulse counter with a photodiode to
count the light pulses on a power meter, you can do the following:
2018-11-19 18:32:16 +01:00
.. code-block :: yaml
2018-05-13 11:37:02 +02:00
# Example configuration entry
sensor:
- platform: pulse_counter
pin: 12
unit_of_measurement: 'kW'
name: 'Power Meter House'
filters:
2021-05-11 16:21:47 +02:00
- multiply: 0.06 # (60s/1000 pulses per kWh)
2018-05-13 11:37:02 +02:00
2020-11-01 08:45:33 +01:00
Counting total pulses
---------------------
When the total sensor is configured, the pulse_counter also reports the total
number of pulses measured. When used on a power meter, this can be used to
measure the total consumed energy in kWh.
.. code-block :: yaml
# Example configuration entry
sensor:
2022-10-24 20:08:37 +02:00
- platform: pulse_counter
2020-11-01 08:45:33 +01:00
pin: 12
2023-03-07 09:22:27 +01:00
unit_of_measurement: 'Wh'
2020-11-01 08:45:33 +01:00
name: 'Power Meter House'
filters:
2021-05-11 16:21:47 +02:00
- multiply: 0.06 # (60s/1000 pulses per kWh)
2020-11-01 08:45:33 +01:00
total:
unit_of_measurement: 'kWh'
name: 'Energy Meter House'
filters:
2021-05-11 16:21:47 +02:00
- multiply: 0.001 # (1/1000 pulses per kWh)
2020-11-01 08:45:33 +01:00
2022-07-25 04:20:18 +02:00
(Re)Setting the total pulse count
---------------------------------
Using this action, you are able to reset/set the total pulse count. This can be useful
if you would like the `` total `` sensor to match what you see on your meter you are
trying to match.
.. code-block :: yaml
# Set pulse counter total from home assistant using this service call:
api:
services:
- service: set_pulse_total
variables:
new_pulse_total: int
then:
- pulse_counter.set_total_pulses:
id: pulse_counter_id
value: !lambda 'return new_pulse_total;'
.. note ::
This value is the raw count of pulses, and not the value you see after the filters
are applied.
2022-11-09 16:49:31 +01:00
Wiring
------
If you want to count pulses from a simple reed switch, the simplest way is to make
use of the internal pull-up/pull-down resistors.
You can wire the switch between a GPIO pin and GND; in this case set the pin to input, pullup and inverted:
.. code-block :: yaml
# Reed switch between GPIO and GND
sensor:
- platform: pulse_counter
pin:
number: 12
inverted: true
mode:
input: true
pullup: true
name: "Pulse Counter"
If you wire it between a GPIO pin and +3.3V, set the pin to input, pulldown:
.. code-block :: yaml
# Reed switch between GPIO and +3.3V
sensor:
- platform: pulse_counter
pin:
number: 12
mode:
input: true
pulldown: true
name: "Pulse Counter"
The safest way is to use GPIO + GND, as this avoids the possibility of short
circuiting the wire by mistake.
2022-07-25 04:20:18 +02:00
2018-06-01 18:10:00 +02:00
See Also
2018-08-24 22:44:01 +02:00
--------
2018-06-01 18:10:00 +02:00
- :ref: `sensor-filters`
2022-07-25 04:20:18 +02:00
- :doc: `/components/sensor/pulse_meter`
2018-06-01 18:10:00 +02:00
- :doc: `rotary_encoder`
2018-11-19 18:32:16 +01:00
- `esp-idf Pulse Counter API <https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/pcnt.html> `__ .
2019-05-12 22:44:59 +02:00
- :apiref: `pulse_counter/pulse_counter_sensor.h`
2019-02-07 13:54:45 +01:00
- :ghedit: `Edit`