1. 30 Sep, 2020 14 commits
  2. 28 Sep, 2020 1 commit
  3. 31 Aug, 2020 1 commit
  4. 25 Aug, 2020 2 commits
  5. 18 Jul, 2020 1 commit
  6. 31 May, 2020 2 commits
  7. 29 May, 2020 1 commit
  8. 22 May, 2020 3 commits
  9. 05 May, 2020 1 commit
  10. 04 May, 2020 1 commit
  11. 23 Apr, 2020 1 commit
  12. 21 Apr, 2020 1 commit
  13. 15 Apr, 2020 1 commit
    • sweetymhaiske's avatar
      Add support of unified provisioning to Arduino · 2c9b6485
      sweetymhaiske authored
      1. WiFiProv.ino sketch is added that allows arduino users to do provisioning via SoftAP or BLE. WiFi.beginProvision( ) API is designed for provisioning in Arduino.
      2. In WiFiProv.h provisioning class is defined.
      3. WiFiProv.cpp contains implementation for provisioning class.
      4. README.md file is added which contains detail information for working.
      2c9b6485
  14. 13 Apr, 2020 1 commit
  15. 12 Mar, 2020 1 commit
  16. 14 Feb, 2020 1 commit
  17. 29 Jan, 2020 3 commits
  18. 26 Jan, 2020 2 commits
  19. 25 Jan, 2020 1 commit
  20. 21 Jan, 2020 1 commit
    • Mark D's avatar
      fix WiFiClient.connected() (#3654) · bb0a194b
      Mark D authored
      WiFiClient.connected() was hanging thinking there was still a connection when the remote had already closed. The one-liner in this patch addresses recv() returning 0 and errno==128. I couldn't find the corresponding errno for 128 but its caught by the case statement which includes EPIPE, ENOTCONN, ECONNRESET and ECONNABORTED so I assume its one of those. Broken pipe maybe?
      ```c
      [D][WiFiClient.cpp:511] connected(): Disconnected: RES: 0, ERR: 128
      ```
      EDIT: added comment to reflect that recv() can set errno when it returns 0.
      bb0a194b