tag:github.com,2008:https://github.com/strid3r21/arduino-esp32/releasesRelease notes from arduino-esp322022-07-06T09:33:48Ztag:github.com,2008:Repository/521988322/2.0.42022-07-06T09:33:48Z2.0.4: Rainmaker library extension (#6813)<ul>
<li>
<p>Added definitions for various parameters and UI types.</p>
</li>
<li>
<p>Overload for <code>const char*</code> added.</p>
</li>
<li>
<p>Function <code>addValidStrList</code> added.<br>
This is needed for mode parameters (see example RMakerCustomAirCooler.ino).</p>
</li>
<li>
<p>Example of a custom device that uses toggle, mode and range parameters.</p>
</li>
<li>
<p>Revert: Added definitions for various parameters and UI types.</p>
</li>
<li>
<p>Fixed declaration for addValidStrList</p>
</li>
<li>
<p>Fixed missing gpio definition for ESP32C3 target</p>
</li>
</ul>
<p>Co-authored-by: Me No Dev <a href="mailto:me-no-dev@users.noreply.github.com">me-no-dev@users.noreply.github.com</a></p>sivar2311tag:github.com,2008:Repository/521988322/2.0.32022-05-04T11:36:15Z2.0.3<p>Fix uploader tool for ESPduino32 board (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1220695336" data-permission-text="Title is private" data-url="https://github.com/espressif/arduino-esp32/issues/6665" data-hovercard-type="pull_request" data-hovercard-url="/espressif/arduino-esp32/pull/6665/hovercard" href="https://github.com/espressif/arduino-esp32/pull/6665">espressif#6665</a>)</p>DeuxVistag:github.com,2008:Repository/521988322/2.0.3-RC12022-03-29T15:12:16Z2.0.3-RC1<p>Update toolchain to gcc8_4_0-esp-2021r2-patch3 and esptool to 3.3 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="181561678" data-permission-text="Title is private" data-url="https://github.com/espressif/arduino-esp32/issues/6" data-hovercard-type="issue" data-hovercard-url="/espressif/arduino-esp32/issues/6/hovercard" href="https://github.com/espressif/arduino-esp32/issues/6">espressif#6</a>…</p>me-no-devtag:github.com,2008:Repository/521988322/2.0.22021-12-22T14:41:52Z2.0.2: Implement SigmaDelta based on ESP-IDF API (#6053)<p>Summary</p>
<p>This PR is refactoring of SigmaDelta HAL in order to use IDF instead of current Register manipulation approach.</p>
<p>Impact</p>
<p>Change in API:</p>
<p>uint32_t sigmaDeltaSetup(uint8_t channel, uint32_t freq);<br>
changed to --><br>
uint32_t sigmaDeltaSetup(uint8_t pin, uint8_t channel, uint32_t freq);</p>
<p>void sigmaDeltaAttachPin(uint8_t pin); removed, no longer needed. Pin is attached in sigmaDeltaSetup()</p>P-R-O-C-H-Ytag:github.com,2008:Repository/521988322/2.0.12021-11-09T08:47:31Z2.0.1<p>Update package_esp32_index.template.json</p>me-no-devtag:github.com,2008:Repository/521988322/2.0.1-RC12021-10-25T06:20:47Z2.0.1-RC1: Add ALPN support to WiFiClientSecure (#5633)<p>This adds a function to WiFiClientSecure to set the ALPN protocol.</p>
<p>This is required for an MQTT client to connect to AWS IoT when using an AWS Custom Authorizer, as described here.</p>
<p>Example code snippet:</p>
<p>...<br>
WiFiClientSecure wiFiClient;</p>
<p>// ALPN protocol, needed with AWS custom authorizer<br>
const char *aws_protos[] = {"mqtt", NULL};</p>
<p>void setup() {<br>
wiFiClient.setCACert(AWSCAPEM);<br>
wiFiClient.setAlpnProtocols(aws_protos);<br>
}<br>
...</p>torntrouserstag:github.com,2008:Repository/521988322/2.0.02021-08-31T06:28:56Z2.0.0<p>Added UM FeatherS2 Neo to boards.txt and added appropriate variants. …</p>UnexpectedMakertag:github.com,2008:Repository/521988322/2.0.0-rc22021-08-23T14:27:34Z2.0.0-rc2: Implement USB HID Device Support for ESP32-S2 (#5538)<ul>
<li>Add support and example for USB HID Devices</li>
<li>Add support and example for USB Vendor</li>
</ul>me-no-devtag:github.com,2008:Repository/521988322/2.0.0-rc12021-07-20T10:36:27Z2.0.0-rc1: Fix Windows USB issues<ul>
<li>Device will not reset if previous baudrate was not 9600</li>
<li>CDC Device is not recognized if WebUSB is enabled</li>
</ul>me-no-devtag:github.com,2008:Repository/521988322/2.0.0-alpha12021-04-17T12:28:16Z2.0.0-alpha1: IDF master cf457d412 (#5073)<p>esp-dsp: master 7cc5073<br>
esp-face: master 420fc7e<br>
esp-rainmaker: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/strid3r21/arduino-esp32/commit/f1b82c71c4536ab816d17df016d8afe106bd60e3/hovercard" href="https://github.com/strid3r21/arduino-esp32/commit/f1b82c71c4536ab816d17df016d8afe106bd60e3"><tt>f1b82c7</tt></a><br>
esp32-camera: master 2dded7c<br>
esp_littlefs: master d268e18</p>me-no-dev