forked from letscontrolit/ESPEasy
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request letscontrolit#4910 from flashmark/P164_gases-ens160
P164 gases ens160
- Loading branch information
Showing
11 changed files
with
1,364 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
.. include:: ../Plugin/_plugin_substitutions_p16x.repl | ||
.. _P164_page: | ||
|
||
|P164_typename| | ||
================================================== | ||
|
||
|P164_shortinfo| | ||
|
||
Plugin details | ||
-------------- | ||
|
||
Type: |P164_type| | ||
|
||
Name: |P164_name| | ||
|
||
Status: |P164_status| | ||
|
||
GitHub: |P164_github|_ | ||
|
||
Maintainer: |P164_maintainer| | ||
|
||
Used libraries: |P164_usedlibraries| | ||
|
||
Description | ||
----------- | ||
|
||
Sciosense ENS160 and its successor ENS161 are multi-gas sensors based on metal oxide (MOX) technology. They can detect multiple VOCs including ethanol, toluene, hydrogen and oxidizing gases. | ||
The sensors are connected to the I2C bus and provide preprocessed data as TVOC and eCO2 values. See https://www.sciosense.com/ens16x-digital-metal-oxide-multi-gas-sensor-family/ for details about the device. | ||
|
||
Hardware | ||
-------- | ||
|
||
Various boards with the ENS160 are available through electronics market places like Aliexpress. A popular board contains both ENS160 and AHT21 on a single PCB. The AHT21 can be used for temperature compensation as provided by this plugin. | ||
|
||
.. image:: P164_board.jpg | ||
|
||
Configuration | ||
------------- | ||
|
||
.. image:: P164_DeviceConfiguration.png | ||
|
||
* **Name**: Required by ESPEasy, must be unique among the list of available devices/tasks. | ||
|
||
* **Enabled**: The device can be disabled or enabled. When not enabled the device should not use any resources. | ||
|
||
I2C options | ||
^^^^^^^^^^^ | ||
|
||
* **I2C Address**: The sensor supports two addresses. The actual address depends on the voltage on the ADDR pin of the device. | ||
|
||
.. csv-table:: | ||
:header: "Address", "Remark" | ||
:widths: 10, 50 | ||
|
||
"0x52", "Connect ADDR GND" | ||
"0x53", "Connect ADDR to VDD (default on most boards)" | ||
|
||
The available I2C settings here depend on the build used. At least the **Force Slow I2C speed** option is available, but selections for the I2C Multiplexer can also be shown. For details see the :ref:`Hardware_page` | ||
|
||
The chip supports both SPI and I2C. The plugin only support I2C using the following pins: | ||
|
||
* 1 SDA: Data [MOSI/SDA] | ||
* 2 SCL: Serial Clock [SCLK/SCL] | ||
* 3 ADDR: Address [MISO/ADDR] | ||
* 6 INTn: Interrupt [INTn] | ||
* 7 CSn: SPI interface select, low-> SPI, high->I2C [CSn] | ||
|
||
For this plugin the CSn must be wired to VDD to enable the I2C protocol. | ||
|
||
On boards sold online, SDO and SDI are often already pulled-up, setting the default I2C address to 0x53. | ||
|
||
|
||
Device Settings | ||
^^^^^^^^^^^^^^^ | ||
|
||
* **Detected Sensor Type**: Shows either ``ENS160`` or ``ENS161`` or a number if no sensor or an unknown sensor ID is detected. It will also show the firmware version read from the device if the data is available. | ||
* **Temperature Task**: Task (plugin) providing the temperature compensation | ||
* **Temperature Value**: Value for the temperature compensation | ||
* **Humidity Task**: Task (plugin) providing the humidity compensation | ||
* **Humidity Value**: Value for the humidity compensation | ||
|
||
The ENS16x provides temperature and humidity compensation. The plugin must provide the actual temperature and humidity to the device to enable this compensation. For this the plugin needs to read these values from other tasks. | ||
|
||
Using the **Temperature Task** and **Temperature Value** the task and value for the Temperature compensation can be selected. Compensation can be switched off by selecting **Not Set**. | ||
|
||
Using the **Humidity Task** and **Humidity Value** the task and value for the Humidity compensation can be selected. Compensation can be switched off by selecting **Not Set**. | ||
|
||
Note that if either one of the tasks is set to **Not Set** compensation is switched off and a default value is used. | ||
|
||
The ENS160 is sold on popular websites on a board including the AHT21 temperature and humidity sensor. This sensor can be used for the compensation algorithm of the ENS160. | ||
|
||
Data Acquisition | ||
^^^^^^^^^^^^^^^^ | ||
|
||
This group of settings, **Single event with all values** and **Send to Controller** settings are standard available configuration items. Send to Controller is only visible when one or more Controllers are configured. | ||
|
||
* **Interval** By default, Interval will be set to 60 sec. The data will be collected and optionally sent to any configured controllers using this interval. If the Interval is set lower or equal than the required 10 * Heater time, the plugin will not start! | ||
|
||
Values | ||
^^^^^^ | ||
|
||
The plugin provides the ``TVOC`` and ``eCO2`` values. A formula can be set to recalculate. The number of decimals can be set as desired, and defaults to 2. | ||
|
||
In selected builds, per Value is a **Stats** checkbox available, that when checked, gathers the data and presents recent data in a graph, as described here: :ref:`Task Value Statistics: <Task Value Statistics>` | ||
|
||
Currently the extra features offered by the sensore are not configurable in this plugin. | ||
These may be added later. | ||
|
||
Change log | ||
---------- | ||
|
||
.. versionchanged:: 2.0 | ||
... | ||
|
||
|added| | ||
2023-12-27 Initial release version. | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
#include "_Plugin_Helper.h" | ||
#ifdef USES_P164 | ||
|
||
// ####################################################################################################### | ||
// #################################### Plugin-164: Gases - ENS16x (tvoc,eco2) ########################### | ||
// ####################################################################################################### | ||
// P164 "GASES - ENS16x (TVOC, eCO2)" | ||
// Plugin for ENS160 & ENS161 TVOC and eCO2 sensor with I2C interface from ScioSense | ||
// For documentation of the ENS160 hardware device see | ||
// https://www.sciosense.com/wp-content/uploads/documents/SC-001224-DS-9-ENS160-Datasheet.pdf | ||
// | ||
// PLugin code: | ||
// 2023 By flashmark | ||
// ####################################################################################################### | ||
|
||
# include "src/PluginStructs/P164_data_struct.h" | ||
|
||
# define PLUGIN_164 | ||
# define PLUGIN_ID_164 164 | ||
# define PLUGIN_NAME_164 "Gases - ENS16x" | ||
# define PLUGIN_VALUENAME1_164 "TVOC" | ||
# define PLUGIN_VALUENAME2_164 "eCO2" | ||
|
||
boolean Plugin_164(uint8_t function, struct EventStruct *event, String& string) | ||
{ | ||
boolean success = false; | ||
|
||
switch (function) | ||
{ | ||
case PLUGIN_DEVICE_ADD: | ||
{ | ||
Device[++deviceCount].Number = PLUGIN_ID_164; | ||
Device[deviceCount].Type = DEVICE_TYPE_I2C; | ||
Device[deviceCount].VType = Sensor_VType::SENSOR_TYPE_DUAL; | ||
Device[deviceCount].Ports = 0; | ||
Device[deviceCount].PullUpOption = false; | ||
Device[deviceCount].InverseLogicOption = false; | ||
Device[deviceCount].FormulaOption = true; | ||
Device[deviceCount].ValueCount = 2; | ||
Device[deviceCount].SendDataOption = true; | ||
Device[deviceCount].TimerOption = true; | ||
Device[deviceCount].GlobalSyncOption = true; | ||
Device[deviceCount].PluginStats = true; | ||
break; | ||
} | ||
|
||
case PLUGIN_GET_DEVICENAME: | ||
{ | ||
string = F(PLUGIN_NAME_164); | ||
break; | ||
} | ||
|
||
case PLUGIN_GET_DEVICEVALUENAMES: | ||
{ | ||
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[0], PSTR(PLUGIN_VALUENAME1_164)); | ||
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[1], PSTR(PLUGIN_VALUENAME2_164)); | ||
break; | ||
} | ||
|
||
case PLUGIN_I2C_HAS_ADDRESS: | ||
case PLUGIN_WEBFORM_SHOW_I2C_PARAMS: | ||
{ | ||
const uint8_t i2cAddressValues[] = { P164_ENS160_I2CADDR_0, P164_ENS160_I2CADDR_1 }; | ||
constexpr int nrAddressOptions = NR_ELEMENTS(i2cAddressValues); | ||
|
||
if (function == PLUGIN_WEBFORM_SHOW_I2C_PARAMS) { | ||
addFormSelectorI2C(F("i2c_addr"), nrAddressOptions, i2cAddressValues, P164_PCONFIG_I2C_ADDR); | ||
addFormNote(F("ADDR Low=0x52, High=0x53")); | ||
} else { | ||
success = intArrayContains(nrAddressOptions, i2cAddressValues, event->Par1); | ||
} | ||
|
||
break; | ||
} | ||
|
||
# if FEATURE_I2C_GET_ADDRESS | ||
case PLUGIN_I2C_GET_ADDRESS: | ||
{ | ||
event->Par1 = P164_PCONFIG_I2C_ADDR; | ||
success = true; | ||
break; | ||
} | ||
# endif // if FEATURE_I2C_GET_ADDRESS | ||
|
||
case PLUGIN_SET_DEFAULTS: | ||
{ | ||
P164_PCONFIG_I2C_ADDR = P164_ENS160_I2CADDR_1; | ||
success = true; | ||
break; | ||
} | ||
|
||
case PLUGIN_INIT: | ||
{ | ||
initPluginTaskData(event->TaskIndex, new (std::nothrow) P164_data_struct(event)); | ||
P164_data_struct *P164_data = static_cast<P164_data_struct *>(getPluginTaskData(event->TaskIndex)); | ||
|
||
success = (nullptr != P164_data && P164_data->begin()); | ||
break; | ||
} | ||
|
||
case PLUGIN_READ: | ||
{ | ||
P164_data_struct *P164_data = static_cast<P164_data_struct *>(getPluginTaskData(event->TaskIndex)); | ||
|
||
if (nullptr == P164_data) { | ||
addLogMove(LOG_LEVEL_ERROR, F("P164: plugin_read NULLPTR")); | ||
break; | ||
} | ||
|
||
float temperature = 20.0f; // A reasonable value in case temperature source task is invalid | ||
float humidity = 50.0f; // A reasonable value in case humidity source task is invalid | ||
float tvoc = 0.0f; // tvoc value to be retrieved from device | ||
float eco2 = 0.0f; // eCO2 value to be retrieved from device | ||
|
||
if (validTaskIndex(P164_PCONFIG_TEMP_TASK) && validTaskIndex(P164_PCONFIG_HUM_TASK)) | ||
{ | ||
// we're checking a value from other tasks | ||
temperature = UserVar.getFloat(P164_PCONFIG_TEMP_TASK, P164_PCONFIG_TEMP_VAL); // in degrees C | ||
humidity = UserVar.getFloat(P164_PCONFIG_HUM_TASK, P164_PCONFIG_HUM_VAL); // in % relative | ||
} | ||
success = P164_data->read(tvoc, eco2, temperature, humidity); | ||
UserVar.setFloat(event->TaskIndex, 0, tvoc); | ||
UserVar.setFloat(event->TaskIndex, 1, eco2); | ||
break; | ||
} | ||
|
||
case PLUGIN_WEBFORM_LOAD: | ||
{ | ||
success = P164_data_struct::webformLoad(event); | ||
break; | ||
} | ||
|
||
case PLUGIN_WEBFORM_SAVE: | ||
{ | ||
success = P164_data_struct::webformSave(event); | ||
break; | ||
} | ||
|
||
case PLUGIN_TEN_PER_SECOND: | ||
{ | ||
P164_data_struct *P164_data = | ||
static_cast<P164_data_struct *>(getPluginTaskData(event->TaskIndex)); | ||
if (nullptr == P164_data) { | ||
break; | ||
} | ||
success = P164_data->tenPerSecond(event); | ||
break; | ||
} | ||
} | ||
return success; | ||
} | ||
|
||
#endif // ifdef USES_P164 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.