mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-02 08:49:48 +01:00
547a8de3e9
* Add Tuya Switch docs * Fix underline * Remove common tuya documentation * use tuya image for tuya stuff Co-authored-by: Guillermo Ruffino <glm.net@gmail.com>
49 lines
1.5 KiB
ReStructuredText
49 lines
1.5 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:
|
|
------------------------
|
|
|
|
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
|
|
- **name** (**Required**, string): The name of the switch.
|
|
- **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`
|