esphome-docs/components/switch/custom.rst

70 lines
1.7 KiB
ReStructuredText
Raw Normal View History

2018-11-27 17:05:23 +01:00
Custom Switch
=============
2019-02-16 23:25:23 +01:00
This integration can be used to create custom switches in ESPHome
2018-11-27 17:05:23 +01:00
using the C++ (Arduino) API.
Please first read :doc:`/components/sensor/custom` guide,
2018-11-27 17:05:23 +01:00
the same principles apply here.
The example below is an example of a custom switch; this custom switch is essentially the
same as the gpio switch implementation.
.. code-block:: cpp
2019-02-16 23:25:23 +01:00
#include "esphome.h"
2018-11-27 17:05:23 +01:00
2019-05-12 22:44:59 +02:00
class MyCustomSwitch : public Component, public Switch {
2018-11-27 17:05:23 +01:00
public:
void setup() override {
// This will be called by App.setup()
pinMode(5, INPUT);
}
void write_state(bool state) override {
// This will be called every time the user requests a state change.
digitalWrite(5, state);
// Acknowledge new state by publishing it
publish_state(state);
}
};
(Store this file in your configuration directory, for example ``my_switch.h``)
And in YAML:
.. code-block:: yaml
# Example configuration entry
2019-02-16 23:25:23 +01:00
esphome:
2018-11-27 17:05:23 +01:00
includes:
- my_switch.h
switch:
- platform: custom
lambda: |-
auto my_custom_switch = new MyCustomSwitch();
App.register_component(my_custom_switch);
return {my_custom_switch};
switches:
name: "My Custom Switches"
id: my_custom_switch
2018-11-27 17:05:23 +01:00
Configuration variables:
- **lambda** (**Required**, :ref:`lambda <config-lambda>`): The lambda to run for instantiating the
switch(es).
- **switches** (**Required**, list): A list of switches to initialize. The length here
must equal the number of items in the ``return`` statement of the ``lambda``.
2019-02-17 12:28:17 +01:00
- All options from :ref:`Switch <config-switch>`.
2018-11-27 17:05:23 +01:00
2019-05-12 22:44:59 +02:00
See :apiclass:`Switch <switch_::Switch>`
2018-11-27 17:05:23 +01:00
See Also
--------
- :ghedit:`Edit`