.. seo:: :description: Instructions for setting up the copy component in ESPHome :image: content-copy.svg
The copy
component can be used to copy an existing component (like a sensor, switch, etc.)
and create a duplicate mirroring the source's state and forwarding actions such as turning on to the source.
For each of the supported platforms, the configuration consists of the required configuration
variable source_id
, which is used to indicate the source of the object being mirorred.
# Example configuration entry
binary_sensor:
- platform: copy
source_id: source_binary_sensor
name: "Copy of source_binary_sensor"
- source_id (Required, :ref:`config-id`): The binary sensor that should be mirrored.
- All other options from :ref:`Binary Sensor <config-binary_sensor>`.
# Example configuration entry
button:
- platform: copy
source_id: source_button
name: "Copy of source_button"
- source_id (Required, :ref:`config-id`): The button that should be mirrored.
- All other options from :ref:`Button <config-button>`.
# Example configuration entry
cover:
- platform: copy
source_id: source_cover
name: "Copy of source_cover"
- source_id (Required, :ref:`config-id`): The cover that should be mirrored.
- All other options from :ref:`Cover <config-cover>`.
# Example configuration entry
fan:
- platform: copy
source_id: source_fan
name: "Copy of source_fan"
- source_id (Required, :ref:`config-id`): The fan that should be mirrored.
- All other options from :ref:`Fan <config-fan>`.
# Example configuration entry
lock:
- platform: copy
source_id: source_lock
name: "Copy of source_lock"
- source_id (Required, :ref:`config-id`): The lock that should be mirrored.
- All other options from :ref:`Lock <config-lock>`.
# Example configuration entry
number:
- platform: copy
source_id: source_number
name: "Copy of source_number"
- source_id (Required, :ref:`config-id`): The number that should be mirrored.
- All other options from :ref:`Number <config-number>`.
# Example configuration entry
select:
- platform: copy
source_id: source_select
name: "Copy of source_select"
- source_id (Required, :ref:`config-id`): The select that should be mirrored.
- All other options from :ref:`Select <config-select>`.
# Example configuration entry
sensor:
- platform: copy
source_id: source_sensor
name: "Copy of source_sensor"
- source_id (Required, :ref:`config-id`): The sensor that should be mirrored.
- All other options from :ref:`Sensor <config-sensor>`.
# Example configuration entry
switch:
- platform: copy
source_id: source_switch
name: "Copy of source_switch"
- source_id (Required, :ref:`config-id`): The switch that should be mirrored.
- All other options from :ref:`Switch <config-switch>`.
# Example configuration entry
text_sensor:
- platform: copy
source_id: source_text_sensor
name: "Copy of source_text_sensor"
- source_id (Required, :ref:`config-id`): The text sensor that should be mirrored.
- All other options from :ref:`Text Sensor <config-text_sensor>`.
# Example configuration entry
text:
- platform: copy
source_id: source_text
name: "Copy of source_text"
- source_id (Required, :ref:`config-id`): The text that should be mirrored.
- All other options from :ref:`Text <config-text>`.