1. 22 12月, 2021 2 次提交
  2. 21 12月, 2021 1 次提交
  3. 17 12月, 2021 1 次提交
  4. 16 12月, 2021 1 次提交
  5. 11 12月, 2021 2 次提交
  6. 10 12月, 2021 1 次提交
  7. 08 12月, 2021 1 次提交
  8. 07 12月, 2021 1 次提交
  9. 05 12月, 2021 1 次提交
  10. 03 12月, 2021 1 次提交
  11. 02 12月, 2021 1 次提交
  12. 30 11月, 2021 2 次提交
  13. 27 11月, 2021 3 次提交
  14. 25 11月, 2021 3 次提交
  15. 23 11月, 2021 1 次提交
  16. 19 11月, 2021 3 次提交
  17. 12 11月, 2021 3 次提交
  18. 11 11月, 2021 3 次提交
  19. 09 11月, 2021 2 次提交
  20. 02 11月, 2021 1 次提交
  21. 29 10月, 2021 1 次提交
  22. 27 10月, 2021 2 次提交
  23. 23 10月, 2021 1 次提交
  24. 21 10月, 2021 2 次提交
    • L
      Adding AXP192 and IP5306 - Power Management chips (#1673) · 4ea23d73
      Laurent Ellerbach 提交于
      * initial commit
      
      * Adjusting based on PR feedback
      
      * adjusting ArgumentNullException
      4ea23d73
    • P
      Add possibility to externally extend Arduino library (#1635) · 289f2508
      Patrick Grawehr 提交于
      * Support for frequency measurement using Arduino
      
      * Add infrastructure to add extended command handlers
      
      * Move DHT support to extension module
      
      * Move frequency measurement support to separate module
      
      * Message reply handling fixed
      
      * Ensure a disposed instance doesn't cause any harm here
      
      * Fix command sequence for DisableFrequencyReporting
      
      * Change ID for FREQUENCY_COMMAND
      
      * Make sure the pin mode is set
      
      This is merely a test call to verify the mode handling is correct
      
      * Allow setting/getting the internal mode from clients
      
      Should not use the FirmataDevice instance in an extended
      command handler, since it would be inaccessible if moved
      to an external library.
      
      * Fix unit test
      
      * Fix missing documentation
      
      * Review findings addressed
      
      * Fix a problem when connecting to an Arduino Uno
      
      Since this one resets itself when opening the serial port,
      the timeout was to short, resulting in either a failed connection or
      an incorrect version reported.
      
      * Avoid static member and use ReaderWriterLockSlim
      
      Gives more clean internal structure
      
      * Minor review comments
      
      * Recursion is not required
      
      * Add error return to SendCommandAndWait, add convenience functions
      289f2508