1. 21 Apr, 2022 6 commits
  2. 20 Apr, 2022 2 commits
  3. 05 Apr, 2022 2 commits
  4. 04 Apr, 2022 6 commits
  5. 31 Mar, 2022 1 commit
  6. 29 Mar, 2022 3 commits
  7. 28 Mar, 2022 15 commits
  8. 23 Mar, 2022 1 commit
  9. 18 Mar, 2022 1 commit
  10. 15 Mar, 2022 1 commit
    • John P. Swensen's avatar
      Added another overloaded WiFiSTAClass::begin() function that provides… (#6398) · d977359e
      John P. Swensen authored
      Summary
      
      The examples demonstrate how to create a WPA2 Enterprise connection, but it requires using various direct esp_idf functions. This patch is intended to create another overloaded version of the WiFi.begin() function that allows a user to create a WPA2 Enterprise connection in much the same way as different kinds of connections.
      
      My only question for the core maintainers is whether I should leave those #ifdef's in there. I added them so that it was easy to disable all the code I added via defines from my platformio.ini file, but they technically aren't necessary.
      
      Impact
      
      This should make it easier for novice users to create WPA2 Enterprise connections. For my university, I didn't need a root certificate or the client certificate or client key, so I haven't been able to debug those scenarios, but I built the begin functions to allow any one of those to be used, if needed.
      
      I can confirm that eduroam-style WPA2 Enterprise networks that only require authentication with a username and password works as expected.
      d977359e
  11. 14 Mar, 2022 2 commits
    • Limor "Ladyada" Fried's avatar
      Some board variant fixes (#6411) · ba8024c0
      Limor "Ladyada" Fried authored
      * make work with rev C pcb
      
      * use #define for easy testing
      ba8024c0
    • mrengineer7777's avatar
      Add missing include in AsyncUDP.h (#6412) · e87b87d0
      mrengineer7777 authored
      In my project I'm getting the error 
      ```
      In file included from lib/Discovery/Discovery.cpp:2:
      C:/Users/David/.platformio/packages/framework-arduinoespressif32/libraries/AsyncUDP/src/AsyncUDP.h:47:1: error: expected class-name before '{' token
      ```
      
      Adding a reference to Stream.h fixes it.
      e87b87d0