esphome-docs/esphomeyaml/components/sensor/custom.rst

371 lines
14 KiB
ReStructuredText
Raw Normal View History

2018-06-04 13:46:40 +02:00
Custom Sensor Component
=======================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for setting up Custom C++ sensors with esphomelib.
2018-11-19 22:28:21 +01:00
:image: language-cpp.png
2018-11-14 22:12:27 +01:00
:keywords: C++, Custom
2018-06-04 13:46:40 +02:00
.. warning::
While I do try to keep the esphomeyaml configuration options as stable as possible
2018-10-20 15:10:26 +02:00
and back-port them, the esphomelib API is less stable. If something in the APIs needs
2018-06-04 13:46:40 +02:00
to be changed in order for something else to work, I will do so.
So, you just set up esphomelib for your ESP32/ESP8266, but sadly esphomelib is missing a sensor integration
you'd really like to have 😕. It's pretty much impossible to support every single sensor, as there are simply too many.
That's why esphomelib has a really simple API for you to create your own **custom sensors** 🎉
In this guide, we will go through creating a custom sensor component for the
`BMP180 <https://www.adafruit.com/product/1603>`__ pressure sensor (we will only do the pressure part,
temperature is more or less the same). During this guide, you will learn how to 1. define a custom sensor
esphomelib can use 2. go over how to register the sensor so that it will be shown inside Home Assistant and
3. leverage an existing arduino library for the BMP180 with esphomelib.
.. note::
Since the creation of this guide, the BMP180 has been officially supported by the :doc:`BMP085 component
<bmp085>`. The code still applies though.
2018-11-16 18:39:26 +01:00
This guide will require at least a bit of knowledge of C++, so be prepared for that. If you've already written
code for an Arduino, you have already written C++ code :) (Arduino uses a slightly customized version of C++).
If you have any problems, I'm here to help: https://discord.gg/KhAMKrd
2018-06-04 13:46:40 +02:00
Step 1: Custom Sensor Definition
--------------------------------
At this point, you might have a main source file like this:
2018-11-19 22:28:21 +01:00
.. code-block:: cpp
2018-06-04 13:46:40 +02:00
// ...
using namespace esphomelib;
void setup() {
// ===== DO NOT EDIT ANYTHING BELOW THIS LINE =====
// ========== AUTO GENERATED CODE BEGIN ===========
App.set_name("livingroom");
App.init_log();
// ...
// =========== AUTO GENERATED CODE END ============
// ========= YOU CAN EDIT AFTER THIS LINE =========
App.setup();
}
void loop() {
App.loop();
}
To create your own custom sensor, you just have define a C++ class that extends ``Component`` and ``Sensor`` like this:
2018-11-19 22:28:21 +01:00
.. code-block:: cpp
2018-06-04 13:46:40 +02:00
using namespace esphomelib;
2018-11-16 18:39:26 +01:00
class MyCustomSensor : public Component, public sensor::Sensor {
2018-06-04 13:46:40 +02:00
public:
void setup() override {
// This will be called by App.setup()
}
void loop() override {
// This will be called by App.loop()
}
};
void setup() {
// ...
2018-11-16 18:39:26 +01:00
You've just created your first esphomelib sensor class 🎉. It doesn't do very much right now and is never instantiated,
2018-06-04 13:46:40 +02:00
but it's a first step.
Let's now take a look at how a sensor works in esphomelib: A sensor is some hardware device (like a BMP180)
that sends out new values like temperatures.
2018-11-16 18:39:26 +01:00
Like any "Component" in esphomelib, if it's registered in the Application, the ``setup()`` method
in your custom component will be called when the ESP boots up (similar to how the ``setup()`` method in
Arduino is called).. ``setup()`` is also the place where you should do hardware initialization like setting
``pinMode()`` etc.
Next, every time ``App.loop()`` is called, your component will also receive a ``loop()`` method call.
2018-06-04 13:46:40 +02:00
This is the place where you should do stuff like querying a sensor for a new value like you might be used
to do in an Arduino sketch.
2018-11-16 18:39:26 +01:00
Let's now also take a closer look at this line, which you might not be too used to when writing Arduino code:
2018-06-04 13:46:40 +02:00
2018-11-19 22:28:21 +01:00
.. code-block:: cpp
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
class MyCustomSensor : public Component, public sensor::Sensor {
2018-06-04 13:46:40 +02:00
What this line is essentially saying is that we're defining our own class that's called ``CustomSensor``
which is also a subclass of ``Component`` and ``Sensor`` (in the namespace ``sensor::``).
``Component`` is there so that we can register it in our application and so that we will receive ``setup()``
2018-11-16 18:39:26 +01:00
and ``loop()`` calls. And we're also inheriting from ``Sensor`` because, well, we're creating a sensor that will
publish values to the frontend.
The thing is, ``loop()`` gets called *very often*, like 60 times per second. Most sensors do not support
reading out values at this speed! That's why there's ``PollingComponent``. If you replace the ``Component`` above
with ``PollingComponent``, you can replace the ``loop()`` method with a method called ``update()``.
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
Contrary to ``loop()``, for ``update()`` you can tell esphomelib with what **interval** the method should be called.
Let's look at some more code:
2018-06-04 13:46:40 +02:00
2018-11-19 22:28:21 +01:00
.. code-block:: cpp
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
class MyCustomSensor : public PollingComponent, public sensor::Sensor {
2018-06-04 13:46:40 +02:00
public:
2018-11-16 18:39:26 +01:00
// constructor
MyCustomSensor() : PollingComponent(15000) {}
2018-06-04 13:46:40 +02:00
void setup() override {
// This will be called by App.setup()
}
void update() override {
2018-11-16 18:39:26 +01:00
// This will be called every "update_interval" milliseconds.
2018-06-04 13:46:40 +02:00
}
};
2018-11-16 18:39:26 +01:00
Our code has slightly changed, as explained above we're now inheriting from ``PollingComponent`` instead of
just ``Component``. Additionally, we now have a new line: the constructor. In this constructor we're telling
the compiler that we want ``PollingComponent`` to be instantiated with an *update interval* of 15s, or
15000 milliseconds (esphomelib uses milliseconds internally).
Let's also now make our sensor actually publish values in the ``update()`` method:
2018-06-04 13:46:40 +02:00
2018-11-19 22:28:21 +01:00
.. code-block:: cpp
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
// class MyCustomSensor ...
2018-06-04 13:46:40 +02:00
// ... previous code
void update() override {
2018-11-16 18:39:26 +01:00
publish_state(42.0);
2018-06-04 13:46:40 +02:00
}
};
2018-11-16 18:39:26 +01:00
Every time ``update`` is called we will now **publish** a new value to the frontend.
The rest of esphomelib will then take care of processing this value and ultimately publishing it
to the outside world (for example using MQTT).
2018-06-04 13:46:40 +02:00
Step 2: Registering the custom sensor
-------------------------------------
Now we have our Custom Sensor set up, but unfortunately it doesn't do much right now.
2018-11-16 18:39:26 +01:00
Actually ... it does nothing because it's never instantiated. In your YAML configuration, create
a new sensor platform entry like this:
2018-06-04 13:46:40 +02:00
2018-11-19 22:28:21 +01:00
.. code-block:: yaml
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
# Example configuration entry
sensor:
- platform: custom
lambda: |-
auto my_sensor = new MyCustomSensor();
App.register_component(my_sensor);
return {my_sensor};
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
sensors:
name: "My Custom Sensor"
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
Let's break this down:
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
- First, we specify a :ref:`lambda <config-lambda>` that will be used to **instantiate** our sensor class. This will
be called on boot to register our sensor in esphomelib.
- In this lambda, we're first creating a new instance of our custom class (``new MyCustomSensor()``) and then
assigning it to a variable called ``my_sensor``. Note: This uses a feature in the C++ standard, ``auto``, to make our
lives easier. We could also have written ``MyCustomSensor *my_sensor = new MyCustomSensor()``
- Next, as our custom class inherits from Component, we need to **register** it - otherwise esphomelib will not know
about it and won't call our ``setup()`` and ``update`` methods!
- Finally, we ``return`` the custom sensor - don't worry about the curly braces ``{}``, we'll cover that later.
- After that, we just let *esphomeyaml* know about our newly created sensor too using the ``sensors:`` block. Additionally,
here we're also assigning the sensor a name.
Now all that's left to do is upload the code and let it run :)
2018-06-04 13:46:40 +02:00
If you have Home Assistant MQTT discovery setup, it will even automatically show up in the frontend 🎉
.. figure:: images/custom-ui.png
2018-11-19 22:28:21 +01:00
:align: center
2018-06-04 13:46:40 +02:00
:width: 60%
Step 3: BMP180 support
----------------------
2018-11-16 18:39:26 +01:00
Let's finally make this custom sensor useful by adding the BMP180 aspect into it! Sure, printing ``42`` is a nice number
but it won't help with home automation :D
A great feature of esphomelib is that you don't need to code everything yourself. You can use any existing arduino
library to do the work for you! Now for this example we'll
2018-06-04 13:46:40 +02:00
use the `Adafruit BMP085 Library <https://platformio.org/lib/show/525/Adafruit%20BMP085%20Library>`__
2018-11-16 18:39:26 +01:00
library to implement support for the BMP085 sensor. But you can find other libraries too on the
`platformio library index <https://platformio.org/lib>`__
2018-06-04 13:46:40 +02:00
2018-11-16 18:39:26 +01:00
First we'll need to add the library to our project dependencies. To do so, put the following in
the ``common`` section of your ``<NODE_NAME>/platformio.ini`` file:
2018-06-04 13:46:40 +02:00
2018-11-19 22:28:21 +01:00
.. code-block:: ini
2018-06-04 13:46:40 +02:00
[common]
lib_deps = Adafruit BMP085 Library
build_flags =
upload_flags =
2018-09-26 22:25:36 +02:00
Next, include the library at the top of you main sketch file (``<NODE_NAME>/src/main.cpp``):
2018-06-04 13:46:40 +02:00
2018-11-19 22:28:21 +01:00
.. code-block:: cpp
2018-06-04 13:46:40 +02:00
#include "esphomelib/application.h"
#include <Adafruit_BMP085.h>
using namespace esphomelib;
2018-09-26 22:25:36 +02:00
// ...
2018-06-04 13:46:40 +02:00
Then update our sensor for BMP180 support:
2018-11-19 22:28:21 +01:00
.. code-block:: cpp
2018-06-04 13:46:40 +02:00
2018-09-26 22:25:36 +02:00
// ...
2018-11-16 18:39:26 +01:00
class MyCustomSensor : public PollingComponent, public sensor::Sensor {
2018-06-04 13:46:40 +02:00
public:
Adafruit_BMP085 bmp;
2018-11-16 18:39:26 +01:00
MyCustomSensor() : PollingComponent(15000) { }
2018-06-04 13:46:40 +02:00
void setup() override {
bmp.begin();
}
void update() override {
2018-11-16 18:39:26 +01:00
int pressure = bmp.readPressure(); // library returns value in in Pa, which equals 1/100 hPa
publish_state(pressure / 100.0); // convert to hPa
2018-06-04 13:46:40 +02:00
}
};
2018-11-16 18:39:26 +01:00
// ...
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
There's not too much going on there. First, we define the variable ``bmp`` of type ``Adafruit_BMP085``
inside our class as a class member. This is the object the adafruit library exposes and through which
we will communicate with the sensor.
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
In our custom ``setup()`` function we're *initializing* the library (using ``.begin()``) and in
``update()`` we're reading the pressure and publishing it using ``publish_state``.
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
For esphomeyaml we can use the previous YAML. So now if you upload the firmware, you'll see the sensor
reporting actual pressure values! Hooray 🎉!
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
Step 4: Additional Overrides
----------------------------
There's a slight problem with our code: It does print the values fine, **but** if you look in Home Assistant
you'll see a) the value has no **unit** attached to it and b) the value will be rounded to the next integer.
This is because esphomelib doesn't know these infos, it's only passed a floating point value after all.
We *could* fix that in our custom sensor class (by overriding the ``unit_of_measurement`` and ``accuracy_decimals``
methods), but here we have the full power of esphomeyaml, so let's use that:
2018-11-19 22:28:21 +01:00
.. code-block:: yaml
2018-11-16 18:39:26 +01:00
# Example configuration entry
sensor:
- platform: custom
lambda: |-
auto my_sensor = new MyCustomSensor();
App.register_component(my_sensor);
return {my_sensor};
sensors:
name: "My Custom Sensor"
unit_of_measurement: hPa
accuracy_decimals: 2
2018-06-04 13:46:40 +02:00
2018-09-26 22:25:36 +02:00
Bonus: Sensors With Multiple Output Values
------------------------------------------
2018-11-16 18:39:26 +01:00
The ``Sensor`` class doesn't fit every use-case. Sometimes, (as with the BMP180),
2018-09-26 22:25:36 +02:00
a sensor can expose multiple values (temperature *and* pressure, for example).
Doing so in esphomelib is a bit more difficult. Basically, we will have to change our sensor
2018-11-16 18:39:26 +01:00
model to have a **component** that reads out the values and then multiple **sensors** that represent
the individual sensor measurements.
2018-09-26 22:25:36 +02:00
Let's look at what that could look like in code:
2018-11-19 22:28:21 +01:00
.. code-block:: cpp
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
class MyCustomSensor : public PollingComponent {
2018-09-26 22:25:36 +02:00
public:
Adafruit_BMP085 bmp;
2018-11-16 18:39:26 +01:00
sensor::Sensor *temperature_sensor = new sensor::Sensor();
sensor::Sensor *pressure_sensor = new sensor::Sensor();
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
MyCustomSensor() : PollingComponent(15000) { }
2018-09-26 22:25:36 +02:00
void setup() override {
bmp.begin();
}
void update() override {
// This is the actual sensor reading logic.
float temperature = bmp.readTemperature();
temperature_sensor->publish_state(temperature);
2018-11-16 18:39:26 +01:00
int pressure = bmp.readPressure();
pressure_sensor->publish_state(pressure / 100.0);
2018-09-26 22:25:36 +02:00
}
};
2018-11-16 18:39:26 +01:00
The code here has changed a bit:
2018-11-19 22:28:21 +01:00
2018-11-16 18:39:26 +01:00
- Because the values are no longer published by our custom class, ``MyCustomSensor`` no longer inherits
from ``Sensor``.
- The class has two new members: ``temperature_sensor`` and ``pressure_sensor``. These will be used to
publish the values.
- In our ``update()`` method we're now reading out the temperature *and* pressure. These values are then
published with the temperature and pressure sensor instances we declared before.
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
Our YAML configuration needs an update too:
2018-09-26 22:25:36 +02:00
2018-11-19 22:28:21 +01:00
.. code-block:: yaml
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
# Example configuration entry
sensor:
- platform: custom
lambda: |-
auto my_sensor = new MyCustomSensor();
App.register_component(my_sensor);
return {my_sensor->temperature_sensor, my_sensor->pressure_sensor};
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
sensors:
- name: "My Custom Temperature Sensor"
unit_of_measurement: °C
accuracy_decimals: 1
- name: "My Custom Pressure Sensor"
unit_of_measurement: hPa
accuracy_decimals: 2
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
In ``lambda`` the return statement has changed: Because we have *two* sensors now we must tell esphomeyaml
about both of them. We do this by returning them as an array of values in the curly braces.
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
``sensors:`` has also changed a bit: Now that we have multiple sensors, each of them needs an entry here.
2018-09-26 22:25:36 +02:00
2018-11-16 18:39:26 +01:00
Note that the number of arguments you put in the curly braces *must* match the number of sensors you define in the YAML
``sensors:`` block - *and* they must be in the same order.
2018-09-26 22:25:36 +02:00
2018-11-19 22:28:21 +01:00
Configuration variables:
- **lambda** (**Required**, :ref:`lambda <config-lambda>`): The lambda to run for instantiating the
sensor(s).
- **sensors** (**Required**, list): A list of sensors to initialize. The length here
must equal the number of items in the ``return`` statement of the ``lambda``.
- All options from :ref:`Sensor <config-sensor>` and :ref:`MQTT Component <config-mqtt-component>`.
2018-06-04 13:46:40 +02:00
See Also
--------
2018-06-06 07:19:14 +02:00
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/esphomeyaml/components/sensor/custom.rst>`__
2018-10-12 16:33:22 +02:00
.. disqus::