mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-14 10:35:27 +01:00
47 lines
1.4 KiB
ReStructuredText
47 lines
1.4 KiB
ReStructuredText
Tuya Switch
|
|
===========
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up a Tuya device switch.
|
|
:image: upload.svg
|
|
|
|
The ``tuya`` switch platform creates a sensor from a tuya serial component
|
|
and requires :doc:`/components/tuya` to be configured.
|
|
|
|
.. code-block:: text
|
|
|
|
[13:46:01][C][tuya:023]: Tuya:
|
|
[13:46:01][C][tuya:032]: Datapoint 1: switch (value: OFF)
|
|
[13:46:01][C][tuya:032]: Datapoint 2: switch (value: OFF)
|
|
[13:46:01][C][tuya:034]: Datapoint 3: int value (value: 19)
|
|
[13:46:01][C][tuya:034]: Datapoint 4: int value (value: 17)
|
|
[13:46:01][C][tuya:034]: Datapoint 5: int value (value: 0)
|
|
[13:46:01][C][tuya:036]: Datapoint 7: enum (value: 1)
|
|
[13:46:01][C][tuya:046]: Product: '{"p":"ynjanlglr4qa6dxf","v":"1.0.0","m":0}'
|
|
|
|
On this controller, the datapoint 2 represents the child lock switch
|
|
setting which is what we are interested in controlling using this platform.
|
|
|
|
Based on this, you can create the switch as follows:
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Create a switch
|
|
switch:
|
|
- platform: "tuya"
|
|
name: "MySwitch"
|
|
switch_datapoint: 2
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **switch_datapoint** (**Required**, int): The datapoint id number of the switch.
|
|
- All other options from :ref:`Switch <config-switch>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`/components/switch/index`
|
|
- :apiref:`tuya/switch/tuya_switch.h`
|
|
- :ghedit:`Edit`
|