1. 01 8月, 2022 1 次提交
  2. 28 7月, 2022 3 次提交
  3. 27 7月, 2022 3 次提交
  4. 26 7月, 2022 7 次提交
  5. 25 7月, 2022 2 次提交
  6. 20 7月, 2022 3 次提交
  7. 19 7月, 2022 1 次提交
  8. 18 7月, 2022 2 次提交
  9. 15 7月, 2022 2 次提交
  10. 14 7月, 2022 2 次提交
  11. 06 7月, 2022 6 次提交
    • S
      Rainmaker library extension (#6813) · c93bf11f
      sivar2311 提交于
      * Added definitions for various parameters and UI types.
      
      * Overload for `const char*` added.
      
      * Function `addValidStrList` added.
      This is needed for mode parameters (see example RMakerCustomAirCooler.ino).
      
      * Example of a custom device that uses toggle, mode and range parameters.
      
      * Revert: Added definitions for various parameters and UI types.
      
      * Fixed declaration for addValidStrList
      
      * Fixed missing gpio definition for ESP32C3 target
      Co-authored-by: NMe No Dev <me-no-dev@users.noreply.github.com>
      c93bf11f
    • T
      WIP; Reworked HiFreq_ADC example; Closing #6832 (#6917) · 1b1c36ec
      Tomáš Pilný 提交于
      Description of Change
      
      Original code does not work (crashing) - related issue #6832 - now fixed.
      Extended description to be more helpful.
      Added options to modify the setup at the top of the code via constants.
      Added option do plot with Arduino Serial plotter.
      Even if the crashing was solved alone the ledc PWM would not output any signal.
      
      Tests scenarios
      
      Tested on ESP32 with oscilloscope and signal generator.
      
      Related links
      
      Closing #6832
      1b1c36ec
    • A
      Update ssl_client.cpp (#6942) · 949aa27f
      Anx2k 提交于
      Fixed issue with ssl_client->socket being closed without being consistently set to -1.  Changed close to lwip_close to be consistent with lwip_socket, resolved issue with long term assert after 4+ days (assert failed: lock_release_generic locks.c:186).
      Co-authored-by: NMe No Dev <me-no-dev@users.noreply.github.com>
      949aa27f
    • M
      IDF release/v4.4 (#6910) · 666c66d3
      Me No Dev 提交于
      * Add changes required for the new memory configs
      
      * IDF release/v4.4 6c5fb29c2c
      
      * IDF release/v4.4 c9140caf8c
      666c66d3
    • J
      Add Wemos D1 Uno R32 (#6944) · 9a9e3e59
      jerry-jho 提交于
      9a9e3e59
    • R
      Fixes wrong #define for BUTTON (#6941) · 4b08182c
      Rodrigo Garcia 提交于
      4b08182c
  12. 30 6月, 2022 1 次提交
  13. 28 6月, 2022 2 次提交
    • R
      Doc: Add doc about minimum security for connection to AP (#6909) · cf01523d
      Rotzbua 提交于
      * Add troubleshooting to connect to WEP/WPA APs.
      * Add troubleshooting about WPA3 support.
      cf01523d
    • R
      Fixes BLE Server descriptor update (#6919) · cb52e569
      Rodrigo Garcia 提交于
      Description of Change
      
      This PR fixes an issue related to BLE Server and Descriptors.
      
      The issue:
      If the BLE Server code changes its own descriptors, it is not reflected in the GATTS database.
      BLE2902 CCCD also didn't reflect any changes to the GATTS database.
      Because of this issue, the client could never read the real Descriptor values from the remote Server.
      
      Tests scenarios
      
      Tested with ESP32.
      
      Related links
      
      Fixes #6863
      Fixes #6868
      cb52e569
  14. 27 6月, 2022 2 次提交
  15. 25 6月, 2022 1 次提交
  16. 24 6月, 2022 2 次提交
    • T
      Implement simple RGB driver via digitalWrite; solving #6783 (#6808) · 097ff8b1
      Tomáš Pilný 提交于
      * Initial implementation of RGB driver via digitalWrite
      
      * Moved constants to pins_arduino.h
      
      * Changed pin definition + added example
      
      * Wrapped BlinkRGB in #ifdef BOARD_HAS_NEOPIXEL
      
      * Removed forgotten log from example
      
      * Moved RGBLedWrite to new file esp32-hal-rgb-led and created pinMode in variatn.cpp
      
      * Updated example - lowered single channel brightness to LED_BRIGHTNESS
      
      * Changed function name from RGBLedWrite to neopixelWrite + code polishing
      
      * Moved pinSetup portion related to RGB back to common file
      097ff8b1
    • L
      WireMaster example clarity (#6844) · f3763164
      Luc 提交于
      - Created new temporary variable, stopping confusion with the reuse of "error". As Wire.requestFrom() doesn't return an error.
      - Added a cast to help clarify when and why bytes are being read
      f3763164