- 06 Feb, 2023 3 commits
-
-
Ha Thach authored
-
Rodrigo Garcia authored
Minor fix based on observation done in https://github.com/espressif/arduino-esp32/issues/7795#issuecomment-1416868611
-
Rodrigo Garcia authored
-
- 20 Jan, 2023 1 commit
-
-
Pedro Minatel authored
-
- 17 Jan, 2023 1 commit
-
-
Pedro Minatel authored
* Added the example guideline and template * PR review changes with some typos and grammar fixes * Changes according to the PR review
-
- 12 Jan, 2023 2 commits
-
-
TANAKA Masayuki authored
-
Me No Dev authored
Fixes: https://github.com/espressif/arduino-esp32/issues/7675 The signature of `esp_spp_cb_t` has changed in recent ESP-IDF v4.4.3, so this fix targets to accomodate that change in Arduino
-
- 10 Jan, 2023 1 commit
-
-
Tinyu authored
* Add M5AtomS3 * M5AtomS3 * Update boards.txt Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
- 09 Jan, 2023 1 commit
-
-
Ha Thach authored
-
- 06 Jan, 2023 2 commits
-
-
Me No Dev authored
* Fix gen_insights_package.py missing on release Fixes: https://github.com/espressif/arduino-esp32/issues/7649 * fixes gen_insights_package.exe for Win10 and Win11 * Add insights example to be compiled by CI Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
-
Me No Dev authored
-
- 04 Jan, 2023 1 commit
-
-
Vojtěch Bartoška authored
On last Community Meeting, we have noticed that some active contributors don't know about the Gitter channel. This PR replace Gitter badge button by simple web link so it's supposed to be more visible.
-
- 02 Jan, 2023 1 commit
-
-
David McCurley authored
-
- 22 Dec, 2022 3 commits
-
-
me-no-dev authored
-
Sanket Wadekar authored
* Fixed issue where esp32 won't reconnect to WiFi AP if the AP was restarted * Added the autoReconnect condition and removed the reconnect reason * Chenges on the WiFi reconnection and added new example * Added new line at the end * Changes reverted with some minor changes. New example remained * Changes reverted and sync Co-authored-by: pedro.minatel <pedro.minatel@espressif.com>
-
Sanket Wadekar authored
* ESP Insights: Added library support * ESP Insights: Added Examples * ESP Insights: Added custom partitions file * ESP Insights: Added API documentation. * Added recipe and script to create Insights package * Updated ESP Insights examples. * Changed Insights Firmware package output directory * Changed license to include SPDX license * Fix Insights package for Windows * Updated .exe of insights script * Added coredump partition to all schemes * Updated header files of Insights diagnostics * hotfix: Added elf-sha256-offset flag in elf2bin builder * Update API to be more Arduino-like and partitions offsets Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
-
- 21 Dec, 2022 9 commits
-
-
Curry authored
* Update BLEDevice.cpp fix potential CORRUPT HEAP problem * move mux to BLEDevice class
-
me-no-dev authored
-
Rodrigo Garcia authored
* fixes warnings and rand function * removes extra space - style
-
Rodrigo Garcia authored
* adds extended HardwareSerial examples * Adds new example with Serial RxTimeout * adds and improves Serial onReceive expamples * adjust includes CMake - UART example * adjust includes CMake - UART example * fixes CMake and CI * adds ESP/Serial to CMakeList * adds ESP/Serial to CMakeList * fixes demo include * fixes BREAK demo * fixes onReceive demo * Changes FIFO Full criteria Changed the "1-by-1" Serial only when baud rate is 57600 or lower. * example code replacement * replaces functions in hal
-
Claus Näveke authored
* Update ledc.rst API has changed with https://github.com/espressif/arduino-esp32/pull/6570 * Update ledc.rst Fix whitespace Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
Rotzbua authored
* Update `WiFiScan` example to show more useful data * Add channel to output. * Add type of encryption to output. * Format output as table. * Update outdated example description. * Add `scanDelete()` as hint to free memory. * added 32 chars SSID + readme edit Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
Bob Igo authored
* replaced original iBeacon example with a known-good one * addressed VojtechBartoska's comment * incorporated P-R-O-C-H-Y's change Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
Zeynep Dicle authored
* added new Deneyap Boards * fixed bug Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
Baptiste authored
* Added support for heltec_wifi_lora_32_V3 and heltec_wifi_kit_32_V3 Changes to be committed: new file: variants/heltec_wifi_kit_32_v3/pins_arduino.h new file: variants/heltec_wifi_lora_32_V3/pins_arduino.h * Added support for heltec_wifi_lora_32_V3 and heltec_wifi_kit_32_V3 Changes to be committed: new file: variants/heltec_wifi_kit_32_v3/pins_arduino.h new file: variants/heltec_wifi_lora_32_V3/pins_arduino.h modified: boards.txt * Added Support for Heltec Boards V3 * change upload max size for HeltecV3 Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com> Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
- 20 Dec, 2022 1 commit
-
-
Me No Dev authored
-
- 19 Dec, 2022 5 commits
-
-
Robert Byrnes authored
* refactor(toString method): Add RSSI / serviceData These are key characteristics of the BLE advertising packet. Really useful, adding to this method allows data to be easily obtained and passed over TCP/IP for processing. * fix: remove line 565 bug
-
Jovan Frandika authored
-
aridet authored
Currently, if a second connection occur in Bluetooth, this second connection is automatically disconnected (line 284). This disconnection trigger the ESP_SPP_CLOSE_EVT, which clear the bit SPP_CONNECTED. But the first connection remain active, and this flag shouldn't be cleared. This fix the issue, by clearing the flag only if the last connection is closed Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
-
Paolo Messina authored
Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
-
Andreas Merkle authored
Performance improvements by replacing sprintf with strcpy/strcat. Additional avoid creating temporary String objects. (#7541) Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
- 15 Dec, 2022 3 commits
-
-
Rodrigo Garcia authored
-
Sanket Wadekar authored
* Changed OTA type in Rainmaker examples * fix: Added patch in Rainmaker examples to prevent crashes during provisioning
-
Pedro Minatel authored
Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
-
- 14 Dec, 2022 6 commits
-
-
Will Anderson authored
* feat: add ESP-C3-M1-I-Kit board to variants * docs: rename file to slug format * Fixes GPIO definitions * Adds ESP32 C3 M1 I Kit to the board list Fixes board.txt file to add the new ESP32_C3_M1_I_KIT variant * fixes extra board separator * Keeps only 4MB flash option * Fix it to Flash 80Mhz QIO only * Undo a change by mistake Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
-
Pedro Minatel authored
API docs changes according to the PR review Contribution message updated
-
RM-Alltrons authored
Added onDisconnect with gatt parameters to BLUEServerCallbacks, equivalent to the existing onConnect (#7559) Co-authored-by: Admin <admin@wlan-244060.nbw.tue.nl>
-
vortigont authored
custom code reply was sending garbage from a buffer instead of crafted DNS header
-
loRe authored
MKSPIFFSTOOL in PlatformIO has been changed to MKFSTOOL.
-
Pedro Minatel authored
-