Update i2s_microphone data value

According to here: 4fcb26d69d/esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp (L138) it seems to be an int16_t
This commit is contained in:
Remy van Elst 2024-04-02 21:20:24 +02:00 committed by GitHub
parent 6fa3868347
commit 19b5330107
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ Microphone Triggers
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This trigger will fire when new data is received from the microphone.
The data is available as a ``std::vector<uint8_t>`` in the variable ``x``.
The data is available as a ``std::vector<int16_t>`` in the variable ``x``.
.. code-block:: yaml