2022-04-11 04:50:59 +02:00
Hydreon Rain Sensor
===================
.. seo ::
:description: Instructions for setting up Hydreon rain sensors
:image: hydreon_rg9.jpg
:keywords: hydreon
2023-10-19 02:07:32 +02:00
The `` hydreon_rgxx `` sensor platform allows you to use rain sensors by Hydreon. Currently supported are the RG-9 and RG-15 sensors (`model comparison <https://rainsensors.com/products/model-comparison/> `_ ).
2022-04-11 04:50:59 +02:00
These optical rain sensors use a UART connection at 3.3V. The :ref: `UART <uart>` is
required to be set up in your configuration for this sensor to work.
2023-10-19 02:07:32 +02:00
Supported firmware versions:
- RG-15: v1.000
- RG-9: v1.000, v1.100, v1.200
Device FAQ: `<https://rainsensors.com/support/rg-9-rg-15-faq/>`__
2022-04-11 04:50:59 +02:00
.. figure :: images/hydreon_rg9_full.jpg
:align: center
:width: 50.0%
2023-10-19 02:07:32 +02:00
Hydreon RG-9 Rain Sensor. Image by `Hydreon <https://rainsensors.com/> `_ .
2022-04-11 04:50:59 +02:00
.. code-block :: yaml
# Example RG-9 entry
2022-04-22 04:04:23 +02:00
2022-04-11 04:50:59 +02:00
uart:
rx_pin: GPIO16
tx_pin: GPIO17
baud_rate: 9600
sensor:
- platform: hydreon_rgxx
model: "RG_9"
2023-10-19 02:07:32 +02:00
id: "hydreon_1"
update_interval: 20s
disable_led: false
2022-04-11 04:50:59 +02:00
moisture:
2023-10-19 02:07:32 +02:00
name: "Rain Level"
temperature:
name: "Device Temperature"
2022-04-22 04:04:23 +02:00
2022-04-11 04:50:59 +02:00
binary_sensor:
- platform: hydreon_rgxx
2023-10-19 02:07:32 +02:00
hydreon_rgxx_id: "hydreon_1"
2022-04-11 04:50:59 +02:00
too_cold:
2023-10-19 02:07:32 +02:00
entity_category: diagnostic
name: "Temperature Status"
2022-08-17 06:07:36 +02:00
lens_bad:
2023-10-19 02:07:32 +02:00
entity_category: diagnostic
name: "Lens Status"
em_sat:
entity_category: diagnostic
name: "Emitter Saturation"
2022-04-11 04:50:59 +02:00
.. code-block :: yaml
# Example RG-15 entry
uart:
rx_pin: GPIO16
tx_pin: GPIO17
baud_rate: 9600
sensor:
- platform: hydreon_rgxx
model: "RG_15"
2024-03-12 03:32:01 +01:00
resolution: high
2022-04-11 04:50:59 +02:00
update_interval: 60s
acc:
name: "rain"
event_acc:
name: "rain event"
total_acc:
name: "rain total"
r_int:
name: "rain intensity"
Configuration variables:
------------------------
2023-09-19 20:18:34 +02:00
- **model** (**Required** , string): Specify which rain sensor you have connected. Must be either `` RG_9 `` or `` RG_15 `` .
2022-04-11 04:50:59 +02:00
2023-10-19 02:07:32 +02:00
- **disable_led** (*Optional* ): Disables the on-board LED. Defaults to `` false `` . Only on RG-9 firmware version 1.200-onwards.
2022-04-11 04:50:59 +02:00
- **uart_id** (*Optional* , :ref: `config-id` ): Manually specify the ID of the :ref: `UART Component <uart>` if you want
to use multiple UART buses.
2023-10-19 02:07:32 +02:00
- **moisture** (*Optional* ): Rain intensity level from 0-7 (`more detail <https://rainsensors.com/support/rg-9-rg-15-faq/#RG-9RValue> `__ ). Only on RG-9.
2022-04-11 04:50:59 +02:00
2022-04-22 04:04:23 +02:00
- **name** (**Required** , string): The name for the sensor.
2022-04-11 04:50:59 +02:00
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
2023-10-19 02:07:32 +02:00
- **temperature** (*Optional* ): Device internal temperature in Celsius. Accuracy is ±5°C. Only on RG-9 firmware version 1.100-onwards.
2022-04-11 04:50:59 +02:00
2022-04-22 04:04:23 +02:00
- **name** (**Required** , string): The name for the sensor.
2022-04-11 04:50:59 +02:00
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
2024-03-12 03:32:01 +01:00
- **resolution** (*Optional* , string): Specify rain sensor resolution. Must be either `` low `` or `` high `` . Default resolution is `` high `` .
Only applies to RG-15.
2023-10-19 02:07:32 +02:00
- **acc** (*Optional* ): Amount of rain since last message (see `` update_interval `` ), in `` mm `` . Only on RG-15.
2022-04-11 04:50:59 +02:00
2022-04-22 04:04:23 +02:00
- **name** (**Required** , string): The name for the sensor.
2022-04-11 04:50:59 +02:00
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
2023-10-19 02:07:32 +02:00
- **event_acc** (*Optional* ): Amount of rain for this event (i.e. since it last stopped raining), in `` mm `` . Only on RG-15.
2022-04-11 04:50:59 +02:00
2022-04-22 04:04:23 +02:00
- **name** (**Required** , string): The name for the sensor.
2022-04-11 04:50:59 +02:00
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
2023-10-19 02:07:32 +02:00
- **total_acc** (*Optional* ): Total amount of rain this sensor has ever measured, in `` mm `` . Only on RG-15.
2022-04-11 04:50:59 +02:00
2022-04-22 04:04:23 +02:00
- **name** (**Required** , string): The name for the sensor.
2022-04-11 04:50:59 +02:00
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
2023-10-19 02:07:32 +02:00
- **r_int** (*Optional* ): Current rain intensity in `` mm/h `` . Only on RG-15.
2022-08-17 06:07:36 +02:00
- **name** (**Required** , string): The name for the sensor.
- **id** (*Optional* , :ref: `config-id` ): Set the ID of this sensor for use in lambdas.
- All other options from :ref: `Sensor <config-sensor>` .
2022-04-11 04:50:59 +02:00
- **update_interval** (*Optional* , :ref: `config-time` ): The interval to check the sensor. Defaults to `` 60s `` .
See Also
--------
- :ref: `sensor-filters`
- :doc: `../binary_sensor/hydreon_rgxx`
2023-10-19 02:07:32 +02:00
2022-04-11 04:50:59 +02:00
- `Hydreon RG-9 <https://rainsensors.com/products/rg-9/> `__
- `Hydreon RG-15 <https://rainsensors.com/products/rg-15/> `__
2023-10-19 02:07:32 +02:00
2022-04-11 04:50:59 +02:00
- `RG-15 V1.000 manual <https://rainsensors.com/wp-content/uploads/sites/3/2020/07/rg-15_instructions_sw_1.000.pdf> `__
2023-10-19 02:07:32 +02:00
- `RG-9 1.000 manual <https://rainsensors.com/wp-content/uploads/sites/3/2021/03/2020.08.25-rg-9_instructions.pdf> `__
- `RG-9 1.100 manual <https://rainsensors.com/wp-content/uploads/sites/3/2021/03/2021.03.11-rg-9_instructions.pdf> `__
- `RG-9 1.200 manual <https://rainsensors.com/wp-content/uploads/sites/3/2022/03/2022.02.17-rev-1.200-rg-9_instructions.pdf> `__
2022-04-11 04:50:59 +02:00
- :ghedit: `Edit`