diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 00000000..28cc386c --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,29 @@ +# Contributor Guide + +Thanks for your interest in contributing to the **Arduino Library Manager Registry**! + +## Support and Discussion + +If you would like to request assistance or discuss the **Library Manager Registry**, please make a topic on **Arduino Forum**: + +https://forum.arduino.cc/c/17 + +## Registration and Maintenance + +--- + +⚠ If you behave irresponsibly in your interactions with this repository, your Library Manager Registry privileges will be revoked. + +Carefully read and follow the instructions in any comments the bot and human maintainers make on your pull requests. If you are having trouble following the instructions, add a comment that provides a detailed description of the problem you are having and a human maintainer will provide assistance. + +Although we have set up automation for the most basic tasks, this repository is maintained by humans. So behave in a manner appropriate for interacting with humans, including clearly communicating what you are hoping to accomplish. + +--- + +If you would like to submit a library, or request registry maintenance for a library already in the registry, please follow the instructions provided in the documentation: + +[**Click here to see the documentation**](../README.md#table-of-contents) + +Make sure to read the relevant sections of the FAQ: + +[**Click here to see the FAQ**](../FAQ.md#table-of-contents) diff --git a/.github/workflows/assets/accesslist.yml b/.github/workflows/assets/accesslist.yml new file mode 100644 index 00000000..4b07ab91 --- /dev/null +++ b/.github/workflows/assets/accesslist.yml @@ -0,0 +1,55 @@ +# Access control for the Arduino Library Manager registry. +# This file is used by https://github.com/arduino/library-registry-submission-parser, via the "Manage PRs" workflow. + +# Allowlist +- host: github.com + name: per1234 + access: allow + reference: + +# Denylist +- host: github.com + # They later changed their username to galihru, for which an additional entry was added. + name: 4211421036 + access: deny + reference: https://github.com/arduino/library-registry/pull/6269#pullrequestreview-2813557457 +- host: github.com + name: 7Semi + access: deny + reference: https://github.com/arduino/library-registry/pull/5734#pullrequestreview-2548818476 +- host: github.com + name: ajangrahmat + access: deny + reference: https://github.com/arduino/library-registry/pull/5706#issuecomment-2588923290 +- host: github.com + name: brincode + access: deny + reference: https://github.com/arduino/library-registry/pull/4460#issuecomment-2589062464 +- host: github.com + name: DefHam140 + access: deny + reference: https://github.com/arduino/library-registry/pull/5265#issuecomment-2589039572 +- host: github.com + name: ErlTechnologies + access: deny + reference: https://github.com/arduino/library-registry/pull/4873#issuecomment-2589138298 +- host: github.com + name: galihru + access: deny + reference: https://github.com/arduino/library-registry/pull/6514#pullrequestreview-2969201873 +- host: github.com + name: kelasrobot + access: deny + reference: https://github.com/arduino/library-registry/pull/5706#issuecomment-2588923290 +- host: github.com + name: Subodh-roy2 + access: deny + reference: https://github.com/arduino/library-registry/pull/4422#issuecomment-2589051618 +- host: github.com + name: vpbharath + access: deny + reference: https://github.com/arduino/library-registry/pull/4873#issuecomment-2589138298 +- host: github.com + name: YoavPaz + access: deny + reference: https://github.com/arduino/library-registry/pull/5741#issuecomment-2589016403 diff --git a/.github/workflows/manage-prs.yml b/.github/workflows/manage-prs.yml index 9282bb92..2ad77f03 100644 --- a/.github/workflows/manage-prs.yml +++ b/.github/workflows/manage-prs.yml @@ -1,7 +1,7 @@ name: Manage PRs env: - SUBMISSION_PARSER_VERSION: 1.1.1 # See: https://github.com/arduino/library-manager-submission-parser/releases + SUBMISSION_PARSER_VERSION: 2.0.0 # See: https://github.com/arduino/library-manager-submission-parser/releases MAINTAINERS: | # GitHub user names to request reviews from in cases where PRs can't be managed automatically. - per1234 @@ -125,6 +125,7 @@ jobs: runs-on: ubuntu-latest outputs: + conclusion: ${{ steps.parse-request.outputs.conclusion }} type: ${{ steps.parse-request.outputs.type }} error: ${{ steps.parse-request.outputs.error }} arduinoLintLibraryManagerSetting: ${{ steps.parse-request.outputs.arduinoLintLibraryManagerSetting }} @@ -133,6 +134,8 @@ jobs: indexer-logs-urls: ${{ steps.parse-request.outputs.indexer-logs-urls }} steps: + # Checkout the tip of the default branch (this is the action's default ref input value when workflow is triggered + # by an issue_comment or pull_request_target event). - name: Checkout local repository uses: actions/checkout@v4 @@ -160,12 +163,15 @@ jobs: chmod u+x "${{ steps.download-parser.outputs.file-path }}" REQUEST="$( \ "${{ steps.download-parser.outputs.file-path }}" \ + --accesslist=".github/workflows/assets/accesslist.yml" \ --diffpath="${{ needs.diff.outputs.path }}/${{ needs.diff.outputs.filename }}" \ --repopath="${{ github.workspace }}" \ --listname="repositories.txt" \ + --submitter="${{ github.actor }}" \ )" # Due to limitations of the GitHub Actions workflow system, dedicated outputs must be created for use in # certain workflow fields. + echo "::set-output name=conclusion::$(echo "$REQUEST" | jq -r -c '.conclusion')" echo "::set-output name=type::$(echo "$REQUEST" | jq -r -c '.type')" echo "::set-output name=error::$(echo "$REQUEST" | jq -r -c '.error')" echo "::set-output name=arduinoLintLibraryManagerSetting::$(echo "$REQUEST" | jq -r -c '.arduinoLintLibraryManagerSetting')" @@ -191,10 +197,13 @@ jobs: labels: | - "topic: ${{ needs.parse.outputs.type }}" + # Handle problem found by the parser that can potentially be resolved by requester. parse-fail: needs: - parse - if: needs.parse.outputs.error != '' + if: > + needs.parse.outputs.conclusion != 'declined' && + needs.parse.outputs.error != '' runs-on: ubuntu-latest steps: @@ -219,6 +228,56 @@ jobs: More information: https://github.com/${{ github.repository }}/blob/main/README.md#if-the-problem-is-with-the-pull-request + # Requester's registry privileges have been revoked. + decline-request: + needs: + - parse + if: > + needs.parse.outputs.conclusion == 'declined' && + needs.parse.outputs.error != '' + runs-on: ubuntu-latest + steps: + - name: Comment reason for declining request + uses: octokit/request-action@v2.x + if: needs.parse.outputs.error != '' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments + owner: ${{ github.repository_owner }} + repo: ${{ github.event.repository.name }} + issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} + body: | + | + Hi @${{ github.actor }} + Your request has been declined: + + ${{ env.ERROR_MESSAGE_PREFIX }}${{ needs.parse.outputs.error }} + + - name: Close PR + uses: octokit/request-action@v2.x + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + route: PATCH /repos/{owner}/{repo}/pulls/{pull_number} + owner: ${{ github.repository_owner }} + repo: ${{ github.event.repository.name }} + pull_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} + state: closed + + - name: Add conclusion label to PR + uses: octokit/request-action@v2.x + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + # See: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue + route: POST /repos/{owner}/{repo}/issues/{issue_number}/labels + owner: ${{ github.repository_owner }} + repo: ${{ github.event.repository.name }} + issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} + labels: | + - "conclusion: ${{ needs.parse.outputs.conclusion }}" + check-submissions: name: Check ${{ matrix.submission.submissionURL }} needs: @@ -226,6 +285,7 @@ jobs: if: > needs.parse.outputs.type == 'submission' || needs.parse.outputs.type == 'modification' + runs-on: ubuntu-latest strategy: fail-fast: false @@ -275,6 +335,15 @@ jobs: if: matrix.submission.error != '' run: echo "PASS=false" >> "$GITHUB_ENV" + # Parser checks are relevant in the case where request is declined due to registry access having been revoked for + # the library repository owners. However, the rest of the checks are irrelevant and may result in confusing + # comments from the bot, so should be skipped. + - name: Skip the rest of the checks if request is declined + if: > + needs.parse.outputs.conclusion == 'declined' && + env.PASS == 'true' + run: echo "PASS=false" >> "$GITHUB_ENV" + - name: Install Arduino Lint if: env.PASS == 'true' run: | @@ -418,12 +487,15 @@ jobs: run: | test -d "${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PATH }}" + # Handle problem found by the submission checks that can potentially be resolved by requester. check-submissions-fail: needs: + - parse - check-submissions-result - if: needs.check-submissions-result.outputs.pass == 'false' + if: > + needs.parse.outputs.conclusion != 'declined' && + needs.check-submissions-result.outputs.pass == 'false' runs-on: ubuntu-latest - steps: - name: Comment instructions to fix errors detected during submission checks uses: octokit/request-action@v2.x @@ -449,6 +521,37 @@ jobs: More information: https://github.com/${{ github.repository }}/blob/main/README.md#if-the-problem-is-with-the-pull-request + decline-submissions: + needs: + - parse + - check-submissions + if: needs.parse.outputs.conclusion == 'declined' + runs-on: ubuntu-latest + steps: + - name: Close PR + uses: octokit/request-action@v2.x + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + route: PATCH /repos/{owner}/{repo}/pulls/{pull_number} + owner: ${{ github.repository_owner }} + repo: ${{ github.event.repository.name }} + pull_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} + state: closed + + - name: Add conclusion label to PR + uses: octokit/request-action@v2.x + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + # See: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue + route: POST /repos/{owner}/{repo}/issues/{issue_number}/labels + owner: ${{ github.repository_owner }} + repo: ${{ github.event.repository.name }} + issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} + labels: | + - "conclusion: ${{ needs.parse.outputs.conclusion }}" + merge: needs: - diff @@ -601,6 +704,7 @@ jobs: - parse # These request types can't be automatically approved. if: > + needs.parse.outputs.conclusion != 'declined' && needs.parse.outputs.type != 'submission' && needs.parse.outputs.type != 'invalid' runs-on: ubuntu-latest @@ -627,8 +731,10 @@ jobs: needs: # Run after all other jobs - parse-fail + - decline-request - merge-fail - check-submissions-fail + - decline-submissions - label - not-submission # Run if any job failed. The workflow is configured so that jobs only fail when there is an unexpected error. diff --git a/FAQ.md b/FAQ.md index 01fd34f4..eba40611 100644 --- a/FAQ.md +++ b/FAQ.md @@ -72,6 +72,8 @@ Follow the instructions [here](README.md#adding-a-library-to-library-manager). ### What are the requirements for a library to be added to Library Manager? +- [ ] The library must be something of potential value to the Arduino community. +- [ ] The submitter must behave in a responsible manner in their interactions with the Library Manager Registry. - [ ] The library must be fully compliant with the [Arduino Library Specification](https://arduino.github.io/arduino-cli/latest/library-specification). - [ ] The library must have [a library.properties file](https://arduino.github.io/arduino-cli/latest/library-specification/#library-metadata), in compliance with the Arduino Library 1.5 format. - [ ] The library.properties file must be located in the root of the repository. diff --git a/README.md b/README.md index c25b8e1c..b0d325c6 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,16 @@ See the instructions below for detailed instructions on how to do this via the G ### Instructions +--- + +⚠ If you behave irresponsibly in your interactions with this repository, your Library Manager Registry privileges will be revoked. + +Carefully read and follow the instructions in any comments the bot and human maintainers make on your pull requests. If you are having trouble following the instructions, add a comment that provides a detailed description of the problem you are having and a human maintainer will provide assistance. + +Although we have set up automation for the most basic tasks, this repository is maintained by humans. So behave in a manner appropriate for interacting with humans, including clearly communicating what you are hoping to accomplish. + +--- + 1. You may want to first take a look at [the requirements for admission into the Arduino Library Manager index](FAQ.md#submission-requirements). Each submission will be checked for compliance before being accepted. diff --git a/repositories.txt b/repositories.txt index f68d0b58..f78ad010 100644 --- a/repositories.txt +++ b/repositories.txt @@ -1,11 +1,140 @@ +https://github.com/GalaidaMaxim/Delayer +https://github.com/TheBlackSwitch/PS2Keyboard +https://github.com/aiplayuser/esp8266easylib.git +https://github.com/Circuit-Digest/GeoLinkerLite +https://github.com/RCmags/CN0391 +https://github.com/Init-io/InitMQTT.git +https://github.com/Init-io/InitJson.git +https://github.com/phuongnamzz/HLK-LD6002 +https://github.com/milad-nikpendar/initMemory +https://github.com/jobitjoseph/SimpleOLED +https://github.com/cvrelectronica/EasyRobot +https://github.com/fmeng/FastRotaryEncoder +https://github.com/CurtoLab/miniMachine.git +https://github.com/MAKE-arduino/M_RGB.git +https://github.com/saveme1507/EasyMQTT +https://github.com/ronibandini/ESP32N8NButton +https://github.com/aikopras/AP_DCC_Decoder_Core +https://github.com/fadhil-1911/MyDHT22 +https://github.com/sbarabe/SBK_HT16K33 +https://github.com/sbarabe/SBK_BarDrive +https://github.com/sbarabe/SBK_MAX72xx +https://github.com/RomanZ1243/LEDIndication +https://github.com/Herobrine-pixel/LaserToMap360 +https://github.com/Herobrine-pixel/LEDPatternLib +https://github.com/arduino-libraries/Arduino_CapacitiveTouch +https://github.com/magnus-cpu/NexNTC +https://github.com/diy-electron1cs/DE_tacho +https://github.com/NightHawk-Technology/gnome-avr +https://github.com/Herobrine-pixel/TouchSensorLib +https://github.com/Herobrine-pixel/AudioCompass +https://github.com/anonymousaga/TzDbLookup +https://github.com/aircey/lig-i2c-gateway +https://github.com/Circuit-Digest/GeoLinker +https://github.com/arnabdebnath208/TimeoutScheduler +https://github.com/aikopras/Servo-TCA +https://github.com/robotieee/compkit +https://github.com/sebastianregelmann/CypressCY8CMBR3116 +https://github.com/m5stack/M5Unit-CRYPTO +https://github.com/m5stack/M5Unit-INFRARED +https://github.com/devilhyt/lump-device-builder-library +https://github.com/santerilindfors/BL0942 +https://github.com/Ewan-Dev/mpu6050 +https://github.com/owochel/MistMaker +https://github.com/Ynvisible-Electronics/YNV-Driver-v5-Arduino-Library +https://github.com/neondatabase-labs/NeonPostgresOverHTTP +https://github.com/thomasfredericks/MicroSlip +https://github.com/SkaFUU/AsyncWebOTA +https://github.com/DIYables/DIYables_TFT_Round +https://github.com/DIYables/DIYables_TFT_Shield +https://github.com/DIYables/DIYables_TFT_Touch_Shield +https://github.com/BareMetal6502/BuzzKill-Arduino-Library +https://github.com/Kostovite/TWAI_ISO-TP +https://github.com/RobotZwrrl/RobotButterfly_Library +https://github.com/crystalfontz/Arduino_CFA039A0-N-V_Library +https://github.com/IvoryRubble/ArduinoSegaGamepadLibrary +https://github.com/IvoryRubble/ArduinoNesGamepadLibrary +https://github.com/leofig-rj/Arduino-LF_LoRa +https://github.com/acornelissen/DTS6012M_UART +https://github.com/m5stack/M5Unit-EXTIO +https://github.com/m5stack/M5Unit-DISTANCE +https://github.com/beastbroak30/Mecmotor +https://github.com/jmksn/ArduEasy +https://github.com/beeneotr/ooreneo +https://github.com/austin207/ArduinoCalculus.git +https://github.com/salim-mrw/USB-Rubber +https://github.com/drmpf/RTC_NTP_replacement +https://github.com/salernosimone/espkit-arduino +https://github.com/salernosimone/tensorflow-runtime-universal-arduino +https://github.com/hanzeelvilla/MyLedIO +https://github.com/Eason-SYC/WS2812_SYC_Air001 +https://github.com/beniseman/HX71708 +https://github.com/beniseman/lineScale +https://github.com/dezibot/dezibot +https://github.com/hanzeelvilla/MyButton +https://github.com/mcenkcavusoglu/MLX90392_library +https://github.com/Bendeguz-Cs/DC_driver +https://github.com/ChandanETE/CK_MAX +https://github.com/renesas/nfc-ptx105r-spi-arduino +https://github.com/renesas/nfc-ptx105r-i2c-arduino +https://github.com/renesas/nfc-ptx105r-uart-arduino +https://github.com/vdwulp/iButtonTag +https://github.com/PeterBakarac/BayesianOptimization +https://github.com/MuhammadMakhfud/PZEM003_Fud +https://github.com/manzarehassin/tinyRTCds1307 +https://github.com/manzarehassin/softRTC +https://github.com/gunakkoc/MultiStepperLite +https://github.com/Dzmitry-visual-studio-2022/Winduino +https://github.com/dvelaren/Halisense_SoilSensor +https://github.com/Kenneract/SPL07-003-Arduino-Library +https://github.com/JakubSdf/LedDisplayFonts +https://github.com/Amanecer-Digital-SL/am_ambot_library +https://github.com/Infineon/arduino-xensiv-angle-sensor-tlx5012 +https://github.com/csobirka/SevenSegment +https://github.com/Zeppelin500/MBusCom +https://github.com/MYCAMEL222/AbleTP +https://github.com/snowhalationmkii/TTP229_BS81X_Serial +https://github.com/DigitalCodesign/MentorBit-VL53 +https://github.com/DigitalCodesign/MentorBit-BH1750 +https://github.com/Khuuxuanngoc/Makerlabvn_I2C_Line_Follower_Sensor +https://github.com/robinz-labs/digishow-rioc +https://github.com/Neurotech-Hub/KepecsWheel +https://github.com/Mourty/PLCTimers +https://github.com/Mourty/ExtendedTime +https://github.com/ayushsharma82/RPAsyncTCP +https://github.com/CIRCUITSTATE/CSE_CST328 +https://github.com/hmueller01/pubsubclient3 +https://github.com/mvader2/AD5252 +https://github.com/Stutchbury/TouchScreenAdapter +https://github.com/m5stack/M5Unit-AudioPlayer +https://github.com/Bendeguz-Cs/Rotary_encoder +https://github.com/srinjaycode/VoltLora +https://github.com/VanSilver/ShiftRegisterPWM595 +https://github.com/AryanBhirud/BitFlash_Client +https://github.com/a-saab/PrayerTimes +https://github.com/nextgentech-512/Single-Wire-Data-Bus +https://github.com/roncoa/StringEEPROM +https://github.com/snowhalationmkii/BS811X_I2C +https://github.com/sstaub/IDToolsPico +https://github.com/QuantumLeaps/qp-arduino +https://github.com/sstaub/LCD-HD44780 +https://github.com/sstaub/LCD-I2C-HD44780 +https://github.com/Neurotech-Hub/Hublink-Node +https://github.com/adityasharma-tech/grafik-serial +https://github.com/Neurotech-Hub/Hublink-BEAM +https://github.com/JagritThukral/ubidots-mqtt-esp32/ +https://github.com/wallysalami/BarcodeGFX +https://github.com/wallysalami/QRCodeGFX +https://github.com/wallysalami/SQLiteManager +https://github.com/roncoa/SimRacingController +https://github.com/KiselevIvan/kidLibrary +https://github.com/dmachinewhisperer/micro-prompts-ino https://github.com/rjsachse/ESP32-RTSPServer.git https://github.com/schreibfaul1/ESP32-audioI2S -https://github.com/7Semi/SevenSemiSHT4x_Lib https://github.com/hasenradball/MCP23008-I2C https://github.com/roncoa/KeySequence https://github.com/juanmercadin/ReceptorRF https://github.com/valerii-fr/menux -https://github.com/7Semi/7SemiSHT4x_Library https://github.com/Moarbue/incremental-rotary-encoder https://github.com/Moarbue/arduino-button https://github.com/Moarbue/FIR-Filter @@ -17,6 +146,7 @@ https://github.com/botnroll/BnrOneAPlus https://github.com/toaha63/BanglaDuino https://github.com/Moarbue/MAX31855-library https://github.com/ropg/LVGL_CYD +https://github.com/Enzo-Coutinho/APDS-9151 https://github.com/DigitalCodesign/MentorBit-1Rele https://github.com/DigitalCodesign/MentorBit-2Rele https://github.com/DigitalCodesign/MentorBit-3LED @@ -66,16 +196,18 @@ https://github.com/blasilli/GBALib_ShiftRegister https://github.com/blasilli/GBALib_UltrasonicSensor https://github.com/henriberisha/EasyEspNow https://github.com/fabricioitajuba/Internal_eeprom -https://github.com/gi0rg0sPapamichail/YDLiDaR_GS2 +https://github.com/Hyperion-Robotics/YDLiDaR_GS2 https://github.com/VanSilver/LCD595 https://github.com/biomurph/GrayCode https://github.com/arielzw/DPS-Power-Supply https://github.com/cheerlights/cheerlights-arduino-library -https://github.com/gi0rg0sPapamichail/QuickESPNow +https://github.com/Hyperion-Robotics/QuickESPNow https://github.com/jjlondonoc/AFE4950-Arduino-Library https://github.com/jjlondonoc/MCP4132-Arduino-Library https://github.com/MiguelLoureiro98/LM35IC +https://github.com/MiguelLoureiro98/TimeSeries https://github.com/m5stack/M5Unit-TOF +https://github.com/m5stack/M5Unit-COLOR https://github.com/m5stack/M5Unit-WEIGHT https://github.com/blasilli/GBALib_Wave https://github.com/modspi/MODSPI_Modules @@ -171,6 +303,7 @@ https://github.com/drrnb/SingleSevenSegment https://github.com/microbotsio/DriveCell https://github.com/spaziochirale/ArduTFLite https://github.com/MoreThanRobotsFR/MTR_STUSB4500 +https://github.com/MEmbeddedTLB/Devices https://github.com/MoreThanRobotsFR/MTR_ADS7830 https://github.com/mamunul/BanglaText https://github.com/wilson-malone/RS485_Arduino_Wind_Direction_Speed_Sensors @@ -208,7 +341,7 @@ https://github.com/Khuuxuanngoc/TongHopThuVienCon1 https://github.com/Tobsoft/HTL_onboard https://github.com/thepudding/bofu https://github.com/Khuuxuanngoc/TongHopThuVien.git -https://github.com/eloquentarduino/tinyml4all-arduino.git +https://github.com/salernosimone/tinyml4all-arduino https://github.com/CIRCUITSTATE/CSE_CircularBuffer https://github.com/bmurzabaev/mcp3201 https://github.com/CIRCUITSTATE/CSE_MillisTimer @@ -272,8 +405,8 @@ https://github.com/x0x0200/VARSTEP_ultrasonic https://github.com/StefanHerald/Timing https://github.com/tdk-invn-oss/pressure.arduino.ICP201XX https://github.com/DigitalCodesign/MentorBit-Library +https://github.com/tabahi/StatefulGSMLib/ https://github.com/tabahi/ESP-Wifi-Config -https://github.com/tabahi/TabahiConsole https://github.com/karolis1115/FTPduino https://github.com/RajasundaramM/ReadFilter https://github.com/SylvainMontagny/LoRaE5 @@ -380,7 +513,7 @@ https://github.com/acksen/AcksenPump https://github.com/acksen/AcksenUtils https://github.com/acrandal/RevEng_PAJ7620 https://github.com/acrobotic/Ai_Ardulib_SSD1306 -https://github.com/Acrome-Smart-Motor-Driver/SMD-Arduino-Library +https://github.com/Acrome-Smart-Motion-Devices/SMD-Arduino-Library https://github.com/adafruit/Adafruit_10DOF https://github.com/adafruit/Adafruit_9DOF https://github.com/adafruit/Adafruit_AD569x @@ -402,6 +535,7 @@ https://github.com/adafruit/Adafruit_AMRadio https://github.com/adafruit/Adafruit_APDS9960 https://github.com/adafruit/Adafruit_Arcada https://github.com/adafruit/Adafruit_Arcada_GifDecoder +https://github.com/adafruit/Adafruit_AS5600 https://github.com/adafruit/Adafruit_AS726x https://github.com/adafruit/Adafruit_AS7341 https://github.com/adafruit/Adafruit_AVRProg @@ -429,6 +563,7 @@ https://github.com/adafruit/Adafruit_CircuitPlayground https://github.com/adafruit/Adafruit_CompositeVideo https://github.com/adafruit/Adafruit_CPFS https://github.com/adafruit/Adafruit_CST8XX_Library +https://github.com/adafruit/Adafruit_DACX578 https://github.com/adafruit/Adafruit_DAP https://github.com/adafruit/Adafruit_Debounce https://github.com/adafruit/Adafruit_DotStar @@ -438,6 +573,7 @@ https://github.com/adafruit/Adafruit_DRV2605_Library https://github.com/adafruit/Adafruit_DS1841 https://github.com/adafruit/Adafruit_DS248x https://github.com/adafruit/Adafruit_DS3502 +https://github.com/adafruit/Adafruit-DVI-HSTX https://github.com/adafruit/Adafruit_EMC2101 https://github.com/adafruit/Adafruit_EPD https://github.com/adafruit/Adafruit_ESP8266 @@ -468,6 +604,7 @@ https://github.com/adafruit/Adafruit_ILI9341 https://github.com/adafruit/Adafruit_ImageReader https://github.com/adafruit/Adafruit_INA219 https://github.com/adafruit/Adafruit_INA228 +https://github.com/adafruit/Adafruit_INA237_INA238 https://github.com/adafruit/Adafruit_INA260 https://github.com/adafruit/Adafruit_INA3221 https://github.com/adafruit/Adafruit_IntelliKeys @@ -485,6 +622,7 @@ https://github.com/adafruit/Adafruit_LIS331 https://github.com/adafruit/Adafruit_LIS3DH https://github.com/adafruit/Adafruit_LIS3MDL https://github.com/adafruit/Adafruit_LPS2X +https://github.com/adafruit/Adafruit_LPS28 https://github.com/adafruit/Adafruit_LPS35HW https://github.com/adafruit/Adafruit_LSM303_Accel https://github.com/adafruit/Adafruit_LSM303DLH_Mag @@ -514,6 +652,7 @@ https://github.com/adafruit/Adafruit_MLX90640 https://github.com/adafruit/Adafruit_MMA8451_Library https://github.com/adafruit/Adafruit_MMC56x3 https://github.com/adafruit/Adafruit_Motor_Shield_V2_Library +https://github.com/RakibulIslam1/WebController https://github.com/adafruit/Adafruit_MP3 https://github.com/adafruit/Adafruit_MPL115A2 https://github.com/adafruit/Adafruit_MPL3115A2_Library @@ -532,6 +671,7 @@ https://github.com/adafruit/Adafruit_NeoPXL8 https://github.com/adafruit/Adafruit_NeoTrellisM4 https://github.com/adafruit/Adafruit_nRF8001 https://github.com/adafruit/Adafruit_nRFCrypto +https://github.com/adafruit/Adafruit_OPT4048 https://github.com/adafruit/Adafruit_OV7670 https://github.com/adafruit/Adafruit_PCF8574 https://github.com/adafruit/Adafruit_PCF8591 @@ -567,6 +707,7 @@ https://github.com/adafruit/Adafruit_SSD1306 https://github.com/adafruit/Adafruit_SSD1325_Library https://github.com/adafruit/Adafruit_SSD1327 https://github.com/adafruit/Adafruit_STMPE610 +https://github.com/adafruit/Adafruit_STSPIN https://github.com/adafruit/Adafruit_TCA8418 https://github.com/adafruit/Adafruit_TCS34725 https://github.com/adafruit/Adafruit_TestBed @@ -578,6 +719,7 @@ https://github.com/adafruit/Adafruit_TinyUSB_Arduino https://github.com/adafruit/Adafruit_TLA202x https://github.com/adafruit/Adafruit_TLC5947 https://github.com/adafruit/Adafruit_TLC59711 +https://github.com/adafruit/Adafruit_TLV320_I2S https://github.com/adafruit/Adafruit_TMP006 https://github.com/adafruit/Adafruit_TMP007_Library https://github.com/adafruit/Adafruit_TMP117 @@ -692,6 +834,7 @@ https://github.com/agdl/GoPRO https://github.com/agdl/WireUpdate https://github.com/aggregate/LCLV https://github.com/agmangas/SerialRFID +https://github.com/ahagelberg/PropulsionStepper https://github.com/aharshac/EasyNTPClient https://github.com/aharshac/StringSplitter https://github.com/ahmedarif193/Hlw8032 @@ -786,6 +929,7 @@ https://github.com/alireza7575/MKS_SERVO42 https://github.com/alireza7575/MKS_SERVO57 https://github.com/alkonosst/ADS1115 https://github.com/alkonosst/MCP23017 +https://github.com/alkonosst/RTOScppESP32 https://github.com/alkonosst/SettingsManagerESP32.git https://github.com/alkonosst/SSLClientESP32 https://github.com/allenchak/TA6932 @@ -930,6 +1074,7 @@ https://github.com/Arduboy/ArduboyPlaytune https://github.com/ArduCAM/Arducam_dvp https://github.com/ArduCAM/Arducam_Mega https://github.com/ArduCAM/Arducam_mini +https://github.com/ArduCAM/Arducam_Qwiic_CAM_Arduino https://github.com/arduino-libraries/AlPlc_Opta https://github.com/arduino-libraries/AlPlc_PMC https://github.com/arduino-libraries/Arduino_10BASE_T1S @@ -943,6 +1088,7 @@ https://github.com/arduino-libraries/Arduino_BMI270_BMM150 https://github.com/arduino-libraries/Arduino_BQ24195 https://github.com/arduino-libraries/Arduino_Braccio_plusplus https://github.com/arduino-libraries/Arduino_BuiltIn +https://github.com/arduino-libraries/Arduino_CloudUtils https://github.com/arduino-libraries/Arduino_CMSIS-DSP https://github.com/arduino-libraries/Arduino_ConnectionHandler https://github.com/arduino-libraries/Arduino_CRC32 @@ -959,6 +1105,7 @@ https://github.com/arduino-libraries/Arduino_HS300x https://github.com/arduino-libraries/Arduino_HTS221 https://github.com/arduino-libraries/Arduino_JSON https://github.com/arduino-libraries/Arduino_KNN +https://github.com/arduino-libraries/Arduino_KVStore https://github.com/arduino-libraries/Arduino_LowPowerPortentaH7 https://github.com/arduino-libraries/Arduino_LowPowerPortentaC33 https://github.com/arduino-libraries/Arduino_LPS22HB @@ -974,6 +1121,7 @@ https://github.com/arduino-libraries/Arduino_MKRMEM https://github.com/arduino-libraries/Arduino_MKRRGB https://github.com/arduino-libraries/Arduino_MKRTHERM https://github.com/arduino-libraries/Arduino_MultiWiFi +https://github.com/arduino-libraries/Arduino_NetworkConfigurator https://github.com/arduino-libraries/Arduino_NiclaSenseEnv https://github.com/arduino-libraries/Arduino_NineAxesMotion https://github.com/arduino-libraries/Arduino_OAuth @@ -1153,6 +1301,7 @@ https://github.com/asukiaaa/arduino-HX711 https://github.com/asukiaaa/arduino-HzMeter https://github.com/asukiaaa/arduino-MCP4661 https://github.com/asukiaaa/arduino-MotorCVD +https://github.com/asukiaaa/arduino-MotorDMKB4 https://github.com/asukiaaa/arduino-OrientalAZ https://github.com/asukiaaa/arduino-OrientalBLVR https://github.com/asukiaaa/arduino-OrientalCommon @@ -1238,7 +1387,7 @@ https://github.com/bblanchon/ArduinoJson https://github.com/bblanchon/ArduinoStreamUtils https://github.com/bblanchon/ArduinoTrace https://github.com/BCISOFT/OvhAPI -https://github.com/bdlow/IO22_IO_Board +https://github.com/af3556/IO22_IO_Board https://github.com/BeanieBob/GY26Compass https://github.com/BEAT-System/SerialCom https://github.com/beegee-tokyo/Blues-Minimal-I2C @@ -1489,6 +1638,7 @@ https://github.com/bonezegei/Bonezegei_Utility https://github.com/bonezegei/Bonezegei_WS2812 https://github.com/bonezegei/Bonezegei_XPT2046 https://github.com/bonezegei/Bonezegei_XPT2046v2 +https://github.com/bonezegei/Bonezegei_JSON https://github.com/boodskap/BoodskapMessage https://github.com/BoodskapPlatform/BoodskapTransceiver https://github.com/boothinator/AnalogReadAsync @@ -1572,7 +1722,9 @@ https://github.com/cattanimarco/Grafici-GFX https://github.com/cbm80amiga/RREFont.git https://github.com/cDnNeMeSiS/xbee_serial_array https://github.com/CelliesProjects/ESP32_VS1053_Stream +https://github.com/CelliesProjects/LGFX-ScreenShot https://github.com/CelliesProjects/moonPhase-esp32 +https://github.com/CelliesProjects/OpenStreetMap-esp32 https://github.com/CelliesProjects/wm8978-esp32 https://github.com/centaq/arduino-async-bmp180wrapper https://github.com/centaq/arduino-async-sms @@ -1670,6 +1822,7 @@ https://github.com/closedcube/ClosedCube_MAX30205_Arduino https://github.com/closedcube/ClosedCube_OPT3001_Arduino https://github.com/closedcube/ClosedCube_OPT3002_Arduino https://github.com/closedcube/ClosedCube_SHT31D_Arduino +https://github.com/malarz-supla/ClosedCube_SHT31D_Arduino https://github.com/closedcube/ClosedCube_SHT3XA_Library https://github.com/closedcube/ClosedCube_SHT3XD_Library https://github.com/closedcube/ClosedCube_SHTC3_Arduino @@ -1738,6 +1891,7 @@ https://github.com/cotestatnt/AsyncTelegram2 https://github.com/cotestatnt/DigitalSignal https://github.com/cotestatnt/esp-fs-webserver https://github.com/cotestatnt/AgileStateMachine/ +https://github.com/cotestatnt/HTTPWebServer https://github.com/cranties/escposprinter https://github.com/Crazy-Max-Blog/Crazy_IoTik https://github.com/Crazy-Max-Blog/CrazyHC595 @@ -1810,6 +1964,9 @@ https://github.com/danilopinotti/Battery18650Stats https://github.com/danja/TM1638lite https://github.com/danmowehhuk/AD75019 https://github.com/danmowehhuk/Eventuino +https://github.com/danmowehhuk/TestTool +https://github.com/danmowehhuk/SDStorage +https://github.com/danmowehhuk/StreamableDTO https://github.com/DanNixon/ArduinoUniversalInput https://github.com/DanNixon/NeoNextion https://github.com/Danny24/Smart-Motor-Driver-SAMI-Library @@ -1865,6 +2022,7 @@ https://github.com/DefProc/lewis https://github.com/DefProc/somo-ii-lib https://github.com/DeimosHall/RP2040_CPU_Temperature.git https://github.com/DEIS-Tools/CLAIRE-library +https://github.com/dejwk/roo_backport https://github.com/dejwk/roo_collections https://github.com/dejwk/roo_control https://github.com/dejwk/roo_display @@ -1961,6 +2119,7 @@ https://github.com/DFRobot/DFRobot_BMP280 https://github.com/DFRobot/DFRobot_BMP3XX https://github.com/DFRobot/DFRobot_BMX160 https://github.com/DFRobot/DFRobot_BT401 +https://github.com/DFRobot/DFRobot_C4001 https://github.com/DFRobot/DFRobot_CCS811 https://github.com/DFRobot/DFRobot_CH423 https://github.com/DFRobot/DFRobot_DF1101S @@ -2166,6 +2325,7 @@ https://github.com/DrGFreeman/SharpDistSensor https://github.com/DrGFreeman/TimedPID https://github.com/drifkind/QDispatch https://github.com/drmpf/ESPAutoWiFiConfig +https://github.com/drmpf/NonBlockingModbusMaster https://github.com/drmpf/pfodParser https://github.com/drp0/ADCDRP https://github.com/drug123/T67XX @@ -2199,6 +2359,7 @@ https://github.com/e-radionicacom/Inkplate-6-Arduino-library https://github.com/eagleSIA/eBoard https://github.com/earlephilhower/BackgroundAudio https://github.com/earlephilhower/ESP8266Audio +https://github.com/earlephilhower/PicoLlama https://github.com/earthtown/8_digit_vfd https://github.com/EasyG0ing1/BlockNot https://github.com/EasyG0ing1/SimpleEncoder @@ -2298,6 +2459,7 @@ https://github.com/EnviroDIY/SensorModbusMaster https://github.com/EnviroDIY/Sodaq_DS3231 https://github.com/EnviroDIY/YosemitechModbus https://github.com/EnviroDIY/GeoluxCamera +https://github.com/EnviroDIY/LoRa_AT https://github.com/eoh-jsc/era-lib https://github.com/epsilonrt/ad7124 https://github.com/epsilonrt/EepromSecureData @@ -2331,6 +2493,7 @@ https://github.com/ESDeveloperBR/TFT_eSPI_ES32Lab https://github.com/ESDeveloperBR/TimeInterval https://github.com/ESikich/RGBLEDBlender https://github.com/espressif/esp-brookesia +https://github.com/espressif/esp-boost https://github.com/esp-arduino-libs/esp-lib-utils https://github.com/esp-arduino-libs/ESP32_Button https://github.com/esp-arduino-libs/ESP32_Display_Panel @@ -2415,6 +2578,7 @@ https://github.com/FancyFoxGems/HalfStepper https://github.com/FancyFoxGems/IttyBitty https://github.com/fanfanlatulipe26/XGZP6897D https://github.com/FANTM/libdevlpr +https://github.com/FarhanKhosravi/Dynamic_Window_Filter https://github.com/Fastcomm/hellothing_NBIoT_Arduino_Shield https://github.com/FastLED/FastLED https://github.com/FatBeard/vbus-arduino-library @@ -2572,6 +2736,8 @@ https://github.com/gbr1/rp2040-encoder-library https://github.com/gbr1/ucPack https://github.com/gbrd/arduino-teleinfo https://github.com/Geabong/ModbusRTUSlaveArduino +https://github.com/Geekble-Maker/Geekble_Basics +https://github.com/Geekble-Maker/Geekble_Orgel https://github.com/Geekble-Maker/Geekble_MotorOrgel https://github.com/Geekble-Maker/Geekble_Note2Freq https://github.com/Geekble-Maker/Geekble_LieDetector @@ -2584,6 +2750,7 @@ https://github.com/GerLech/AsyncWebConfig https://github.com/GerLech/LG_Matrix_Print https://github.com/GerLech/Talking_Display https://github.com/GerLech/TouchEvent +https://github.com/deshrit/SimpleRegression https://github.com/GerLech/WebConfig https://github.com/getlarge/arduino-device https://github.com/gewisser/GyverOLEDMenu @@ -2603,6 +2770,7 @@ https://github.com/giannivh/SmoothThermistor https://github.com/Gibartes/uCOS-II_Arduino https://github.com/gicking/LIN_master_Arduino https://github.com/gicking/LIN_master_portable_Arduino +https://github.com/gicking/LIN_slave_portable_Arduino https://github.com/gicking/NeoHWSerial https://github.com/gigabits-org/gigabits-arduino https://github.com/gigix74/CalibratedSpeed @@ -2686,6 +2854,13 @@ https://github.com/gvandersel/SXAccessoire https://github.com/GypsyRobot/CuteBuzzerSounds https://github.com/GypsyRobot/Formulinha https://github.com/GypsyRobot/MusicBuzzer +https://github.com/GyverLibs/RGBLED +https://github.com/GyverLibs/UART_RF +https://github.com/GyverLibs/uPID/ +https://github.com/GyverLibs/GyverWire +https://github.com/GyverLibs/StreamPacket +https://github.com/GyverLibs/GyverMIDI +https://github.com/GyverLibs/GTimer https://github.com/GyverLibs/BSON https://github.com/GyverLibs/Looper https://github.com/GyverLibs/AutoOTA @@ -2829,6 +3004,7 @@ https://github.com/hasenradball/LCD-I2C https://github.com/hasenradball/NINA-Wi-Fi https://github.com/he0119/arduino-miio https://github.com/hectorespert/SolarCharger +https://github.com/sensebox/rg15-arduino-lib/ https://github.com/hedrickbt/MillaMilla_DS7505_Library https://github.com/heiloworodl/StepMotor4windings https://github.com/heisenware/arduino-vrpc @@ -2999,20 +3175,14 @@ https://github.com/Infineon/arduino-pas-co2-sensor https://github.com/Infineon/arduino-radar-bgt60 https://github.com/Infineon/arduino-rgb-led-lighting-shield https://github.com/Infineon/arduino-xensiv-dps3xx -https://github.com/Infineon/DC-Motor-Control-TLE94112EL -https://github.com/Infineon/DPS310-Pressure-Sensor https://github.com/Infineon/hall-switch -https://github.com/Infineon/high-side-switch https://github.com/Infineon/IFX007T-Motor-Control https://github.com/Infineon/motor-system-ic-tle956x https://github.com/Infineon/RGB-LED-Lighting-Shield-XMC1202 https://github.com/Infineon/Stepper-Motor-Shield-IFX9201-XMC1300 -https://github.com/Infineon/TLE493D-3DMagnetic-Sensor -https://github.com/Infineon/TLE5012-Magnetic-Angle-Sensor -https://github.com/Infineon/TLI493D-W2BW +https://github.com/zahidaof/SIM7600_TTS https://github.com/Infineon/TLI4970-D050T4-Current-Sensor https://github.com/Infineon/TLI4971-Current-Sensor -https://github.com/Infineon/TLV493D-A1B6-3DMagnetic-Sensor https://github.com/Infineon/TLx4966-Direction-Speed-Sensor https://github.com/InfiniteCoder01/BufferedOreonSSD1351 https://github.com/inflop/Countimer @@ -3057,7 +3227,9 @@ https://github.com/Isaranu/Senses_NBIoT https://github.com/Isaranu/Senses_wifi https://github.com/Isaranu/Senses_wifi_esp32 https://github.com/italia/cie-PN532 +https://github.com/italo-coelho/InverterWEG https://github.com/italo-coelho/pushButton +https://github.com/italo-coelho/KukaVar https://github.com/ito-soft-design/irboard_esp32 https://github.com/ivanseidel/ArduinoSensors https://github.com/ivanseidel/ArduinoThread @@ -3119,7 +3291,9 @@ https://github.com/janelia-arduino/TMC2209 https://github.com/janelia-arduino/TMC429 https://github.com/janelia-arduino/Vector https://github.com/janelia-arduino/Watchdog +https://github.com/janelia-arduino/TMC51X0 https://github.com/janikheiler/Mintrix +https://github.com/janscience/MicroConfig https://github.com/janscience/ESensors https://github.com/janscience/TeeRec https://github.com/janscience/TeeGrid @@ -3225,7 +3399,12 @@ https://github.com/Johboh/EspNowNetworkHost https://github.com/Johboh/EspNowNetworkHostDriver https://github.com/Johboh/EspNowNetworkNode https://github.com/Johboh/EspNowNetworkShared +https://github.com/Johboh/GCMEncryption https://github.com/Johboh/HomeAssistantEntities +https://github.com/Johboh/ieee-802_15_4/ +https://github.com/Johboh/ieee-802_15_4-network-host +https://github.com/Johboh/ieee-802_15_4-network-node +https://github.com/Johboh/ieee-802_15_4-network-shared https://github.com/Johboh/MQTTRemote https://github.com/Johboh/nlohmann-json https://github.com/John-Karatka/24LC64F @@ -3283,6 +3462,7 @@ https://github.com/JSC-electronics/SimpleMotionV2-Arduino https://github.com/JSC-electronics/SimpleRelay https://github.com/JSC-electronics/Ticker https://github.com/jscastonguay/technoshield-ui-lib +https://github.com/jsnkan/lcd128_32_io https://github.com/jspark311/Arduino-ADG2128 https://github.com/jspark311/Arduino-DS1881 https://github.com/jspark311/Arduino-SX150x @@ -3615,7 +3795,7 @@ https://github.com/KROIA/L298N_MotorDriver https://github.com/krpc/krpc-arduino https://github.com/krzychb/DimSwitch https://github.com/krzychb/EspSaveCrash -https://github.com/ktauchathuranga/MorseEncoder +https://github.com/ktauchathuranga/morse-encoder https://github.com/ktsai69/Vishay_VCNL4200 https://github.com/KuangLei/fDigitsSegtPin https://github.com/kulbhushanchand/MCP4251 @@ -3743,6 +3923,7 @@ https://github.com/LiquidCGS/FastIMU https://github.com/littleBitsman/Asynchrony https://github.com/liuyinze/CumulocityHttpDownstream https://github.com/liuyinze/CumulocityHttpUpstream +https://github.com/liquidCS/esp32ARP https://github.com/llschall/ardwloop-ino https://github.com/llelundberg/EasyWebServer https://github.com/lmtreser/Robotec @@ -3880,8 +4061,11 @@ https://github.com/m2m-solutions/M2M_MiraOne https://github.com/m2m-solutions/M2M_Quectel https://github.com/m2m-solutions/M2M_TLV https://github.com/m516/TinyMatrixMath +https://github.com/m5stack/M5Unit-ASR https://github.com/m5stack/M5DinMeter https://github.com/m5stack/M5Unit-WeightI2C +https://github.com/m5stack/M5Unit-ANADIG +https://github.com/m5stack/M5Unit-THERMO https://github.com/m5stack/M5Unit-METER https://github.com/m5stack/M5Unit-PbHub https://github.com/m5stack/M5Unit-CAN @@ -3958,12 +4142,16 @@ https://github.com/m5stack/M5Unit-UHF-RFID https://github.com/m5stack/M5Unit-QRCode https://github.com/m5stack/M5Unit-Synth https://github.com/m5stack/M5Unit-BLDC +https://github.com/m5stack/M5Unit-KMeterISO https://github.com/m5stack/M5PoECAM https://github.com/m5stack/STAMP-PICO https://github.com/m5stack/TimerCam-arduino https://github.com/m5stack/M5-SX127x https://github.com/m5stack/M5Unit-8Encoder https://github.com/m5stack/M5Module-LLM +https://github.com/m5stack/M5Module-Audio +https://github.com/m5stack/M5StamPLC +https://github.com/m5stack/M5-LoRaWAN-RAK https://github.com/machinefi/psa-crypto-arduino https://github.com/machinefi/w3bstream-client-arduino-ce https://github.com/MacroYau/LTC2942-Arduino-Library @@ -4102,8 +4290,8 @@ https://github.com/mathertel/Radio https://github.com/mathertel/RFCodes https://github.com/mathertel/RotaryEncoder https://github.com/Mathieu52/GPSP -https://github.com/mathieucarbou/AsyncTCP -https://github.com/mathieucarbou/ESPAsyncWebServer +https://github.com/ESP32Async/AsyncTCP +https://github.com/ESP32Async/ESPAsyncWebServer https://github.com/mathieucarbou/MycilaConfig https://github.com/mathieucarbou/MycilaDS18 https://github.com/mathieucarbou/MycilaEasyDisplay @@ -4182,6 +4370,7 @@ https://github.com/mchwalfajar/jeager-one https://github.com/MClarkDev/ArylicHTTP https://github.com/MClarkDev/BleepingLibrary https://github.com/mcmchris/mcm-bl0940-lib +https://github.com/mcmchris/mcm-atm90e32-lib https://github.com/mcmchris/mcm-grove-voltage-sensor https://github.com/MCUdude/KTMS1201 https://github.com/MCUdude/SigmaDSP @@ -4222,6 +4411,7 @@ https://github.com/mertwhocodes/mwc_stepper https://github.com/meshtastic/Meshtastic-arduino https://github.com/meteolab/MeteoLabBeacon https://github.com/Mewtry/TCS230_ESP32 +https://github.com/mfurga/cc1101 https://github.com/mgaman/PDUlib https://github.com/mggates39/MyDelay https://github.com/MHeeres/DataServeriOS @@ -4297,6 +4487,7 @@ https://github.com/mizuyoukanao/Bluewhale https://github.com/mjackdk/AmbientCO2 https://github.com/mjbots/moteus-arduino https://github.com/mjdonders/CST816_TouchLib +https://github.com/mjdonders/ESP32ServoController https://github.com/mkeras/BasicTag https://github.com/mkeras/pubsubclient https://github.com/mkhuthir/Si4703 @@ -4326,6 +4517,7 @@ https://github.com/mobizt/Firebase-ESP-Client https://github.com/mobizt/Firebase-ESP32 https://github.com/mobizt/Firebase-ESP8266 https://github.com/mobizt/FirebaseJson +https://github.com/mobizt/ReadyMail https://github.com/modulolabs/modulo-lib https://github.com/mogel77/Jobber https://github.com/MohammedRashad/ArduZ80 @@ -4355,10 +4547,8 @@ https://github.com/mprograms/SimpleRotary https://github.com/MR-XieXuan/RX8025_for_Arduino https://github.com/MR-XieXuan/URLCode_for_Arduino https://github.com/mrdunk/esp8266_mdns -https://github.com/mrfaptastic/Easy-IoT-Arduino-CC1101-LORA -https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA -https://github.com/mrfaptastic/json-streaming-parser2 -https://github.com/mrfaptastic/WiFiConnectLite +https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA/ +https://github.com/mrcodetastic/json-streaming-parser2 https://github.com/mrjimenez/JTAG https://github.com/mrmot021/PLS7shield https://github.com/mrmx/Arduino-SI4012 @@ -4871,12 +5061,15 @@ https://github.com/plerup/espsoftwareserial https://github.com/ploys/arduino-logger https://github.com/plsTrustMeImAnEngineer/StreamAverage https://github.com/pmarques-dev/PicoEncoder +https://github.com/pmarques-dev/ArucoLite +https://github.com/pmarques-dev/PicoHM01B0 https://github.com/pmassio/ArduinoLMI https://github.com/PodgroupConnectivity/PodEnoSim https://github.com/poelstra/arduino-multi-button https://github.com/polohpi/AT24C256 https://github.com/pololu/a-star-32u4-arduino-library https://github.com/pololu/a4990-motor-shield +https://github.com/pololu/acs37800-arduino https://github.com/pololu/amis-30543-arduino https://github.com/pololu/apa102-arduino https://github.com/pololu/balboa-32u4-arduino-library @@ -5164,12 +5357,16 @@ https://github.com/Reefwing-Software/Reefwing-PWM https://github.com/Reefwing-Software/Reefwing-SBUS.git https://github.com/Reefwing-Software/Reefwing-xIMU3 https://github.com/regimantas/Oversampling -https://github.com/rei-vilo/PDLS_EXT3_Basic_BWRY https://github.com/rei-vilo/PDLS_EXT3_Basic_Fast https://github.com/rei-vilo/PDLS_EXT3_Basic_Global -https://github.com/rei-vilo/PDLS_EXT3_Basic_Touch -https://github.com/rei-vilo/PDLS_EXT3_Basic_Wide https://github.com/rei-vilo/PDLS_EXT4_Basic_Matter +https://github.com/rei-vilo/PDLS_Common +https://github.com/rei-vilo/PDLS_Basic +https://github.com/PervasiveDisplays/Pervasive_Wide_Medium +https://github.com/PervasiveDisplays/Pervasive_Wide_Small +https://github.com/PervasiveDisplays/Pervasive_BWRY_Small +https://github.com/PervasiveDisplays/Pervasive_Wide_Large +https://github.com/PervasiveDisplays/Pervasive_Touch_Small https://github.com/reiniiriarios/arduino-mqtt-looped https://github.com/remicaumette/esp8266-redis https://github.com/remocons/boho-arduino @@ -5195,7 +5392,7 @@ https://github.com/rgot-org/EzLoRaWAN https://github.com/rgot-org/EzLoRaWAN_BLE https://github.com/rhelmus/virtmem-arlibman https://github.com/Rhomb-io/rhio-pinmap -https://github.com/rhrhhrhr/MPC_ruih +https://github.com/rui-huang-opt/MPC_ruih https://github.com/ricardoquesada/bluepad32-arduino https://github.com/ricaun/ArduinoUniqueID https://github.com/ricaun/LoRaNow @@ -5273,7 +5470,9 @@ https://github.com/Robertndrei/SCD30-Modbus https://github.com/robertsallent/arduino_flanco https://github.com/robgmsn/PureDigit https://github.com/Robo-Wunderkind/RoboWunduino +https://github.com/RoboCore/RoboCore_BRIICK_Encoder https://github.com/RoboCore/RoboCore_BRIICK_Keypad +https://github.com/RoboCore/RoboCore_BRIICK_TRIAC https://github.com/RoboCore/RoboCore_MMA8452Q https://github.com/RoboCore/RoboCore_Rocky https://github.com/RoboCore/RoboCore_SMW-SX1262M0 @@ -5311,6 +5510,7 @@ https://github.com/Robox-Robotics/Grove-Offline-Voice-Recognition-Module https://github.com/RobPo/Paperino https://github.com/RobTillaart/74HC138 https://github.com/RobTillaart/74HC154 +https://github.com/RobTillaart/74HC590 https://github.com/RobTillaart/A1301 https://github.com/RobTillaart/ACD10 https://github.com/RobTillaart/ACD3100 @@ -5323,11 +5523,16 @@ https://github.com/RobTillaart/AD5246 https://github.com/RobTillaart/AD5248 https://github.com/RobTillaart/AD524X https://github.com/RobTillaart/AD5263 +https://github.com/RobTillaart/AD5370 +https://github.com/RobTillaart/AD5593R https://github.com/RobTillaart/AD5620 https://github.com/RobTillaart/AD5660 https://github.com/RobTillaart/AD5680 https://github.com/RobTillaart/AD568X https://github.com/RobTillaart/AD56X8 +https://github.com/RobTillaart/AD7367 +https://github.com/RobTillaart/AD7367_SPI +https://github.com/RobTillaart/AD7390 https://github.com/RobTillaart/AD8495 https://github.com/RobTillaart/AD9833 https://github.com/RobTillaart/AD985X @@ -5339,15 +5544,19 @@ https://github.com/RobTillaart/ADG728 https://github.com/RobTillaart/ADG729 https://github.com/RobTillaart/ADG731 https://github.com/RobTillaart/ADG732 +https://github.com/RobTillaart/ADG2128_RT +https://github.com/RobTillaart/ADG2188 https://github.com/RobTillaart/Adler https://github.com/RobTillaart/ADS1X15 https://github.com/RobTillaart/ADT7470 https://github.com/RobTillaart/AGS02MA https://github.com/RobTillaart/AGS2616 +https://github.com/RobTillaart/AGS3870 https://github.com/RobTillaart/AGS3871 https://github.com/RobTillaart/AM2315 https://github.com/RobTillaart/AM2315C https://github.com/RobTillaart/AM232X +https://github.com/RobTillaart/AMT25 https://github.com/RobTillaart/AnalogKeypad https://github.com/RobTillaart/AnalogPin https://github.com/RobTillaart/AnalogUVSensor @@ -5380,7 +5589,9 @@ https://github.com/RobTillaart/DAC8554 https://github.com/RobTillaart/DAC8560 https://github.com/RobTillaart/DAC8571 https://github.com/RobTillaart/DAC8574 +https://github.com/RobTillaart/DAC53001 https://github.com/RobTillaart/dateTimeHelpers +https://github.com/RobTillaart/decibel https://github.com/RobTillaart/DEVFULL https://github.com/RobTillaart/DEVNULL https://github.com/RobTillaart/DEVRANDOM @@ -5403,6 +5614,7 @@ https://github.com/RobTillaart/DS2438 https://github.com/RobTillaart/DS28CM00 https://github.com/RobTillaart/DS3232 https://github.com/RobTillaart/ellipse +https://github.com/RobTillaart/ERCFS https://github.com/RobTillaart/fast_math https://github.com/RobTillaart/FastMap https://github.com/RobTillaart/FastShiftIn @@ -5437,14 +5649,17 @@ https://github.com/RobTillaart/I2C_ASDX https://github.com/RobTillaart/I2C_EEPROM https://github.com/RobTillaart/I2C_LCD https://github.com/RobTillaart/I2C_SCANNER +https://github.com/RobTillaart/I2C_SOFTRESET https://github.com/RobTillaart/I2CKeyPad https://github.com/RobTillaart/I2CKeyPad8x8 https://github.com/RobTillaart/IEEE754tools https://github.com/RobTillaart/INA219 https://github.com/RobTillaart/INA226 https://github.com/RobTillaart/INA228 +https://github.com/RobTillaart/INA229 https://github.com/RobTillaart/INA236 https://github.com/RobTillaart/INA239 +https://github.com/RobTillaart/INA260 https://github.com/RobTillaart/INA3221_RT https://github.com/RobTillaart/infiniteAverage https://github.com/RobTillaart/integer24 @@ -5454,6 +5669,7 @@ https://github.com/RobTillaart/KT0803 https://github.com/RobTillaart/Kurtosis https://github.com/RobTillaart/LineFormatter https://github.com/RobTillaart/Logistic +https://github.com/RobTillaart/LTC2485 https://github.com/RobTillaart/LTC2991 https://github.com/RobTillaart/LTR390_DFR https://github.com/RobTillaart/LTR390_RT @@ -5479,11 +5695,14 @@ https://github.com/RobTillaart/MCP23008 https://github.com/RobTillaart/MCP23017_RT https://github.com/RobTillaart/MCP23S08 https://github.com/RobTillaart/MCP23S17 +https://github.com/RobTillaart/MCP330X https://github.com/RobTillaart/MCP3424 https://github.com/RobTillaart/MCP4261 https://github.com/RobTillaart/MCP4725 https://github.com/RobTillaart/MCP9808_RT https://github.com/RobTillaart/MHZCO2 +https://github.com/RobTillaart/Metronome +https://github.com/RobTillaart/millis64 https://github.com/RobTillaart/MiniMP3 https://github.com/RobTillaart/MINMAX https://github.com/RobTillaart/ML8511 @@ -5500,6 +5719,7 @@ https://github.com/RobTillaart/Multiplex https://github.com/RobTillaart/NeumannCorrector https://github.com/RobTillaart/nibbleArray https://github.com/RobTillaart/Optoma +https://github.com/RobTillaart/OUTPIN https://github.com/RobTillaart/palindrome https://github.com/RobTillaart/PAR27979 https://github.com/RobTillaart/ParallelPrinter @@ -5510,17 +5730,22 @@ https://github.com/RobTillaart/PCA9553 https://github.com/RobTillaart/PCA9632 https://github.com/RobTillaart/PCA9634 https://github.com/RobTillaart/PCA9635 +https://github.com/RobTillaart/PCA9671 https://github.com/RobTillaart/PCA9685_RT https://github.com/RobTillaart/PCA9698_RT https://github.com/RobTillaart/PCF8574 https://github.com/RobTillaart/PCF8575 https://github.com/RobTillaart/PCF8591 +https://github.com/RobTillaart/PCF85263 https://github.com/RobTillaart/PCR +https://github.com/RobTillaart/PCT2075 https://github.com/RobTillaart/PERIPUMP https://github.com/RobTillaart/PID_RT https://github.com/RobTillaart/PinInGroup https://github.com/RobTillaart/PinOutGroup https://github.com/RobTillaart/PIR +https://github.com/RobTillaart/PIR8575 +https://github.com/RobTillaart/PPD71 https://github.com/RobTillaart/Prandom https://github.com/RobTillaart/pressure https://github.com/RobTillaart/PrintCharArray @@ -5537,6 +5762,7 @@ https://github.com/RobTillaart/relativity https://github.com/RobTillaart/rotaryDecoder https://github.com/RobTillaart/rotaryDecoder8 https://github.com/RobTillaart/rotaryDecoderSwitch +https://github.com/RobTillaart/rotaryDecoderSwitch5 https://github.com/RobTillaart/RS485 https://github.com/RobTillaart/RunAvgWeight https://github.com/RobTillaart/runningAngle @@ -5567,6 +5793,8 @@ https://github.com/RobTillaart/SWSPI https://github.com/RobTillaart/TCA9548 https://github.com/RobTillaart/TCA9554 https://github.com/RobTillaart/TCA9555 +https://github.com/RobTillaart/TCRT5000 +https://github.com/RobTillaart/TCS3210 https://github.com/RobTillaart/Temperature https://github.com/RobTillaart/TEMT6000 https://github.com/RobTillaart/timing @@ -5629,6 +5857,7 @@ https://github.com/ruiseixasm/Robust-EEPROM https://github.com/ruiseixasm/Versatile_RotaryEncoder https://github.com/ruminize/FlashLightLED https://github.com/Rupakpoddar/FirebaseArduino +https://github.com/Rupakpoddar/ConsumerKeyboard https://github.com/rv701/SPL06-007 https://github.com/RyoKosaka/HelloDrum-arduino-Library https://github.com/ryraki/FXLS89xx_Arduino @@ -5698,6 +5927,8 @@ https://github.com/sciosense/apc1-arduino https://github.com/sciosense/ens16x-arduino https://github.com/sciosense/ens21x-arduino https://github.com/sciosense/ens220-arduino +https://github.com/sciosense/ens190-arduino +https://github.com/sciosense/ufm01-arduino https://github.com/SConaway/AVRUtils https://github.com/Scottapotamas/xsens-mti https://github.com/scottchiefbaker/Arduino-SimpleSyslog @@ -5745,7 +5976,6 @@ https://github.com/Seeed-Studio/Grove_LED_Matrix_Driver https://github.com/Seeed-Studio/Grove_LoRa_433MHz_and_915MHz_RF https://github.com/Seeed-Studio/Grove_Mini_Track_Ball https://github.com/Seeed-Studio/Grove_Motor_Driver_TB6612FNG -https://github.com/Seeed-Studio/Grove_Serial_MP3_Player_V2.0 https://github.com/Seeed-Studio/Grove_SHT31_Temp_Humi_Sensor https://github.com/Seeed-Studio/Grove_Sunlight_Sensor https://github.com/Seeed-Studio/Grove_Temper_Humidity_TH02 @@ -5782,6 +6012,7 @@ https://github.com/Seeed-Studio/Seeed_Arduino_rpcWiFi https://github.com/Seeed-Studio/Seeed_Arduino_RTC https://github.com/Seeed-Studio/Seeed_Arduino_SFUD https://github.com/Seeed-Studio/Seeed_Arduino_SGP30 +https://github.com/Seeed-Studio/Seeed_Arduino_SPA06 https://github.com/Seeed-Studio/Seeed_Arduino_Sketchbook https://github.com/Seeed-Studio/Seeed_Arduino_SSCMA https://github.com/Seeed-Studio/Seeed_LDC1612 @@ -5830,10 +6061,12 @@ https://github.com/Sensirion/arduino-i2c-sen66 https://github.com/Sensirion/arduino-i2c-sf06-lf https://github.com/Sensirion/arduino-i2c-sfa3x https://github.com/Sensirion/arduino-i2c-sfm3000 +https://github.com/Sensirion/arduino-i2c-sfm3304 https://github.com/sensirion/arduino-i2c-sgp40 https://github.com/sensirion/arduino-i2c-sgp41 https://github.com/Sensirion/arduino-i2c-sht4x https://github.com/Sensirion/arduino-i2c-stc3x +https://github.com/Sensirion/arduino-i2c-stcc4 https://github.com/Sensirion/arduino-i2c-sts4x https://github.com/sensirion/arduino-i2c-svm4x https://github.com/Sensirion/arduino-i2c-sfx6xxx @@ -5846,6 +6079,7 @@ https://github.com/Sensirion/arduino-uart-sfx6xxx https://github.com/Sensirion/arduino-upt-core https://github.com/Sensirion/arduino-upt-i2c-auto-detection https://github.com/Sensirion/arduino-upt-ble-auto-detection +https://github.com/Sensirion/arduino-upt-display https://github.com/sensorium/Mozzi https://github.com/sensslen/LibLanc https://github.com/septillion-git/FadeLed @@ -6041,6 +6275,9 @@ https://github.com/SodaqMoja/Sodaq_wdt https://github.com/SofaPirate/AsciiMassage https://github.com/SofaPirate/Plaquette https://github.com/SofaPirate/SlipMassage +https://github.com/Soft-Collection/SCPeriod +https://github.com/Soft-Collection/SCButton +https://github.com/Soft-Collection/SCConfig https://github.com/softplus/GoogleFormPost https://github.com/SoftwareTools4Makers/OPC https://github.com/SohnyBohny/6-digit-7-Segment-Arduino @@ -6130,6 +6367,7 @@ https://github.com/sparkfun/SparkFun_AS7265x_Arduino_Library https://github.com/sparkfun/SparkFun_AS726X_Arduino_Library https://github.com/sparkfun/SparkFun_AS7331_Arduino_Library https://github.com/sparkfun/SparkFun_AS7341X_Arduino_Library +https://github.com/sparkfun/SparkFun_AS7343_Arduino_Library https://github.com/sparkfun/SparkFun_ATECCX08a_Arduino_Library https://github.com/sparkfun/SparkFun_ATSHA204_Arduino_Library https://github.com/sparkfun/SparkFun_AVR_ISP_Programming_Library @@ -6207,6 +6445,7 @@ https://github.com/sparkfun/SparkFun_MPL3115A2_Breakout_Arduino_Library https://github.com/sparkfun/SparkFun_MPU-9250_Breakout_Arduino_Library https://github.com/sparkfun/SparkFun_MS5637_Arduino_Library https://github.com/sparkfun/SparkFun_MS5803-14BA_Breakout_Arduino_Library +https://github.com/sparkfun/SparkFun_MY1690_MP3_Decoder_Arduino_Library https://github.com/sparkfun/SparkFun_OPT4048_Arduino_Library https://github.com/sparkfun/SparkFun_OWire_Arduino_Library https://github.com/sparkfun/SparkFun_Particle_Sensor_SN-GCJA5_Arduino_Library @@ -6259,13 +6498,17 @@ https://github.com/sparkfun/SparkFun_SGP4_Arduino_Library https://github.com/sparkfun/SparkFun_SGP40_Arduino_Library https://github.com/sparkfun/SparkFun_SHTC3_Arduino_Library https://github.com/sparkfun/SparkFun_Si7021_Arduino_Library +https://github.com/sparkfun/SparkFun_SiT5358_DCTCXO_Arduino_Library +https://github.com/sparkfun/SparkFun_SiT5811_OCXO_Arduino_Library https://github.com/sparkfun/SparkFun_Simultaneous_RFID_Tag_Reader_Library https://github.com/sparkfun/SparkFun_smol_Power_Board_Arduino_Library +https://github.com/sparkfun/SparkFun_Soil_Moisture_Arduino_Library https://github.com/sparkfun/SparkFun_SPI_SerialFlash_Arduino_Library https://github.com/sparkfun/SparkFun_SSD1320_OLED_Arduino_Library https://github.com/sparkfun/SparkFun_ST25DV64KC_Arduino_Library https://github.com/sparkfun/SparkFun_STC3x_Arduino_Library https://github.com/sparkfun/SparkFun_STHS34PF80_Arduino_Library +https://github.com/sparkfun/SparkFun_STP3593LF_OCXO_Arduino_Library https://github.com/sparkfun/SparkFun_STTS22H_Arduino_Library https://github.com/sparkfun/SparkFun_STUSB4500_Arduino_Library https://github.com/sparkfun/SparkFun_Swarm_Satellite_Arduino_Library @@ -6305,6 +6548,8 @@ https://github.com/sparkfun/SparkFun_WM8960_Arduino_Library https://github.com/sparkfun/SparkFun_WT2003S_MP3_Decoder_Arduino_Library https://github.com/sparkfun/SparkFun_ZX_Distance_and_Gesture_Sensor_Arduino_Library https://github.com/sparkfun/SparkFunDMX +https://github.com/sparkfun/SparkFun_BMV080_Arduino_Library +https://github.com/sparkfun/SparkFun_PicoDVI_Arduino_Library https://github.com/SpellFoundry/PCF8523 https://github.com/SpellFoundry/SleepyPi2 https://github.com/sphero-inc/sphero-sdk-arduino-cpp-library-manager @@ -6507,7 +6752,7 @@ https://github.com/SunitRaut/WSN-for-RFM69-LowPowerLab https://github.com/SunjunKim/PMW3360 https://github.com/supercrab/RemoteSerial https://github.com/SUPLA/supla-device -https://github.com/Suraj151/esp8266-framework +https://github.com/Suraj151/pdi-framework https://github.com/suratin27/DINO_PLC https://github.com/suratin27/DINO_PLC_V1 https://github.com/suratin27/ESP32_Control @@ -6671,8 +6916,8 @@ https://github.com/thinkovation/Ambimate https://github.com/thirstyice/JVC-Stereo https://github.com/thirstyice/Olimex16x2 https://github.com/thirstyice/RedEye -https://github.com/ThisSmartHouse/CoogleIOT https://github.com/thirstyice/TinyDMXSerial +https://github.com/ThisSmartHouse/CoogleIOT https://github.com/thomasfredericks/Bounce2 https://github.com/thomasfredericks/Chrono https://github.com/thomasfredericks/M5_PbHub @@ -6758,6 +7003,7 @@ https://github.com/torsteinnh/conductivityLib https://github.com/tort32/PxMatrix https://github.com/Tost69/ConfigStorage https://github.com/totemmaker/TotemArduino +https://github.com/totemmaker/TotemRoboboard https://github.com/toxnico/DMOscillator https://github.com/toxnico/DMStepper https://github.com/toxnico/Timer @@ -7055,7 +7301,7 @@ https://github.com/yellobyte/DacESP32 https://github.com/yellobyte/SoapESP32 https://github.com/yergin/Yabl https://github.com/yesbotics/dualsense-controller -https://github.com/YFROBOT-TM/Yfrobot-FPM383-Library +https://github.com/YFROBOT-TM/Yfrobot-FPSensor-Library https://github.com/YFROBOT-TM/Yfrobot-I2C-LineFollowSensor-Library https://github.com/YFROBOT-TM/Yfrobot-Motor-Driver-Library https://github.com/YFROBOT-TM/Yfrobot-Valon3-Library @@ -7078,6 +7324,7 @@ https://github.com/YoupiLab/YLSim800Lib https://github.com/YoupiLab/YoupiLabEsp32 https://github.com/YoupiLab/YoupiLabESP32_IOT https://github.com/YoupiLab/YoupiLabEsp8266 +https://github.com/YoupiLab/YoupiLab_IoT_ESP.git https://github.com/ysard/MyOwnBricks https://github.com/ysard/PT6312_VFD_Arduino_Library https://github.com/ysard/TCS34725 @@ -7242,6 +7489,9 @@ https://github.com/braydenanderson2014/SimpleProperties https://github.com/braydenanderson2014/UnorderedMap https://github.com/qqqlab/madflight https://github.com/qqqlab/ESP32_SoftWire +https://github.com/qqqlab/GPS-uBlox +https://github.com/qqqlab/qqqlab-RP2040-Toolbox +https://github.com/qqqlab/ESP32-Serial-RMT-UART https://github.com/MJBeltran13/Bucopi_library https://github.com/lualtek/buttino-rak https://github.com/tomcombriat/FixMath @@ -7272,7 +7522,7 @@ https://github.com/deangi/PIRSensor https://github.com/bluejunimo/YX5300_ESP32 https://gitlab.com/soruce/pimiento-clock-library https://github.com/buildybee/blite -https://github.com/Howard-Z/UCLA-SMV-CAN +https://github.com/UCLA-Bruin-Supermileage/UCLA-SMV-CAN https://github.com/paulino/ha-mqtt-entities https://github.com/dattasaurabh82/DFRobot_GDL https://github.com/iwandwip/Kinematrix @@ -7309,6 +7559,7 @@ https://github.com/ardlib/bosejis_Types https://github.com/ardlib/bosejis_AMV https://github.com/ardlib/bosejis_Bin https://github.com/ardlib/bosejis_TWI +https://github.com/ardlib/bosejis_PKAE_Timer https://github.com/ardlib/bosejis_PString https://github.com/kalmak07/SensorNorm https://github.com/D-314/IP2368-Arduino-Library @@ -7488,11 +7739,7 @@ https://github.com/protheeuz/AsyncWebServerESP https://github.com/JoelJojoP/SimpleIMU https://github.com/vickash/RotaryEncoderPCNT https://github.com/kanitawa/RotEnc -https://github.com/vpBharath/RobotControl.git https://github.com/BlairBlaidd/Newhaven_CharacterOLED_SPI -https://github.com/ERLtech/ERLtech-RobotControl.git -https://github.com/ErlTechnologies/BTRobocontrol.git -https://github.com/ErlTechnologies/ERLtechRobotcontrol.git https://github.com/lhtran114/OnlyTimer https://github.com/sinricpro/arduino-renesas-sdk https://github.com/septentrio-gnss/Septentrio_Arduino_library @@ -7650,13 +7897,13 @@ https://github.com/humacompany/Huma_Buttons https://github.com/KriBielinski/PrecDueTimer https://github.com/KriBielinski/InterruptStepper https://github.com/ripred/CodeSizeProfiler -https://github.com/KDaniels-dev/Stepper595 +https://github.com/KDDaniels/Stepper595 https://github.com/Stutchbury/InputEvents https://github.com/QuickSpot/walter-arduino https://github.com/sagar-koirala/TelloESP32 https://github.com/AlessioSavelli/DMXasLED https://github.com/zimbora/EspMQTTClient -https://github.com/npuckett/AltController +https://github.com/DigitalFuturesOCADU/AltController https://github.com/digitalfen/ArtificialDateTime https://github.com/digitalfen/PseudoDateTime https://github.com/digitalfen/ArtificialRTC @@ -7664,25 +7911,19 @@ https://github.com/digitalfen/EmuRTC https://github.com/alfan459/RandomForestModel https://github.com/alfan459/ElasticNetModel https://github.com/alfan459/LinearRegressionModel -https://github.com/kelasrobot/KelasRobotTime -https://github.com/kelasrobot/MQTTESP https://github.com/bsrahmat/iotNetESP32 https://github.com/ajangrahmat/ArduMekaWiFi https://github.com/eis-interbot/EIS_INTERBOT https://github.com/lucaschoeneberg/lw09-dali https://github.com/moononournation/Dev_Device_Pins.git https://github.com/ELOWRO/ADS1119 -https://github.com/kelasrobot/KelasRobotIO https://github.com/rescenic/rescenicio -https://github.com/kelasrobot/FonnteArduino -https://github.com/JokoArdh/inIo https://github.com/robbywm/RobbyIO/ https://github.com/cakraawijaya/MQ2_LPG https://github.com/edwiyanto/CreatorKidsIO https://github.com/cakraawijaya/ESP_FC28 https://github.com/CMB27/ModbusSlaveLogic https://github.com/wwhai/MOTY-Mini-Temperature-Sensor.git -https://github.com/kelasrobot/FoonteDuino https://github.com/stacknix/stackmq-esp32 https://github.com/marekburiak/ESP32_MQTTClient https://github.com/levkovigor/PTZProtocolHandler @@ -7690,7 +7931,241 @@ https://github.com/Alex-Stone-Github/pepstep https://github.com/AirNgin/Airngin-esp32-mqtt-client https://github.com/samy101/edge-ai-arduino-library https://github.com/robertsonics/WAV_Trigger_Pro_Qwiic_Arduino_Library -https://github.com/YoavPaz/I2CR-CPP https://github.com/Alex-Stone-Github/CNCShield https://github.com/bitbank2/FastEPD https://github.com/jerry-magnin/Mem24CSM01 +https://github.com/mcendu/LCDI2C_Multilingual +https://github.com/codewitch-honey-crisis/htcw_bits +https://github.com/codewitch-honey-crisis/htcw_data +https://github.com/codewitch-honey-crisis/htcw_io +https://github.com/codewitch-honey-crisis/htcw_ml +https://github.com/codewitch-honey-crisis/gfx +https://github.com/codewitch-honey-crisis/uix +https://github.com/codewitch-honey-crisis/htcw_button +https://github.com/codewitch-honey-crisis/htcw_json +https://github.com/codewitch-honey-crisis/htcw_lcd_miser +https://github.com/epsilonrt/Max11615Lib +https://github.com/ESP32Async/ESPAsyncTCP +https://github.com/p1ngb4ck/MCP4461 +https://github.com/vvb333007/espshell +https://github.com/SolderedElectronics/Inkplate_Motion_Arduino_Library +https://github.com/codewitch-honey-crisis/htcw_rmt_led_strip +https://github.com/jakiki6/SH1106 +https://github.com/CentyLab/AP33772S-CentyLab +https://github.com/ridiculousfish/libdivide +https://github.com/crozone-technology/TelegramESP32 +https://github.com/mawaeg/Arduino_RV-8523 +https://github.com/steins1997/arduino_uno_r4_minima_mcp2517fd +https://github.com/mcu-electronics/RTC_DS1307_Library +https://github.com/BromleySat/kasia-lib-arduino +https://github.com/avisha95/AViShaESPCam +https://github.com/ICRS/IC-Hack-Badge-Arduino +https://github.com/avisha95/AViShaMQTT +https://github.com/avisha95/AViShaWiFi +https://github.com/khaledHamidi/qlink +https://github.com/CMB27/QwiicUART-Library +https://github.com/alayander/tlc59116 +https://github.com/leezisheng/SerialServo +https://github.com/Stutchbury/EncoderAdapter +https://github.com/patrickwasp/tf03k +https://github.com/DigitalFuturesOCADU/TinyFilmFestival +https://github.com/MarineAppliedResearch/Naviguider_Compass_I2C +https://github.com/johnosbb/hx1838decoder +https://github.com/RyLeeHarrison/EventEmitter +https://github.com/CMB27/ModbusTCPComm +https://github.com/CMB27/ModbusTCPSlave +https://github.com/sauloverissimo/ESP32_Host_MIDI +https://github.com/macFanDave/GigaDAQ +https://github.com/msilveus/SimpleQueue +https://github.com/fededc88/AS5040 +https://github.com/codezoo-ltd/arduino-ME310G1-library +https://github.com/codezoo-ltd/arduino-ME310G1-tlt-library +https://github.com/braydenanderson2014/Optional +https://github.com/braydenanderson2014/Variant +https://github.com/4project-co-il/EBF +https://github.com/pk17r/TouchscreenResistive +https://github.com/mrrwa/SFR_Reader +https://github.com/ArtronShop/ArtronShop_LineMessaging +https://github.com/boerge1/rfid +https://github.com/yunussandikci/ArduinoMessageBus +https://bitbucket.org/mgf_ryan/smartsystem +https://github.com/SequentMicrosystems/Sequent-8crt-Library +https://github.com/dac1e/RtcDueRcf +https://github.com/4211421036/fnn +https://github.com/4211421036/gsr-arduino +https://github.com/4211421036/IoTModule +https://github.com/Elrindel/SomfyReceiver +https://github.com/thebestia90/AD5259 +https://github.com/dac1e/DCF77RX +https://github.com/ImSpeddy/L298Nlib +https://github.com/ImSpeddy/QuickUltrasonic +https://github.com/4211421036/githubiot +https://github.com/christosneg/concurrentPID.git +https://github.com/twstokes/flipdotmatrix +https://github.com/Port-Net/rmt_SENT +https://github.com/Port-Net/MLX90377_SENT +https://github.com/eccentricOrange/BIDFestTools +https://github.com/dzalf/EEPROM_UID +https://github.com/EatingJan1/MCHyetometer-REED +https://github.com/EatingJan1/MCAnemometer-Ultrasonic +https://github.com/EatingJan1/arduino-esp32-matter-extra-endpoints +https://github.com/EatingJan1/NeoPixel-Animation-lib +https://github.com/4211421036/YFS201 +https://github.com/nikachu2012/HttpCall +https://github.com/AudunKodehode/JC3248W535EN-Touch-LCD +https://github.com/sauloverissimo/DataHandler +https://github.com/RedPitaya/SCPI-red-pitaya-arduino +https://github.com/ripred/Minimax +https://github.com/francescop75/LCD_TeleType +https://github.com/firmngin/firmnginKit +https://github.com/ArduLite/ArduLite +https://github.com/electrocoder/MBModbusRTUSlave +https://github.com/DigitalFuturesOCADU/YouveBeenNotified +https://github.com/styropyr0/SensorHub +https://github.com/amitesh-singh/EspDDNS +https://github.com/tomorrow56/SPRESENSE_ESP8266_LINE_Messaging_API +https://github.com/zamanturja/A9Gmod +https://github.com/WBS-Wissen/Stepper8825Lib +https://github.com/vladysor/SensEdu-Library +https://github.com/mirosieber/Litime_BMS_ESP32 +https://github.com/ByteVoltaTeam/PIDEasy +https://github.com/styropyr0/BME688 +https://github.com/styropyr0/MPM10 +https://github.com/styropyr0/ML8511 +https://github.com/styropyr0/APDS9960 +https://github.com/styropyr0/ADS111S +https://github.com/mlesniew/PicoSyslog +https://github.com/Jonathan-Z-Code/DHT11_Sensor +https://github.com/MIPSLabs/MipsLib +https://github.com/bastian2001/pico-bidir-dshot +https://github.com/bartzdev/Renke_DissolvedOxygen_Sensor +https://github.com/ArtronShop/ATD-S3-Driver_Library +https://github.com/SuyazWorld/AryzzIO +https://github.com/CMB27/AutomationTimers +https://github.com/Kadacheahmedrami/ESPExpress +https://github.com/vincentmuriithi/kari +https://github.com/codingABI/KY040 +https://github.com/iavorvel/MyButton +https://github.com/auralius/yapid +https://github.com/LostInCompilation/PrettyOTA +https://github.com/53175ddd/sound +https://github.com/brooksbUWO/Debounce +https://github.com/serifpersia/ESP32MidiPlayer +https://github.com/Obu-IntroSat/IntroStratLib-Public.git +https://github.com/GabyGold67/ShiftRegGPIOXpander_ESP32 +https://github.com/stm32duino/ST25R200 +https://github.com/stm32duino/X-NUCLEO-NFC09A1 +https://github.com/stm32duino/X-NUCLEO-NFC10A1 +https://gitlab.com/noeFly/simpleservoesp32 +https://github.com/IsraEB/esp32cam +http://github.com/codewitch-honey-crisis/htcw_pool +https://github.com/rjsachse/ESP32-SpeexDSP +https://github.com/kingsmen732/Robot-face---sh1106-screen +https://github.com/sonalPuthane/RGBLED +https://github.com/fanfanlatulipe26/ESP32_ppm +https://github.com/Robotistan/PicoBricks-for-RPico +https://github.com/ParhamMoAsghari/ArduinoSmartButton +https://github.com/ArtronShop/AmAlert-Arduino +https://github.com/Obu-IntroSat/IntroSatLib +https://github.com/KOINSLOT-Inc/kywy +https://github.com/Nick507/SmallButton +https://github.com/GabyGold67/SevenSegDisplays_ESP32 +https://github.com/styropyr0/BMP180 +https://github.com/TheSpaceEgg/MKSServoCAN +https://github.com/xreef/MultiFTPServer +https://github.com/miniiot/miniiot-arduino +https://github.com/probonopd/KeypadSim +https://github.com/CheezCheez/CheezsEMG +https://github.com/CheezCheez/CheezPPG +https://github.com/TheKvc/ServoHack +https://github.com/microbotsio/CodeCell-MicroLink +https://github.com/eyr1n/RP2040PIO_CAN +https://github.com/Arduino15/A15RGB +https://github.com/eyr1n/esp32-ps3 + +https://github.com/belem2050/LightTaskScheduler +https://github.com/eyr1n/ESP32_TWAI +https://github.com/PelicanHu/ESPCPUTemp +https://github.com/tedlanghorst/LP5562 +https://github.com/VictorDRE/CV7Lib +https://github.com/misch2/BQ25798_Library +https://github.com/peto-3210/ShiftRegisterPISO +https://github.com/whchun/waveshare-epd +https://github.com/koendv/xyc-als21c-k1 +https://github.com/lostcaggy/rotary_caggy +https://github.com/JimKnowler/Arduino_Waldo +https://github.com/tttapa/Control-Surface +https://github.com/koendv/curveFitting +https://github.com/Bina-Lee/FSR16x16_BNL +https://github.com/rock7/RockBLOCK-9704 +https://github.com/codewitch-honey-crisis/htcw_mpm_parser +https://github.com/qemu-gazebo-sim/p2os-arduino +https://github.com/MAHESHKUMARM001/NeoHome_IOT.git +https://github.com/Thingsly/Thingsly_IoT_Platform +https://github.com/Innuvatech/PatchugoLite_Arduino_Manager +https://github.com/ShahazadAbdulla/mpu6050-aries-library +https://github.com/codewitch-honey-crisis/htcw_base64 +https://github.com/BestModules-Libraries/BM92S2231-1 +https://github.com/BestModules-Libraries/BM62S2301-1 +https://github.com/BestModules-Libraries/BM42S3021-1 +https://github.com/BestModules-Libraries/BMB22M181A +https://github.com/BestModules-Libraries/BM25S2621-1 +https://github.com/BestModules-Libraries/BM25S4021-1 +https://github.com/Bina-Lee/PWM2motor_BNL +https://github.com/socialbodylab/UWB-MaUWB-AT +https://github.com/tesla-jedi/PersistentJsonEEPROM +https://bitbucket.org/jamesneko/lazy-serial +https://github.com/Uiop3385/CommandHandler +https://github.com/peto-3210/ModbusRTU +https://github.com/ruiseixasm/JsonTalkie +https://github.com/depben/PT7C4339-RTC +https://github.com/RCduino/RCduino.git +https://github.com/styropyr0/mjoln_fs +https://github.com/Faizyee/Socketyee +https://github.com/ivanmari/bare-poller +https://github.com/lahavg/QMI8658-Arduino-Library +https://github.com/k3ldar/MovementDetector +https://github.com/marcel-naderer/Lexo +https://github.com/joshua-8/xrp-style-wpilib-comms +https://github.com/bitbank2/bb_imu +https://github.com/rzuehlsd/OTA-Template +https://github.com/cearto/ThingPlusBLEOSC +https://github.com/SequentMicrosystems/Sequent-8mosfet-Library +https://github.com/ExMikuPro/WiFiCaptive +https://github.com/stm32duino/LSM6DSV16BX.git +https://github.com/stm32duino/LSM6DSV16BX-TDM.git +https://github.com/manoj26may/CodePrinter +https://github.com/fiskbil/PressureTransducer +https://github.com/cearto/SlipPump +https://github.com/manoj26may/IOT +https://github.com/zukardex/DigiPIN +https://github.com/avisha95/AViShaOTA +https://github.com/GabyGold67/ShiftRegGPIOXpander_AVR +https://github.com/tardate/TextFinder +https://github.com/EgosFeic/EgLang.git +https://gitlab.com/8bitforce/kdram2560/ +https://github.com/regimantas/EasyInterval +https://github.com/GuLinux/AsyncWiFiMulti +https://github.com/regimantas/ChaCha32Arduino +https://github.com/regimantas/PY32LowPower +https://github.com/bahr1k/esp-arduino-tunnel +https://github.com/llcesselx/lcd595 +https://github.com/G1OJS/G1OJS_Tiny_Si5351_CLK0 +https://github.com/kkfranco98/QuickSerial +https://github.com/elvandry13/UltrasonicA02YYUW +https://github.com/codewitch-honey-crisis/htcw_chess +https://github.com/mmercalde/SchneiderModbusTCP +https://github.com/arshidkv12/WiFiPortalESP8266 +https://github.com/GabyGold67/ClickCounter_ESP32 +https://github.com/wuttipong-ug/Bakmi +https://github.com/KrrishVerma/Atmel_M90E32AS_ESP32 +https://github.com/matteo-colombo-kernel/SimpleConnect +https://github.com/edreanernst/BQ27427_Arduino_Library +https://github.com/ahmadfathan/DMD32Plus +https://github.com/dwan6767/lowkeyssd1306 +https://github.com/ArtronShop/ArtronShop_BL0940 +https://github.com/joshua-8/HCSRO4_attachInterrupt +https://github.com/lukdog/BleValueSync +https://github.com/mikeedudee/MS5611-Mike-Refactored.git +https://github.com/SNP-FIT/ampify-soil-moisture-sensor +https://github.com/msnicklous/BufferedTrace