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/dependabot.yml b/.github/dependabot.yml index 1de94f5a..e962cf4f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,6 +7,9 @@ updates: # See: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-actions-up-to-date-with-dependabot - package-ecosystem: github-actions directory: / # Check the repository's workflows under /.github/workflows/ + assignees: + - per1234 + open-pull-requests-limit: 100 schedule: interval: daily labels: @@ -14,6 +17,9 @@ updates: - package-ecosystem: github-actions target-branch: production directory: / + assignees: + - per1234 + open-pull-requests-limit: 100 schedule: interval: daily labels: @@ -21,6 +27,9 @@ updates: - package-ecosystem: gomod target-branch: production directory: /.github/workflows/assets/validate-registry/ + assignees: + - per1234 + open-pull-requests-limit: 100 schedule: interval: daily labels: @@ -28,6 +37,9 @@ updates: - package-ecosystem: pip target-branch: production directory: / + assignees: + - per1234 + open-pull-requests-limit: 100 schedule: interval: daily labels: diff --git a/.github/workflows/assets/accesslist.yml b/.github/workflows/assets/accesslist.yml new file mode 100644 index 00000000..8cbf81bf --- /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: 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 +- host: github.com + name: tremaru + access: deny + reference: https://github.com/arduino/library-registry/pull/6697 diff --git a/.github/workflows/check-license.yml b/.github/workflows/check-license.yml index dabc4fcf..5ba46859 100644 --- a/.github/workflows/check-license.yml +++ b/.github/workflows/check-license.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Ruby uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/check-markdown.yml b/.github/workflows/check-markdown.yml index cbdf61b6..759d61ec 100644 --- a/.github/workflows/check-markdown.yml +++ b/.github/workflows/check-markdown.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Initialize markdownlint-cli problem matcher uses: xt0rted/markdownlint-problem-matcher@v3 @@ -50,7 +50,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Determine whether only modified files should be checked id: check-modified diff --git a/.github/workflows/check-prettier-formatting.yml b/.github/workflows/check-prettier-formatting.yml index 7ff7b5ce..b797eb2b 100644 --- a/.github/workflows/check-prettier-formatting.yml +++ b/.github/workflows/check-prettier-formatting.yml @@ -212,7 +212,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Prettier run: sudo npm install --global prettier diff --git a/.github/workflows/check-toc.yml b/.github/workflows/check-toc.yml index 2c4eedc9..63597203 100644 --- a/.github/workflows/check-toc.yml +++ b/.github/workflows/check-toc.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install markdown-toc run: sudo npm install --global markdown-toc diff --git a/.github/workflows/check-workflows.yml b/.github/workflows/check-workflows.yml index 083682a2..e62fd5a8 100644 --- a/.github/workflows/check-workflows.yml +++ b/.github/workflows/check-workflows.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Download JSON schema for GitHub Actions workflows id: download-schema diff --git a/.github/workflows/check-yaml.yml b/.github/workflows/check-yaml.yml index 61899827..db497a67 100644 --- a/.github/workflows/check-yaml.yml +++ b/.github/workflows/check-yaml.yml @@ -67,7 +67,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check YAML continue-on-error: ${{ matrix.configuration.continue-on-error }} diff --git a/.github/workflows/manage-prs.yml b/.github/workflows/manage-prs.yml index abcf9a52..f802365b 100644 --- a/.github/workflows/manage-prs.yml +++ b/.github/workflows/manage-prs.yml @@ -1,11 +1,11 @@ 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 - CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT: check-submissions-failed + CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PREFIX: check-submissions-failed- ERROR_MESSAGE_PREFIX: ":x: **ERROR:** " on: @@ -114,7 +114,7 @@ jobs: run: echo "::set-output name=head::$(jq -c .head.sha "${{ steps.configuration.outputs.path }}/${{ env.JSON_IDENTIFIER }}")" - name: Upload diff file to workflow artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ${{ steps.configuration.outputs.path }}/${{ steps.configuration.outputs.filename }} name: ${{ steps.configuration.outputs.artifact }} @@ -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,8 +134,10 @@ 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 + uses: actions/checkout@v5 - name: Download submission parser id: download-parser @@ -144,13 +147,13 @@ jobs: location: ${{ runner.temp }} - name: Download diff - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v5 with: path: ${{ needs.diff.outputs.path }} name: ${{ needs.diff.outputs.artifact }} - name: Remove no longer needed artifact - uses: geekyeggo/delete-artifact@v2 + uses: geekyeggo/delete-artifact@v5 with: name: ${{ needs.diff.outputs.artifact }} @@ -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: | @@ -376,15 +445,23 @@ jobs: if: env.PASS == 'false' run: touch ${{ env.FAIL_FLAG_PATH }} # Arbitrary file to provide content for the flag artifact + # Each workflow artifact must have a unique name. The job matrix doesn't provide a guaranteed unique string to use + # for a name so it is necessary to generate one. + - name: Generate unique artifact suffix + if: env.PASS == 'false' + run: | + echo "CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_SUFFIX=$(cat /proc/sys/kernel/random/uuid)" >> "$GITHUB_ENV" + # The value of a job matrix output is set by whichever job happened to run last, not of use for this application. # So it's necessary to use an alternative means of indicating that at least one submission failed the checks. - name: Upload failure flag artifact if: env.PASS == 'false' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: if-no-files-found: error + include-hidden-files: true path: ${{ env.FAIL_FLAG_PATH }} - name: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT }} + name: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PREFIX }}${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_SUFFIX }} check-submissions-result: needs: check-submissions @@ -393,20 +470,32 @@ jobs: outputs: pass: ${{ steps.failure-flag-exists.outcome == 'failure' }} + env: + CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PATH: ${{ github.workspace }}/artifacts + steps: + - name: Download submission check failure flag artifacts + uses: actions/download-artifact@v5 + with: + path: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PATH }} + pattern: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT_PREFIX }}* + - name: Check for existence of submission check failure flag artifact id: failure-flag-exists - uses: actions/download-artifact@v3 continue-on-error: true - with: - name: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT }} + # actions/download-artifact does not create a folder per its `path` input if no artifacts match `pattern`. + 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 @@ -432,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 @@ -474,7 +594,7 @@ jobs: - name: Checkout index source branch if: steps.merge.outcome == 'success' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: production @@ -584,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 @@ -610,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/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml index f7f8015e..ccfd1bbf 100644 --- a/.github/workflows/spell-check.yml +++ b/.github/workflows/spell-check.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Spell check uses: codespell-project/actions-codespell@master diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 9cde1acc..e9746954 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -19,7 +19,7 @@ on: env: CONFIGURATIONS_FOLDER: .github/label-configuration-files - CONFIGURATIONS_ARTIFACT: label-configuration-files + CONFIGURATIONS_ARTIFACT_PREFIX: label-configuration-file- jobs: check: @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Download JSON schema for labels configuration file id: download-schema @@ -70,13 +70,13 @@ jobs: file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }} - name: Pass configuration files to next job via workflow artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: | *.yaml *.yml if-no-files-found: error - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}${{ matrix.filename }} sync: needs: download @@ -105,18 +105,19 @@ jobs: echo "::set-output name=flag::--dry-run" - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - - name: Download configuration files artifact - uses: actions/download-artifact@v3 + - name: Download configuration file artifacts + uses: actions/download-artifact@v5 with: - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + merge-multiple: true + pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}* path: ${{ env.CONFIGURATIONS_FOLDER }} - - name: Remove unneeded artifact - uses: geekyeggo/delete-artifact@v2 + - name: Remove unneeded artifacts + uses: geekyeggo/delete-artifact@v5 with: - name: ${{ env.CONFIGURATIONS_ARTIFACT }} + name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}* - name: Merge label configuration files run: | diff --git a/FAQ.md b/FAQ.md index 04479735..eba40611 100644 --- a/FAQ.md +++ b/FAQ.md @@ -26,6 +26,7 @@ - [When I install a library that I know depends on another library, will this other library be installed as well?](#when-i-install-a-library-that-i-know-depends-on-another-library-will-this-other-library-be-installed-as-well) - [Can I install multiple versions of one library and use the proper one in my sketches?](#can-i-install-multiple-versions-of-one-library-and-use-the-proper-one-in-my-sketches) - [How can I remove a library I installed via Library Manager?](#how-can-i-remove-a-library-i-installed-via-library-manager) +- [Security & Malware Reporting](#security--malware-reporting) @@ -43,9 +44,10 @@ When a library is [added to the library list](README.md#adding-a-library-to-libr More information: +- https://docs.arduino.cc/software/ide-v2/tutorials/ide-v2-installing-a-library#installing-a-library - https://docs.arduino.cc/software/ide-v1/tutorials/installing-libraries#using-the-library-manager - https://arduino.github.io/arduino-cli/latest/commands/arduino-cli_lib/ -- https://create.arduino.cc/projecthub/Arduino_Genuino/getting-started-with-arduino-web-editor-on-various-platforms-4b3e4a +- https://docs.arduino.cc/arduino-cloud/guides/editor/#library-manager ### How is the Library Manager index generated? @@ -70,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. @@ -195,3 +199,11 @@ This version of the Arduino IDE does not have an integrated uninstall functional #### Arduino CLI Libraries can be uninstalled via [the `arduino-cli lib uninstall` command](https://arduino.github.io/arduino-cli/latest/commands/arduino-cli_lib_uninstall/). + +## Security & Malware Reporting + +If you think you found a vulnerability, malware or other security-related defect in any Arduino Library projects, please take a look at our security policy and report it to our Security Team 🛡️. + +Thank you! + +E-mail contact: security@arduino.cc diff --git a/README.md b/README.md index 4fdadf91..b0d325c6 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ This repository contains the list of libraries in the - [Changing the URL of a library already in Library Manager](#changing-the-url-of-a-library-already-in-library-manager) - [Removing a library from Library Manager](#removing-a-library-from-library-manager) - [Report a problem with Library Manager](#report-a-problem-with-library-manager) +- [Security & Malware Reporting](#security--malware-reporting) @@ -32,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. @@ -118,3 +129,11 @@ This repository is not an appropriate place to request support or report problem own documentation for instructions or ask on the [Arduino Forum](https://forum.arduino.cc/). If the problem is about something else, please submit an issue report [here](https://github.com/arduino/library-registry/issues/new/choose). + +## Security & Malware Reporting + +If you think you found a vulnerability, malware or other security-related defect in any Arduino Library projects, please take a look at our security policy and report it to our Security Team 🛡️. + +Thank you! + +E-mail contact: security@arduino.cc diff --git a/repositories.txt b/repositories.txt index db8d30aa..6463ebac 100644 --- a/repositories.txt +++ b/repositories.txt @@ -1,4 +1,476 @@ -https://github.com/eloquentarduino/tinyml4all-arduino.git +https://github.com/m5stack/M5Module-4EncoderMotor +https://github.com/ababdelo/ESPDiscordClient +https://github.com/dougp2/Multi_Timer_V2 +https://github.com/milad-nikpendar/IP5108 +https://github.com/puzzle-star/EspButtons +https://github.com/gustavofisica/PulseHeartLab +https://github.com/Harmony-Maker-Club/AIP1640_LED_Matrix +https://github.com/Hyperion-Robotics/wCK_Series +https://github.com/DIYables/DIYables-WebApps-Library +https://github.com/m5stack/ATOM-PRINTER +https://github.com/Droidbane/ESPWiFiManagerByDroidbane +https://github.com/ezz-30/arduino_tinkeriot +https://github.com/m5stack/M5Unit-MQ +https://github.com/milad-nikpendar/initAuthorization +https://github.com/KB-Sensor-Mart/iSYS4001 +https://github.com/SolderedElectronics/Soldered-Microphone-SPK0641HT-Library +https://github.com/SolderedElectronics/Soldered-DS3234-RTC-Arduino-Library +https://github.com/YoungEngineerMixertiX/MegaTPA +https://github.com/jobitjoseph/CH32X035_USBSerial +https://github.com/AndyNewlands/DualEncoderMenuSystem +https://github.com/bitcode-tech/bc7215ac +https://github.com/m5stack/M5Module-PPS +https://github.com/deepanshu-deshwal/SL002_DHT11 +https://github.com/deepanshu-deshwal/SL001_Deepanshu +https://github.com/cocoisarobo/skytraq-navic +https://github.com/LordofRobots/LoR_v3 +https://github.com/derdoktor667/DShotRMT +https://github.com/derdoktor667/FlyskyIBUS +https://github.com/kenchow96/faster-trig-2040 +https://github.com/milad-nikpendar/initBuzzer +https://github.com/milad-nikpendar/initGT911 +https://github.com/gavinlyonsrepo/ILI9341_LTSM +https://github.com/m5stack/M5Unit-Miniscale +https://github.com/orji123/Irisoled +https://github.com/PhoenixSmaug/AFMotor-Shield-R4-Compatible +https://github.com/DigitalCodesign/MentorBit-VEML +https://github.com/DigitalCodesign/MentorBit-SensorHall +https://github.com/gavinlyonsrepo/SSD1331_LTSM +https://github.com/gavinlyonsrepo/GC9A01_LTSM +https://github.com/Andreas1313/SequenceTiming +https://github.com/esicoe/BME280_LITE +https://github.com/gavinlyonsrepo/ST7789_LTSM +https://github.com/PTSolns/BMx280 +https://github.com/Pallob-Gain/packet_device +https://github.com/gavinlyonsrepo/display16_LTSM +https://github.com/littlemanbuilds/SnapshotBus +https://github.com/littlemanbuilds/ESP32_MCPWM +https://github.com/littlemanbuilds/Universal_Button +https://github.com/gavinlyonsrepo/ST7735_LTSM +https://github.com/anaveo/ParkingSensor +https://github.com/m5stack/M5SwitchC6-ESP-NOW +https://github.com/DIYables/arduino-uno-r4-web-server-library +https://github.com/yosob/SL_simpletask +https://github.com/DigitalCodesign/MentorBit-RS232 +https://github.com/DigitalCodesign/MentorBit-CANBus +https://github.com/RileyCornelius/FormatLog +https://github.com/jaikulk14/MQGasKit +https://github.com/DigitalCodesign/MentorBit-LIS3DH +https://github.com/junan8733/RamjiButton +https://github.com/RileyCornelius/FmtLib-Arduino +https://github.com/ntirushwajeanmarc/CircuitNotion +https://github.com/SibEnergy/RTC_DS1302 +https://github.com/SibEnergy/TelegramMess +https://github.com/German-source/MicroOS +https://github.com/twin-science-robotics/hw_twin_aiot_module_arduino_library +https://github.com/abdullahtemel97/testfirmware +https://github.com/flashstacks06/SimpleMenu.git +https://github.com/anaveo/KL1508CW +https://github.com/gavinlyonsrepo/ERM19264_UC1609_TEXT +https://github.com/salernosimone/arduino-espx +https://github.com/Stutchbury/SerialMessageEvents +https://github.com/Nezaemmy/NezaIR +https://github.com/chrissank/JKBMSInterface +https://github.com/Nezaemmy/Neza74HC165 +https://github.com/gavinlyonsrepo/BMP280_LTSM +https://github.com/Nezaemmy/Neza74HC595 +https://github.com/Nezaemmy/NezaButton +https://github.com/sstaub/ST7565DOG +https://github.com/Jodeenio/74HC595Plus +https://github.com/positronic57/MCP9808SensorLib +https://github.com/me-RK/WiFiCreds +https://github.com/leftCoast/LC_extSerial +https://github.com/muchaste/Ardoxy/ +https://github.com/aneesharnavch/microdsp +https://github.com/senex-code/CarBase +https://github.com/dayatkun01/ClearDS1302/ +https://github.com/OlivierPcheux/MTobjects +https://github.com/Valdemir-DSW/val_flash_spi +https://github.com/alecxcode/LX16A-bus +https://github.com/akarimiz1/E62Module +https://github.com/NartemAI/NaiPot +https://github.com/exosite/arduino_exosite_http +https://github.com/tingerlingerr/DigiPotX9C +https://github.com/MouseZver/AsyncTempSensor +https://github.com/DigitalCodesign/MentorBit-SGP30 +https://github.com/Matthew-a-smith/OpenEdgeStack +https://github.com/jmwanderer/RYLR_LoRaAT +https://github.com/LFranklinApps/Custom_Robot_Control +https://github.com/X-croot/XCR-LDR +https://github.com/scalpelspace/scalpelspace_momentum +https://github.com/X-croot/TB6612FNG_XCR +https://github.com/Spb2005/TFAReceiver +https://github.com/X-croot/BuzzerXCR +https://github.com/X-croot/MQ135-XCR +https://github.com/X-croot/LM35_XCR +https://github.com/AbdulKus/72x40oled_lib +https://github.com/X-croot/UltraSonicXCR +https://github.com/X-croot/RelayXCR +https://github.com/Pius171/LTC2959-library +https://github.com/boby15000/SensorCurrent +https://github.com/fadhil-1911/SmartTM1637 +https://github.com/brianvarren/DACless +https://github.com/ArthZ01/JWT-Lib +https://github.com/ArthZ01/AES-Lib +https://github.com/esharp17/INA219_Plus +https://github.com/brianvarren/EEncoder +https://github.com/esharp17/Mecanum_Base +https://github.com/phuongnamzz/HLK-LD2410S +https://github.com/k-off/A4988 +https://github.com/PowerBroker2/Optimization +https://github.com/GalaidaMaxim/Delayer +https://github.com/danel32/Arduino-Library-for-MAX7300 +https://github.com/TheBlackSwitch/PS2Keyboard +https://github.com/aiplayuser/esp8266easylib.git +https://github.com/m5stack/M5Unit-TUBE/ +https://github.com/aiplayuser/esp32easylib.git +https://github.com/boby15000/Tempo.git +https://github.com/Circuit-Digest/GeoLinkerLite +https://github.com/RacoonX65/LightweightIoT-Arduino-Lib +https://github.com/RacoonX65/CalibrationLib.git +https://github.com/RacoonX65/WiFiEnterprise +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/hasenradball/MCP23008-I2C +https://github.com/roncoa/KeySequence +https://github.com/juanmercadin/ReceptorRF +https://github.com/valerii-fr/menux +https://github.com/Moarbue/incremental-rotary-encoder +https://github.com/Moarbue/arduino-button +https://github.com/Moarbue/FIR-Filter +https://github.com/Morgritech/MT-arduino-rotary-encoder +https://github.com/CIRCUITSTATE/CSE_ZH06 +https://github.com/ropg/spi_lcd_read +https://github.com/trs-fvs/fvs-esp32-bib +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 +https://github.com/DigitalCodesign/MentorBit-BMP280 +https://github.com/DigitalCodesign/MentorBit-DetectorIR +https://github.com/DigitalCodesign/MentorBit-DetectorLluvia +https://github.com/DigitalCodesign/MentorBit-DHT11 +https://github.com/DigitalCodesign/MentorBit-DHT22 +https://github.com/DigitalCodesign/MentorBit-Encoder +https://github.com/DigitalCodesign/MentorBit-Expander +https://github.com/DigitalCodesign/MentorBit-LDR +https://github.com/DigitalCodesign/MentorBit-MatrizPulsadores +https://github.com/DigitalCodesign/MentorBit-MQ +https://github.com/DigitalCodesign/MentorBit-PIR +https://github.com/DigitalCodesign/MentorBit-PoteLineal +https://github.com/DigitalCodesign/MentorBit-Potenciometro +https://github.com/DigitalCodesign/MentorBit-PoteRueda +https://github.com/DigitalCodesign/MentorBit-Pulsadores +https://github.com/DigitalCodesign/MentorBit-RGB +https://github.com/DigitalCodesign/MentorBit-Ultrasonidos +https://github.com/DigitalCodesign/MentorBit-Zumbador +https://github.com/ddchung/Async-HC-SR04-Lib +https://github.com/DigitalCodesign/Puertas-Logicas-Plugin +https://github.com/median-dispersion/Non-Blocking-Melody +https://github.com/median-dispersion/XPT2046-Driver +https://github.com/jobitjoseph/ESPWebFileManager +https://github.com/playfultechnology/PN5180 +https://github.com/baaaaan1/BuzzerManager +https://github.com/baaaaan1/EEPROMHandler +https://github.com/fotherja/BQ76952 +https://github.com/RASPIAUDIO/Muse_library +https://github.com/ZanPekosak/AnalogFilter +https://github.com/misa3L994/digitalIO +https://github.com/dac1e/RcSwitchReceiver +https://github.com/ftservo/FTServo_Arduino +https://gitlab.com/pony_jd/mis_librerias/dualwheelcontrol_jd +https://github.com/leftCoast/LC_cardIndex +https://github.com/Init-io/PinScribe +https://github.com/Init-io/OTAEsp +https://github.com/Init-io/DoEEP +https://github.com/traquito/WsprEncoded +https://github.com/Init-io/FireEsp +https://github.com/ncmreynolds/loremipsum +https://github.com/blasilli/GBALib_DCMotor +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/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/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 +https://github.com/voelkerb/bistableRelay +https://github.com/voelkerb/ADE9000 +https://github.com/voelkerb/ESP.multiLogger +https://github.com/bitcode-tech/uart_7seg_display +https://github.com/EnergizeLab/ServoSDK-Arduino.git +https://github.com/felixerdy/QRCodeGenerator +https://github.com/julio22011/EasyOledUI +https://github.com/bitcode-tech/uart_keyboard +https://github.com/ncmreynolds/milesTag +https://github.com/smelpro/Smelpro_Macaron +https://github.com/rushairer/AbenoGameBoyShield +https://github.com/vindar/tgx +https://github.com/arslan437/EspFileManager.git +https://github.com/linus81/PCF8574_LH +https://github.com/Oshima-Shosen-Robotics-Research-Club/liboshima +https://github.com/DIYables/DIYables-LED-Matrix +https://github.com/dashio-connect/arduin-dashio-utils +https://github.com/dashio-connect/arduino-dashioNano33BLE +https://github.com/dashio-connect/arduino-dashioMKR1500 +https://github.com/dashio-connect/arduino-dashioESP +https://github.com/dashio-connect/arduino-dashioBluno +https://github.com/dashio-connect/arduino-dashioBluefruit +https://github.com/dashio-connect/arduino-dashioSAMD_NINA +https://github.com/rszczepanski93/EduBox_ArduinoLibrary +https://github.com/MIT-Senseable-City-Lab/octopus-firmware +https://github.com/Valdemir-DSW/DSW-painel-arduino-lib +https://github.com/elecrazy/servoctr.git +https://github.com/Maaajaaa/GaussianFilter1D +https://github.com/McOrts/WindQX_Library +https://github.com/Maaajaaa/SeeedNrf52480Battery +https://github.com/tochinet/Posit +https://github.com/Infineon/TLE9879-BLDC-Shield.git +https://github.com/Morgritech/MT-arduino-stepper-driver +https://github.com/NaveItay/XRA1405_Button +https://github.com/Softpath-Electronics/SoftPathElectronics +https://github.com/Company-of-Things/deploii-library +https://github.com/NaveItay/XRA1405 +https://github.com/NaveItay/PCA6408A +https://github.com/NaveItay/NonBlockingDelay +https://github.com/sub1inear/ArduboyI2C +https://github.com/shorepine/amy +https://github.com/microbotsio/MotorCell +https://github.com/gilesp1729/FontCollection +https://github.com/gilesp1729/GestureDetector +https://github.com/gilesp1729/GU_Elements +https://github.com/MAKIST-EDU/MakistCar +https://github.com/PowerBroker2/Filters +https://github.com/semilimes/semilimes_mcu_sdk +https://github.com/deeja/BTHomeV2-Arduino +https://github.com/zwieblum/ch32_deep_sleep +https://github.com/microbotsio/CodeCell +https://github.com/EduKits/ColourKit +https://github.com/EduKits/ManagedButtons +https://github.com/EduKits/UltraPing +https://github.com/makkorjamal/PLSduino +https://github.com/csl-3/Pasos +https://github.com/devtagse/DEVTAGLibIA +https://github.com/Muhammed-jbareen/Alarm +https://github.com/PowerBroker2/Units +https://github.com/PowerBroker2/NMEA_Parser +https://github.com/davidlmorris/debuggery +https://github.com/fmeng/UserManager +https://github.com/Infineon/arduino-xensiv-3d-magnetic-sensor-tlx493d +https://github.com/Morgritech/MT-arduino-momentary-button +https://github.com/johngavel/Terminal +https://github.com/IoliteCoding/IoliteCoding_SerialCommands +https://github.com/jamesy0ung/MPXA6115A +https://github.com/peomcherry/DJIMotorAlgoESP +https://github.com/Morgritech/MT-arduino-pin-debouncer +https://github.com/jackjansen/esp32_idf5_https_server +https://github.com/jackjansen/esp32_idf5_https_server_compat +https://github.com/jamesy0ung/MPXHZ6116A +https://github.com/ClemensAtElektor/Elektor_AudioDSP +https://github.com/PowerBroker2/DataLogger +https://github.com/stemosofc/AraraLib +https://github.com/vvs551/ESP_NOW_Network +https://github.com/Hedrahexon/X9C103S +https://github.com/JFlores88/SteerBot_TB6612 +https://github.com/AbdulBasitKhatri/OLED_Display_SSD1306 +https://github.com/makerlabvn/MKL_RTClib +https://github.com/vvs551/IRRemoteESP32 +https://github.com/aadilmallick/ez-arduino +https://github.com/makerlabvn/MKL_DS18B20 +https://github.com/KMESmart/KMESerial +https://github.com/pu2clr/QN8066 +https://github.com/Tympan/Tympan_Library +https://github.com/microbotsio/CoilCell +https://github.com/RBEGamer/HLK-LD2450 +https://github.com/giocip/ARDUINO_num7 +https://github.com/makerlabvn/MKL_DHT +https://github.com/vasya-zh/TMD3725 +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 +https://github.com/sqmsmu/PMIC_BQ25896 +https://github.com/DIYables/DIYables_Keypad +https://github.com/spaziochirale/Chirale_TensorFlowLite +https://github.com/tdk-invn-oss/motion.arduino.ICM42670S +https://github.com/eloquentarduino/arduino-WebTerminal +https://github.com/michaelnixonau/MaxLedControl +https://github.com/tdk-invn-oss/motion.arduino.ICM45686 +https://github.com/tdk-invn-oss/motion.arduino.ICM45605 +https://github.com/alexi-c/Primsteppermotor +https://github.com/daguerpedro/MQSensor +https://github.com/MJBeltran13/trioe +https://github.com/4ngel2769/Coloria +https://github.com/meebplayzs/GoogleCalendarClient +https://github.com/ys1374/AS5600_PsW +https://github.com/raghulrajg/OTAUpdateManager +https://github.com/makerlabvn/makerlabvnlib +https://github.com/makerlabvn/Makerlabvn_kit_CIA0_BOT +https://github.com/makerlabvn/mke-s01-ultrasonic-sensor +https://github.com/maarten-pennings/ENS210 +https://github.com/ams-OSRAM/OSP_aospi +https://github.com/ams-OSRAM/OSP_aoresult +https://github.com/ams-OSRAM/OSP_aoosp +https://github.com/ams-OSRAM/OSP_aocmd +https://github.com/ams-OSRAM/OSP_aomw +https://github.com/ams-OSRAM/OSP_aoui32 +https://github.com/ams-OSRAM/OSP_aoapps +https://github.com/ams-OSRAM/OSP_aotop +https://github.com/Herwig9820/Justina_interpreter +https://github.com/BrainCoTech/brain_arduino +https://github.com/cschorn01/PlugAndPlayForLoRa +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/salernosimone/tinyml4all-arduino https://github.com/CIRCUITSTATE/CSE_CircularBuffer https://github.com/bmurzabaev/mcp3201 https://github.com/CIRCUITSTATE/CSE_MillisTimer @@ -19,6 +491,7 @@ https://github.com/NightHawk-Technology/NH8CHIR-lib https://github.com/hassanalitamam/Car_robot/ https://github.com/nayooooo/StreamDeviceAT https://github.com/1ux/LED_RGB_Control +https://github.com/kanitawa/VersatileSwitch https://github.com/1ux/DCF77Decode https://github.com/tdk-invn-oss/ultrasonic.arduino.CHx01 https://github.com/stefangs/arduino-library-at24cxxx @@ -28,7 +501,6 @@ https://github.com/Zone-of-Engineering-Newcomers/MovingAverage https://github.com/cygig/AlmostRandom https://github.com/agomezgar/masaylolibrary https://github.com/agomezgar/escornabotLibrary -https://github.com/bitcode-tech/bc7215 https://github.com/VIDI-X/VIDI-X_BQ24295 https://github.com/pervu/FIFObuf https://github.com/orkungedik/kmeans @@ -60,9 +532,9 @@ https://github.com/2taras/espwifiarduino_ide_lib https://github.com/x0x0200/VARSTEP_ultrasonic https://github.com/StefanHerald/Timing https://github.com/tdk-invn-oss/pressure.arduino.ICP201XX -https://github.com/DigitalCodesign/DC-Core-Library +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 @@ -76,6 +548,7 @@ https://github.com/ProjectNeura/LEADS-Arduino https://github.com/todbot/TouchyTouch https://github.com/Malih002/Klinik-Encoder https://github.com/handmade0octopus/ds2 +https://github.com/tbekas/BLE-Gamepad-Client https://bitbucket.org/amotzek/cooperative-multitasking https://bitbucket.org/amotzek/mqtt-client https://bitbucket.org/christandlg/as3935mi @@ -94,6 +567,7 @@ https://bitbucket.org/teckel12/arduino-new-ping https://bitbucket.org/xoseperez/pcf8583 https://git.antares.id/lorawan-loraid/arduino-loraid https://github.com/anthonyshibitov/text1306 +https://github.com/0015/LVGL_Joystick https://github.com/0015/ChatGPT_Client_For_Arduino https://github.com/0015/ESP32-OV5640-AF https://github.com/0015/TP_Arduino_DigitalRain_Anim @@ -131,6 +605,7 @@ https://github.com/4-20ma/ModbusMaster https://github.com/4dsystems/Diablo16-Serial-Arduino-Library https://github.com/4dsystems/GFX4d https://github.com/4dsystems/GFX4dESP32 +https://github.com/4dsystems/GFX4dESP32P4 https://github.com/4dsystems/GFX4DIoD9 https://github.com/4dsystems/Goldelox-Serial-Arduino-Library https://github.com/4dsystems/Picaso-Serial-Arduino-Library @@ -144,6 +619,7 @@ https://github.com/608/CH55xSwitchControl https://github.com/8059blank/CytronPikaBot https://github.com/8bitbuddhist/PixelMaestro https://github.com/934virginia/Norman +https://github.com/ad039/ZSSC3230_I2C_Driver https://github.com/9glt/arduino-attiny85-fastpin-library https://github.com/9glt/arduino-attiny85-mcp23017-library https://github.com/A-Vision-Software/AVision_ESP8266 @@ -154,6 +630,9 @@ https://github.com/aaryaapg/SPC-Library https://github.com/Aasim-A/AsyncTimer https://github.com/abaskin/MAX72XX https://github.com/abcdaaaaaaaaa/MQSpaceData.h +https://github.com/abcdaaaaaaaaa/RadioactiveDataScience +https://github.com/abcdaaaaaaaaa/MG811DataScience +https://github.com/abcdaaaaaaaaa/SP3S-AQ2DataScience https://github.com/abderraouf-adjal/ArduinoSpritzCipher https://github.com/abderraouf-adjal/Embedded-PID https://github.com/AbdoullahBougataya/QCFA @@ -167,7 +646,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 @@ -189,6 +668,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 @@ -203,9 +683,11 @@ https://github.com/adafruit/Adafruit_BMP183_Library https://github.com/adafruit/Adafruit_BMP183_Unified_Library https://github.com/adafruit/Adafruit_BMP280_Library https://github.com/adafruit/Adafruit_BMP3XX +https://github.com/adafruit/Adafruit_BMP5xx https://github.com/adafruit/Adafruit_BNO055 https://github.com/adafruit/Adafruit_BNO08x https://github.com/adafruit/Adafruit_BNO08x_RVC +https://github.com/adafruit/Adafruit_bq25628e https://github.com/adafruit/Adafruit_BusIO https://github.com/adafruit/Adafruit_CAN https://github.com/adafruit/Adafruit_CAP1188_Library @@ -216,6 +698,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 @@ -223,7 +706,9 @@ https://github.com/adafruit/Adafruit_DotStarMatrix https://github.com/adafruit/Adafruit_DPS310 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 @@ -254,7 +739,9 @@ 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 https://github.com/adafruit/Adafruit_InternalFlash https://github.com/adafruit/Adafruit_IO_Arduino @@ -270,6 +757,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 @@ -295,10 +783,12 @@ https://github.com/adafruit/Adafruit_Microbit https://github.com/adafruit/Adafruit_MiniMLX90614 https://github.com/adafruit/Adafruit_MLX90393_Library https://github.com/adafruit/Adafruit_MLX90395 +https://github.com/adafruit/Adafruit_MLX90632 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 @@ -317,15 +807,18 @@ 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 +https://github.com/adafruit/Adafruit_PCM51xx https://github.com/adafruit/Adafruit_PCT2075 https://github.com/adafruit/Adafruit_PixelDust https://github.com/adafruit/Adafruit_Pixie https://github.com/adafruit/Adafruit_PM25AQI https://github.com/adafruit/Adafruit_Protomatter https://github.com/adafruit/Adafruit_PyCamera +https://github.com/adafruit/Adafruit_QMC5883P https://github.com/adafruit/Adafruit_RA8875 https://github.com/adafruit/Adafruit_S-35710 https://github.com/adafruit/Adafruit_SCD30 @@ -346,13 +839,17 @@ https://github.com/adafruit/Adafruit_Si7021 https://github.com/adafruit/Adafruit_SleepyDog https://github.com/adafruit/Adafruit_SoftServo https://github.com/adafruit/Adafruit_Soundboard_library +https://github.com/adafruit/Adafruit_SPA06_003 https://github.com/adafruit/Adafruit_SPIFlash https://github.com/adafruit/Adafruit_SSD1305 https://github.com/adafruit/Adafruit_SSD1306 https://github.com/adafruit/Adafruit_SSD1325_Library https://github.com/adafruit/Adafruit_SSD1327 +https://github.com/adafruit/Adafruit_STHS34PF80 https://github.com/adafruit/Adafruit_STMPE610 +https://github.com/adafruit/Adafruit_STSPIN https://github.com/adafruit/Adafruit_TCA8418 +https://github.com/adafruit/Adafruit_TCS3430 https://github.com/adafruit/Adafruit_TCS34725 https://github.com/adafruit/Adafruit_TestBed https://github.com/adafruit/Adafruit_TFLite @@ -363,6 +860,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 @@ -376,6 +874,8 @@ https://github.com/adafruit/Adafruit_UNTZtrument https://github.com/adafruit/Adafruit_VCNL4010 https://github.com/adafruit/Adafruit_VCNL4020 https://github.com/adafruit/Adafruit_VCNL4040 +https://github.com/adafruit/Adafruit_VCNL4200 +https://github.com/adafruit/Adafruit_VEML6046 https://github.com/adafruit/Adafruit_VEML6070 https://github.com/adafruit/Adafruit_VEML6075 https://github.com/adafruit/Adafruit_VEML7700 @@ -476,6 +976,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 @@ -555,7 +1056,7 @@ https://github.com/alextaujenis/RBD_Timer https://github.com/alextaujenis/RBD_WaterSensor https://github.com/AlexTutorial/KrokoTS https://github.com/AlfredoMunguia/TinyGuixhe -https://github.com/AlfredoSystems/Alfredo_NoU3 +https://github.com/AlfredoSystems/Alfredo-NoU3 https://github.com/AlfredoSystems/Alfredo-NoU2 https://github.com/AlfredoSystems/AlfredoConnect-Receive https://github.com/AlfredoSystems/AlfredoCRSF @@ -568,6 +1069,9 @@ https://github.com/aliffathoni/ESPAutoWifi https://github.com/alikabeel/Letters-and-Numbers-Seven-Segment-Display-Library 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 @@ -626,6 +1130,7 @@ https://github.com/amiga68k/electuno https://github.com/amirchev/EZPROM https://github.com/amirchev/VariableTimedAction https://github.com/amperka/AmperkaFET +https://github.com/AmissDrake/MDLib https://github.com/amperka/Octofet https://github.com/amperka/Troyka-IMU https://github.com/amperka/TroykaAccelerometer @@ -664,6 +1169,10 @@ https://github.com/Andy4495/LED744511 https://github.com/Andy4495/SWI2C https://github.com/Andy4495/TIL306 https://github.com/Andy4495/TLC591x +https://github.com/Andy4495/LCD_SharpBoosterPack_SPI +https://github.com/Andy4495/OneMsTaskTimer +https://github.com/Andy4495/Energia-EducationalBP_MKII +https://github.com/Andy4495/Energia-MultiTasking https://github.com/andydoro/DST_RTC https://github.com/angrest/pocketBME280 https://github.com/aniket-hpp/TFT_eSPI_Scroll @@ -708,8 +1217,10 @@ 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 https://github.com/arduino-libraries/Arduino_AdvancedAnalog https://github.com/arduino-libraries/Arduino_APA102 https://github.com/arduino-libraries/Arduino_APDS9960 @@ -720,6 +1231,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 @@ -736,7 +1248,9 @@ 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 https://github.com/arduino-libraries/Arduino_LSM6DS3 https://github.com/arduino-libraries/Arduino_LSM6DSOX @@ -750,8 +1264,11 @@ 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 +https://github.com/arduino-libraries/Arduino_OPC_UA https://github.com/arduino-libraries/Arduino_OplaUI https://github.com/arduino-libraries/Arduino_Opta_Blueprint https://github.com/arduino-libraries/Arduino_OV767X @@ -760,6 +1277,7 @@ https://github.com/arduino-libraries/Arduino_Portenta_OTA https://github.com/arduino-libraries/Arduino_PortentaBreakout https://github.com/arduino-libraries/Arduino_PortentaMachineControl https://github.com/arduino-libraries/Arduino_POSIXStorage +https://github.com/arduino-libraries/Arduino_PowerManagement https://github.com/arduino-libraries/Arduino_Pro_Tutorials https://github.com/arduino-libraries/Arduino_ScienceJournal https://github.com/arduino-libraries/Arduino_ScienceKitCarrier @@ -808,7 +1326,7 @@ https://github.com/arduino-libraries/MKRMotorCarrier https://github.com/arduino-libraries/MKRNB https://github.com/arduino-libraries/MKRWAN https://github.com/arduino-libraries/MKRWAN_v2 -https://github.com/arduino-libraries/Modulino +https://github.com/arduino-libraries/Arduino_Modulino https://github.com/arduino-libraries/Mouse https://github.com/arduino-libraries/NTPClient https://github.com/arduino-libraries/PhysicsLabFirmware @@ -886,6 +1404,7 @@ https://github.com/arpruss/vectordisplayarduino https://github.com/ARSadri/PushButtonClicks https://github.com/ArsaLearn/Arsa-Main https://github.com/arsalmaner/Arduino-Libraries +https://github.com/bwucke/TouchLed https://github.com/ArtronShop/Artron_DS1338 https://github.com/ArtronShop/ArtronShop_BH1750 https://github.com/ArtronShop/ArtronShop_LineNotify @@ -901,6 +1420,7 @@ https://github.com/ArtronShop/IOXESP32Audio https://github.com/ArtronShop/IOXESP32Motor https://github.com/ArtronShop/KidMotorV4-Arduino https://github.com/ARTS37/SerialMenuCmd +https://github.com/aserebryakov/arduino-cpp-components-library https://github.com/AshleyF/BriefEmbedded https://github.com/asjdf/WebSerialLite https://github.com/askuric/Arduino-FOC @@ -922,7 +1442,11 @@ https://github.com/asukiaaa/arduino-enum https://github.com/asukiaaa/arduino-Gauge 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 https://github.com/asukiaaa/arduino-ResistorReader https://github.com/asukiaaa/arduino-rs485 @@ -962,7 +1486,7 @@ https://github.com/Avamander/arduino-tvout https://github.com/avandalen/avdweb_AnalogReadFast https://github.com/avandalen/avdweb_FreqPeriodCounter https://github.com/avandalen/avdweb_SAMDtimer -https://github.com/avandalen/avdweb_Switch +https://github.com/avdwebLibraries/avdweb_Switch https://github.com/avandalen/VirtualDelay https://github.com/avinabmalla/ESP32_BleSerial https://github.com/avishorp/TM1637 @@ -975,9 +1499,7 @@ https://github.com/axelelettronica/sme-lsm6ds3-library https://github.com/axelelettronica/sme-nxp-st-library https://github.com/axelelettronica/sme-rn2483-library https://github.com/Aypac/Arduino-TR-064-SOAP-Library -https://github.com/ayushsharma82/AsyncElegantOTA https://github.com/ayushsharma82/EasyDDNS -https://github.com/ayushsharma82/EasyUI https://github.com/ayushsharma82/ElegantOTA https://github.com/ayushsharma82/ESP-DASH https://github.com/ayushsharma82/ESPConnect @@ -1001,11 +1523,14 @@ https://github.com/bartoszbielawski/C-Tasks https://github.com/bartoszbielawski/LEDMatrixDriver https://github.com/Basirk/I2CHelper https://github.com/BasPaap/Bas.Button +https://github.com/BasPaap/Bas.CallbackCaller +https://github.com/BasPaap/Bas.SinglePinDevice https://github.com/bblanchon/ArduinoContinuousStepper https://github.com/bblanchon/ArduinoJson https://github.com/bblanchon/ArduinoStreamUtils https://github.com/bblanchon/ArduinoTrace https://github.com/BCISOFT/OvhAPI +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 @@ -1019,6 +1544,8 @@ https://github.com/beegee-tokyo/VNCL4020C-Arduino https://github.com/beegee-tokyo/WisBlock-API https://github.com/beegee-tokyo/WisBlock-API-V2 https://github.com/beegee-tokyo/RUI3-Arduino-Library +https://github.com/beegee-tokyo/RAK-OneWireSerial +https://github.com/beegee-tokyo/RAK_LPP https://github.com/beetlikeyg087/MFUthings https://github.com/Beirdo/Arduino-FRAM-Cache https://github.com/Beirdo/Arduino-LIN @@ -1028,7 +1555,6 @@ https://github.com/Beirdo/Arduino-PCA9536 https://github.com/Beirdo/Arduino-TCA9534 https://github.com/BelaPlatform/Trill-Arduino https://github.com/belidzs/PreciseLM35 -https://github.com/BenCestMoiQuoi/INSARIANNE https://github.com/bengtmartensson/ABeacon https://github.com/bengtmartensson/AGirs https://github.com/bengtmartensson/Arduino-DecodeIR @@ -1256,6 +1782,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 @@ -1263,6 +1790,7 @@ https://github.com/boothinator/ProgmemAssert https://github.com/boothinator/TimerExtensions https://github.com/BoschSensortec/Bosch-BME68x-Library https://github.com/BoschSensortec/BSEC-Arduino-library +https://github.com/boschsensortec/Bosch-BSEC2-Library https://github.com/botletics/Botletics-SIM7000 https://github.com/Botly-Studio/Botly-Library https://github.com/boxtec/Witty @@ -1338,7 +1866,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 @@ -1371,8 +1901,8 @@ https://github.com/chipKIT32-libraries/RN487x https://github.com/ChipTechno/ESP8266OTA https://github.com/ChipTechno/WiFiMan https://github.com/chirp/chirp-arduino -https://github.com/ChitoKim/mahjongAsst -https://github.com/ChitoKim/mahjongAsst_U8X8 +https://github.com/ChitoKim/EiMOS_U8X8 +https://github.com/ChitoKim/EiMOS https://github.com/chochain/eForth1 https://github.com/chochain/nanoFORTH https://github.com/Chris--A/ArdOSC @@ -1436,6 +1966,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 @@ -1491,7 +2022,6 @@ https://github.com/connornishijima/Pixie https://github.com/connornishijima/Pixie_Chroma https://github.com/connornishijima/Pixie_Chroma_Lite https://github.com/connornishijima/TinySnore -https://github.com/ConsentiumInc/ConsentiumThingsDalton https://github.com/constiko/RV-3028_C7-Arduino_Library https://github.com/contrem/arduino-timer https://github.com/CONTROLLINO-PLC/CONTROLLINO_Library @@ -1505,6 +2035,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 @@ -1577,6 +2108,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 @@ -1600,12 +2134,13 @@ https://github.com/datacute/TinyOLED-Fonts https://github.com/DatavenueLiveObjects/LiveObjects_SDK_for_Arduino https://github.com/dattasaurabh82/RV8803Tiny https://github.com/dattasaurabh82/TinyMegaI2C -https://github.com/davetcc/IoAbstraction -https://github.com/davetcc/LiquidCrystalIO -https://github.com/davetcc/SimpleCollections -https://github.com/davetcc/TaskManagerIO -https://github.com/davetcc/tcMenuLib -https://github.com/davetcc/tcUnicodeHelper +https://github.com/TcMenu/IoAbstraction +https://github.com/TcMenu/LiquidCrystalIO +https://github.com/TcMenu/SimpleCollections +https://github.com/TcMenu/TaskManagerIO +https://github.com/TcMenu/tcMenuLib +https://github.com/TcMenu/tcMenuLog +https://github.com/TcMenu/tcUnicodeHelper https://github.com/david1983/eBtn https://github.com/DavidArmstrong/SCL3300 https://github.com/DavidArmstrong/SiderealObjects @@ -1626,22 +2161,33 @@ https://github.com/ddxfish/XPT2046_Bitbang_Arduino_Library https://github.com/DeanIsMe/SevSeg https://github.com/DedeHai/NeoPixelPainter https://github.com/DefHam140/IOTClient +https://github.com/DefHam140/ZModbusRTU 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 https://github.com/dejwk/roo_flags https://github.com/dejwk/roo_icons +https://github.com/dejwk/roo_io +https://github.com/dejwk/roo_io_arduino https://github.com/dejwk/roo_logging https://github.com/dejwk/roo_material_icons +https://github.com/dejwk/roo_onewire +https://github.com/dejwk/roo_prefs +https://github.com/dejwk/roo_quantity https://github.com/dejwk/roo_scheduler +https://github.com/dejwk/roo_temperature +https://github.com/dejwk/roo_threads https://github.com/dejwk/roo_time -https://github.com/delta-G/EventLinkInterrupt -https://github.com/delta-G/GPT_Stepper -https://github.com/delta-G/LoveButton -https://github.com/delta-G/PID_DG +https://github.com/dejwk/roo_time_ds3231 +https://github.com/dejwk/roo_wifi +https://github.com/dejwk/roo_windows +https://github.com/dejwk/roo_windows_onewire +https://github.com/dejwk/roo_windows_wifi https://github.com/deltarobotone/one_system_library https://github.com/deneyapkart/deneyap_arduino_examples https://github.com/deneyapkart/deneyap-5x7-led-matris-arduino-library @@ -1665,6 +2211,7 @@ https://github.com/deneyapkart/deneyap-mesafe-olcer-isik-algilayici-arduino-libr https://github.com/deneyapkart/deneyap-mikrofon-arduino-library https://github.com/deneyapkart/deneyap-oled-ekran-arduino-library https://github.com/deneyapkart/deneyap-renk-donusturme-arduino-library +https://github.com/AlexMihai1804/ATC_MiThermometer-Arduino https://github.com/deneyapkart/deneyap-role-arduino-library https://github.com/deneyapkart/deneyap-servo-arduino-library https://github.com/deneyapkart/deneyap-sicaklik-nem-basinc-olcer-arduino-library @@ -1700,11 +2247,13 @@ https://github.com/devxplained/HTU21D-Sensor-Library https://github.com/devxplained/MAX3010x-Sensor-Library https://github.com/DFRobot/DFRobot_AD9837 https://github.com/DFRobot/DFRobot_ADS1115 +https://github.com/DFRobot/DFRobot_ADS1115_0_10V https://github.com/DFRobot/DFRobot_ADXL345 https://github.com/DFRobot/DFRobot_AHT20 https://github.com/DFRobot/DFRobot_AirQualitySensor https://github.com/DFRobot/DFRobot_Alcohol https://github.com/DFRobot/DFRobot_AS3935 +https://github.com/DFRobot/DFRobot_AS6221 https://github.com/DFRobot/DFRobot_AS7341 https://github.com/DFRobot/DFRobot_ASR https://github.com/DFRobot/DFRobot_B_LUX_V30B @@ -1718,7 +2267,9 @@ 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_Cosmo https://github.com/DFRobot/DFRobot_CH423 https://github.com/DFRobot/DFRobot_DF1101S https://github.com/DFRobot/DFRobot_DF1201S @@ -1734,8 +2285,10 @@ https://github.com/DFRobot/DFRobot_EnvironmentalSensor https://github.com/DFRobot/DFRobot_EOxygenSensor https://github.com/DFRobot/DFRobot_FreeTenIMU https://github.com/DFRobot/DFRobot_Gesture_Touch +https://github.com/DFRobot/DFRobot_GestureFaceDetection https://github.com/DFRobot/DFRobot_GM60 https://github.com/DFRobot/DFRobot_GNSS +https://github.com/DFRobot/DFRobot_GNSSAndRTC https://github.com/DFRobot/DFRobot_GP8302 https://github.com/DFRobot/DFRobot_GP8403 https://github.com/DFRobot/DFRobot_GP8XXX @@ -1748,6 +2301,7 @@ https://github.com/DFRobot/DFRobot_ICP10111 https://github.com/DFRobot/DFRobot_ID809_I2C https://github.com/DFRobot/DFRobot_IICSerial https://github.com/DFRobot/DFRobot_IIS +https://github.com/AlexMihai1804/Yeelight https://github.com/DFRobot/DFRobot_INA219 https://github.com/DFRobot/DFRobot_ITG3200 https://github.com/DFRobot/DFRobot_LcdDisplay @@ -1758,6 +2312,7 @@ https://github.com/DFRobot/DFRobot_Lora https://github.com/DFRobot/DFRobot_LPUPS https://github.com/DFRobot/DFRobot_LSM303 https://github.com/DFRobot/DFRobot_LWLP +https://github.com/DFRobot/DFRobot_LTR308 https://github.com/DFRobot/DFRobot_Maqueenplus https://github.com/DFRobot/DFRobot_MAX17043 https://github.com/DFRobot/DFRobot_MAX31855 @@ -1786,6 +2341,7 @@ https://github.com/DFRobot/DFRobot_RS01 https://github.com/DFRobot/DFRobot_RTU https://github.com/DFRobot/DFRobot_SCD4X https://github.com/DFRobot/DFRobot_SerialScreen771 +https://github.com/DFRobot/DFRobot_SFA40 https://github.com/DFRobot/DFRobot_SGP40 https://github.com/DFRobot/DFRobot_SHT https://github.com/DFRobot/DFRobot_SHT20 @@ -1798,6 +2354,7 @@ https://github.com/DFRobot/DFRobot_STS3X https://github.com/DFRobot/DFRobot_SU03T https://github.com/DFRobot/DFRobot_TCS3430 https://github.com/DFRobot/DFRobot_TCS34725 +https://github.com/DFRobot/DFRobot_TM6605 https://github.com/DFRobot/DFRobot_TMF8x01 https://github.com/DFRobot/DFRobot_URM07 https://github.com/DFRobot/DFRobot_URM09 @@ -1810,6 +2367,7 @@ https://github.com/DFRobot/DFRobot_VL6180X https://github.com/DFRobot/DFRobot_VoiceRecorder https://github.com/DFRobot/DFRobotDFPlayerMini https://github.com/DFRobot/DFRobotIRPosition +https://github.com/DFRobot/DFRobot_MHZ9041A https://github.com/dgduncan/Arduino-MCP4131 https://github.com/dgduncan/SevenSegment https://github.com/Dhanabhon/TomIBT2 @@ -1883,6 +2441,8 @@ https://github.com/dmkishi/Dusk2Dawn https://github.com/DmytroKorniienko/EmbUI https://github.com/dndg/Finder6M https://github.com/dndg/Finder7M +https://github.com/dndubins/tinyServo84 +https://github.com/dndubins/tinyServo85 https://github.com/dndubins/EEPROMsimple https://github.com/dndubins/QuickStats https://github.com/dndubins/SRAMsimple @@ -1904,6 +2464,7 @@ https://github.com/dok-net/ghostl.git https://github.com/dok-net/tca9544a.git https://github.com/domiluci/LiquidCrystal_NKC https://github.com/dominicklee/TrueProx/ +https://github.com/Domochip/Palazzetti https://github.com/dong-higenis/HS_CAN_485_ESP32 https://github.com/DonnyCraft1/PIDArduino https://github.com/Dono7/DonoLed @@ -1919,6 +2480,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 @@ -1939,7 +2501,7 @@ https://github.com/dvarrel/ESPAsyncTCP.git https://github.com/dvarrel/ESPAsyncWebSrv https://github.com/dvarrel/ESPping https://github.com/dvarrel/TM1638.git -https://github.com/dvernier/GDXLib +https://github.com/VernierST/GDXLib https://github.com/dwinhmi/DWIN_DGUS_HMI https://github.com/dwrobel/TrivialKalmanFilter https://github.com/dxinteractive/AnalogMultiButton @@ -1950,7 +2512,9 @@ https://github.com/E-Lagori/ELi_McM_4_00 https://github.com/E-Lagori/ELi_MdM_4_00 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 @@ -2049,6 +2613,9 @@ https://github.com/EnviroDIY/KellerModbus 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/EnviroDIY/ANBSensorsModbus https://github.com/eoh-jsc/era-lib https://github.com/epsilonrt/ad7124 https://github.com/epsilonrt/EepromSecureData @@ -2081,6 +2648,9 @@ https://github.com/ESDeveloperBR/ES32Lab 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 https://github.com/esp-arduino-libs/ESP32_IO_Expander @@ -2102,6 +2672,7 @@ https://github.com/evert-arias/EasyBuzzer https://github.com/evert-arias/LedSync https://github.com/evert-arias/MyBlinker https://github.com/evivetoolkit/evive-Library +https://github.com/EVNdevs/EVN-arduino https://github.com/EvTheFuture/WebConsole https://github.com/ewertons/esp32-azureiotkit-sensors https://github.com/ewpa/LibSSH-ESP32 @@ -2163,6 +2734,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 @@ -2189,6 +2761,7 @@ https://github.com/feklee/MultiTrans https://github.com/felias-fogg/avrCalibrate https://github.com/felias-fogg/DotMatrix5x7 https://github.com/felias-fogg/FlexWire +https://github.com/felias-fogg/progmem_far https://github.com/felias-fogg/SingleWireSerial https://github.com/felias-fogg/SoftI2CMaster https://github.com/felias-fogg/TXOnlySerial @@ -2259,7 +2832,7 @@ https://github.com/franeum/TI_SN76489 https://github.com/FrankBoesing/FastCRC https://github.com/frankjoshua/rosserial_arduino_lib https://github.com/Franzininho/Franzininho_LiquidCrystal -https://github.com/frason5566/MatrixMini +https://github.com/Matrix-Robotics/MatrixMini https://github.com/Fraunhofer-IMS/AIfES_for_Arduino https://github.com/freaklabs/cmdArduino https://github.com/Fredi/ArduinoIRC @@ -2320,8 +2893,11 @@ 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/geekblemaker/Geekble_note2freq -https://github.com/geekbleofficial/Geekble_LieDetector +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 https://github.com/geekbleofficial/Geekble_Oscillator https://github.com/geeny/geenymodem https://github.com/Gemelon/Pushbutton @@ -2331,6 +2907,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 @@ -2350,6 +2927,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 @@ -2383,6 +2961,7 @@ https://github.com/GOB52/gob_unifiedButton https://github.com/gobbolab/room-weather https://github.com/Goji2100/ESP32softPWM https://github.com/goldfish4tech/Goldfish4Tech +https://github.com/goldfish4tech/Goldfish4TechAirPump https://github.com/goncalomb/KeyMatrix https://github.com/GoodFilling/Motor-Driver https://github.com/GoogleCloudPlatform/google-cloud-iot-arduino @@ -2432,6 +3011,34 @@ https://github.com/gvandersel/SXAccessoire https://github.com/GypsyRobot/CuteBuzzerSounds https://github.com/GypsyRobot/Formulinha https://github.com/GypsyRobot/MusicBuzzer +https://github.com/GyverLibs/uButton +https://github.com/GyverLibs/GyverPing +https://github.com/GyverLibs/GyverMenu +https://github.com/GyverLibs/GVector +https://github.com/GyverLibs/StringN +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 +https://github.com/GyverLibs/WiFiConnector +https://github.com/GyverLibs/Table +https://github.com/GyverLibs/FOR_MACRO +https://github.com/GyverLibs/FastBot2 +https://github.com/GyverLibs/GyverDS3231 +https://github.com/GyverLibs/Settings +https://github.com/GyverLibs/StreamIO +https://github.com/GyverLibs/GyverDB +https://github.com/GyverLibs/Benchmark +https://github.com/GyverLibs/GyverHTTP +https://github.com/GyverLibs/GTL +https://github.com/GyverLibs/EspSleep +https://github.com/GyverLibs/pgm_utils https://github.com/GyverLibs/rtc_utils https://github.com/GyverLibs/Stack https://github.com/GyverLibs/GyverDS18 @@ -2541,6 +3148,7 @@ https://github.com/HakkanR/DMD2TUR https://github.com/HakkanR/slowAES https://github.com/HakkanR/SSD1306TUR https://github.com/HamzaYslmn/detaBaseESP8266 +https://github.com/HamzaYslmn/Esp32-RTOS-Serial https://github.com/handmade0octopus/CursedDoubleLinkedListInterface-library https://github.com/handmade0octopus/ESP32-TWAI-CAN https://github.com/happy12/SPL06-001 @@ -2549,6 +3157,7 @@ https://github.com/Hardi-St/MobaLedLib https://github.com/hardmax/ADS1232 https://github.com/hardmax/LogToQueue https://github.com/harnettlab/vl53l0x-arduino +https://github.com/HarrysLabDotNet/nes-controller-interface https://github.com/harvie/ps2dev https://github.com/Harvie/RotaryDial https://github.com/hasenradball/AM2302-Sensor @@ -2558,6 +3167,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 @@ -2599,6 +3209,7 @@ https://github.com/hideakitai/FastLEDManager https://github.com/hideakitai/Filters https://github.com/hideakitai/HyperDeck https://github.com/hideakitai/I2CExtension +https://github.com/hideakitai/LTC230x https://github.com/hideakitai/MAX17048 https://github.com/hideakitai/MaxMtrParser https://github.com/hideakitai/MCP4728 @@ -2663,6 +3274,7 @@ https://github.com/hsaturn/TinyMqtt https://github.com/hsfl/artemis-teensy https://github.com/junkfix/dhtESP32-rmt https://github.com/junkfix/esp32-ds18b20 +https://github.com/junkfix/esp32-rmt-ir https://github.com/HuangYuTse/GM1602lib https://github.com/huilab/HoneywellTruStabilitySPI https://github.com/huilab/HoneywellZephyrI2C @@ -2670,6 +3282,7 @@ https://github.com/HullabalooRobotics/Hyperduino-Library https://github.com/HullabalooRobotics/Soldering-Machine https://github.com/hunamizawa/ESPPerfectTime https://github.com/hunsalz/log4Esp +https://github.com/husarnet/husarnet-esp32-arduino https://github.com/hutorny/cojson.lib https://github.com/hvanvoorthuijsen/InkyBoard https://github.com/hydra/arduino-ICM42605 @@ -2725,20 +3338,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 @@ -2749,6 +3356,7 @@ https://github.com/InsightLabTools/RPulse https://github.com/instanceofMA/arduino-fetch https://github.com/Integreight/1Sheeld-Arduino-Library https://github.com/Interested-In-Spresense/MM-S50MV +https://github.com/Interested-In-Spresense/E220900t22s_jp https://github.com/InterstitialTech/quadrant-lib https://github.com/InvenSenseInc/arduino.ICM42670P https://github.com/Invisibleman1002/dynaHTML @@ -2782,7 +3390,10 @@ 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/Dimmer_ITC +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 @@ -2821,8 +3432,10 @@ https://github.com/jandelgado/jled https://github.com/jandelgado/jled-pca9685-hal https://github.com/jandelgado/log4arduino https://github.com/jandrassy/ArduinoOTA -https://github.com/jandrassy/EthernetENC -https://github.com/jandrassy/NetApiHelpers +https://github.com/jmelabs/BuzzerMelody +https://github.com/Networking-for-Arduino/EthernetENC +https://github.com/Networking-for-Arduino/EthernetEspAT +https://github.com/Networking-for-Arduino/NetApiHelpers https://github.com/jandrassy/StreamLib https://github.com/jandrassy/TelnetStream https://github.com/jandrassy/UnoWiFiDevEdSerial1 @@ -2842,9 +3455,12 @@ 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 https://github.com/janthefischer/SerialVariable https://github.com/janw-cz/JWA_BME280 https://github.com/jaredliw/PikaBot @@ -2904,7 +3520,6 @@ https://github.com/jgOhYeah/LCDGraph https://github.com/jgOhYeah/TunePlayer https://github.com/jgromes/RadioLib https://github.com/jgvmonteiro/SerialBus -https://github.com/jhagas/ESP32-Supabase https://github.com/JHershey69/DarkSkySevenDay https://github.com/jhershey69/MoonStruck https://github.com/JHershey69/OpenWeatherOneCall @@ -2943,6 +3558,19 @@ https://github.com/joeqread/arduino-duktape https://github.com/joeycastillo/OSO_Arduino_LCD https://github.com/JoeyStrandnes/Arduino-Toggl-API https://github.com/JoeyStrandnes/NST1001_Arduino-Driver +https://github.com/Johboh/ConnectionHelper +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 https://github.com/johnnyb/Eventually https://github.com/johnnyb/Shifty @@ -2998,6 +3626,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 @@ -3042,7 +3671,6 @@ https://github.com/kcl93/fusb302_arduino https://github.com/kcl93/muCom https://github.com/kcl93/Tasks https://github.com/kcl93/VT100 -https://github.com/KCN-judu/KCN-Utility-Arduino-lib https://github.com/kd8bxp/micro-Maqueen-Arduino-Library https://github.com/kd8bxp/TheTroll https://github.com/kd8bxp/Word100 @@ -3317,6 +3945,7 @@ https://github.com/kosme/flex_DST https://github.com/kosme/timestamp32bits https://github.com/kotobuki/SetPoint https://github.com/kotwatthana/WebServerFileUpload +https://github.com/kotwatthana/TimerOne_V2 https://github.com/kousheekc/Kinematics https://github.com/kpn-iot/thingsml-c-library https://github.com/KravitzLab/MicrocontrollersForNeuroscience @@ -3329,7 +3958,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 @@ -3367,6 +3996,7 @@ https://github.com/ldab/lis3dh-motion-detection https://github.com/ldab/u-blox_GNSS https://github.com/Leafony/LeafonySTM32 https://github.com/LeandroLimaPRO/Pressure +https://gitlab.com/leandro.mattioli/Mux7SegsDisplay https://github.com/leaphy-robotics/leaphy-extensions https://github.com/leaphy-robotics/leaphy-extensions-extra https://github.com/leaphy-robotics/leaphy-extensions-original @@ -3385,6 +4015,7 @@ https://github.com/leftCoast/LC_slowServo https://github.com/Legion2/CorsairLightingProtocol https://github.com/Legion2/Somfy_Remote_Lib https://github.com/lemio/esp32_ble_wedo +https://github.com/lemio/iqs5xx-b000_trackpad https://github.com/lemmingDev/ESP32-BLE-Gamepad https://github.com/lendres/BatteryMeter-Arduino https://github.com/lendres/BlinkSuite-Arduino @@ -3456,6 +4087,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 @@ -3476,6 +4108,8 @@ https://github.com/Locoduino/ScheduleTable https://github.com/Locoduino/SlowMotionServo https://github.com/LoganTraceur/LogansGreatButton https://github.com/logickworkshop/du-ino +https://github.com/loginov-rocks/AwsIotWiFiClient +https://github.com/loginov-rocks/BluetoothTerminal https://github.com/loginov-rocks/UbxGps https://github.com/Longan-Labs/Arduino_CAN_BUS_MCP2515 https://github.com/loopj/i2c-sensor-hal @@ -3574,6 +4208,9 @@ https://github.com/Lynxmotion/LSS_Library_Arduino https://github.com/lyriarte/StripDisplay https://github.com/lysek01/ModbusPowerMeter/ https://github.com/lysek01/PulseFlowMeter/ + +https://github.com/lysek01/ENS22/ + https://github.com/lyvewave/arduino-serial-data-exporter https://github.com/M-Reimer/EncoderStepCounter https://github.com/M-Reimer/IwitVolumeKnob @@ -3588,25 +4225,33 @@ 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 https://github.com/m5stack/ATOM_DTU_CAT1 https://github.com/m5stack/ATOM_DTU_LoRaWAN https://github.com/m5stack/ATOM_DTU_NB https://github.com/m5stack/M5Atomic-Motion +https://github.com/m5stack/M5Atomic-EchoBase https://github.com/m5stack/DEMO-BOARD https://github.com/m5stack/M5_BMM150 https://github.com/m5stack/M5_EzData https://github.com/m5stack/M5-ADS1100 https://github.com/m5stack/M5-ADS1115 +https://github.com/m5stack/M5UnitUnified https://github.com/m5stack/M5-DLight https://github.com/m5stack/M5-Ethernet https://github.com/m5stack/M5-FPC1020A https://github.com/m5stack/M5-LoRa-E220-JP https://github.com/m5stack/M5-LoRaWAN https://github.com/m5stack/M5-RoverC +https://github.com/m5stack/M5-STHS34PF80 +https://github.com/m5stack/M5Utility https://github.com/m5stack/M5Atom https://github.com/m5stack/M5AtomS3 https://github.com/m5stack/M5BurnerNVS @@ -3633,6 +4278,7 @@ https://github.com/m5stack/M5Station https://github.com/m5stack/M5StickC https://github.com/m5stack/M5StickC-Plus https://github.com/m5stack/M5StickCPlus2 +https://github.com/m5stack/M5NanoC6 https://github.com/m5stack/M5Unified https://github.com/m5stack/M5Unit-4RELAY https://github.com/m5stack/M5Unit-ACSSR @@ -3643,10 +4289,14 @@ https://github.com/m5stack/M5Unit-Encoder https://github.com/m5stack/M5Unit-ENV https://github.com/m5stack/M5Unit-EXTIO2 https://github.com/m5stack/M5Unit-GLASS +https://github.com/m5stack/M5Unit-GESTURE https://github.com/m5stack/M5Unit-IMU-Pro-Mini https://github.com/m5stack/M5Unit-KMeter +https://github.com/m5stack/M5Unit-HEART https://github.com/m5stack/M5Unit-MQTT https://github.com/m5stack/M5Unit-PoESP32 +https://github.com/m5stack/M5HAL +https://github.com/m5stack/M5Unit-HUB https://github.com/m5stack/M5Unit-RELAY https://github.com/m5stack/M5Unit-RTC https://github.com/m5stack/M5Unit-Sonic @@ -3655,11 +4305,18 @@ https://github.com/m5stack/M5Unit-ToF4M 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/mabuware/MabuTrace https://github.com/machinefi/psa-crypto-arduino https://github.com/machinefi/w3bstream-client-arduino-ce https://github.com/MacroYau/LTC2942-Arduino-Library @@ -3687,6 +4344,7 @@ https://github.com/MaffooClock/DFR_Radar https://github.com/MaffooClock/ESP32RotaryEncoder https://github.com/MAINAKMONDAL98/MSMPLOTTER https://github.com/mairas/ReactESP +https://github.com/maikelsalazar/SevenSegmentDisplay https://github.com/maisonsmd/msTask https://github.com/MaiTheLord/BetterOTA https://github.com/MajicDesigns/MD_AButton @@ -3746,6 +4404,7 @@ https://github.com/marcin-filipiak/DeviceConfigJSON https://github.com/marcinbor85/BlinkCode https://github.com/marcinbor85/microshell https://github.com/marcinbor85/SmartButton +https://github.com/marcinbor85/clip https://github.com/marcinsaj/FlipDisc https://github.com/marcinsaj/RTC_RX8025T https://github.com/marclura/PT2258-Arduino-Library @@ -3767,6 +4426,7 @@ https://github.com/MarkusLange/RTCDue https://github.com/MarlinFirmware/U8glib-HAL https://github.com/MarScaper/ephemeris https://github.com/Marthaarman/dmx-transceiver +https://github.com/martinheise/arduino-ui-components https://github.com/Martin-Laclaustra/CronAlarms https://github.com/martin-leo/KeyboardAzertyFr https://github.com/martin2250/ADCTouch @@ -3788,15 +4448,18 @@ https://github.com/mateusjunges/accel-stepper-with-distances https://github.com/mathcoll/t6iot https://github.com/mathertel/DMXSerial https://github.com/mathertel/DMXSerial2 +https://github.com/mathertel/GFXdraw https://github.com/mathertel/LiquidCrystal_PCF8574 https://github.com/mathertel/OneButton 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/MycilaDimmer +https://github.com/mathieucarbou/MycilaDS18 https://github.com/mathieucarbou/MycilaEasyDisplay https://github.com/mathieucarbou/MycilaESPConnect https://github.com/mathieucarbou/MycilaHADiscovery @@ -3804,11 +4467,15 @@ https://github.com/mathieucarbou/MycilaJSY https://github.com/mathieucarbou/MycilaLogger https://github.com/mathieucarbou/MycilaMQTT https://github.com/mathieucarbou/MycilaNTP +https://github.com/mathieucarbou/MycilaPulseAnalyzer https://github.com/mathieucarbou/MycilaPZEM004Tv3 https://github.com/mathieucarbou/MycilaRelay +https://github.com/mathieucarbou/MycilaSystem https://github.com/mathieucarbou/MycilaTaskManager https://github.com/mathieucarbou/MycilaTaskMonitor https://github.com/mathieucarbou/MycilaTrial +https://github.com/mathieucarbou/MycilaUtilities +https://github.com/mathieucarbou/MycilaWebSerial https://github.com/mathworks/thingspeak-arduino https://github.com/matmunk/DS18B20 https://github.com/matmunk/LiquidCrystal_74HC595 @@ -3869,6 +4536,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 @@ -3909,6 +4577,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 @@ -3968,12 +4637,13 @@ https://github.com/MileBuurmeijer/DS1307newAlarms https://github.com/milesburton/Arduino-Temperature-Control-Library https://github.com/mimeindustries/Marceau https://github.com/mimuz/mimuz-ch55x -https://github.com/MINDS-i/MINDS-i +https://github.com/MINDS-i/MINDS-i-Common https://github.com/MINDS-i/MINDS-i-Drone +https://github.com/MINDS-i/MINDS-i-Foundations +https://github.com/MINDS-i/MINDS-i-Farming https://github.com/minhaj6/DigiPotX9Cxxx https://github.com/Mirco04/Simple_HC-SR04_Control https://github.com/mirobot/mirobot-arduino -https://github.com/misaproyectil/digitalIO https://github.com/misaproyectil/GD3300 https://github.com/misaproyectil/Sprite_Serial_Control https://github.com/mission-mangal/PositionControl @@ -3983,6 +4653,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 @@ -4012,6 +4683,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 @@ -4041,10 +4713,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 @@ -4111,7 +4781,12 @@ https://github.com/Naguissa/uMuxOutputLib https://github.com/Naguissa/uRTCLib https://github.com/Naguissa/uSevenSegmentLib https://github.com/Naguissa/uTimerLib +https://github.com/Naguissa/uTimerBrokerLib https://github.com/Naguissa/uUnixDate +https://github.com/Naguissa/uHexLib +https://github.com/Naguissa/uMessagesBrokerLib +https://github.com/Naguissa/uConfigLib +https://github.com/Naguissa/uEspConfigLib https://github.com/naiithink/musicians-mate https://github.com/nailujx86/ESP8266_multipart https://github.com/namino-cc/Namino_Library @@ -4246,8 +4921,11 @@ https://github.com/nrwiersma/ConfigManager https://github.com/nrwiersma/ESP8266Scheduler https://github.com/nthnn/Anomalia https://github.com/nthnn/diwa +https://github.com/nthnn/DynaConfig +https://github.com/nthnn/goblin3d https://github.com/nthnn/microlzw https://github.com/nthnn/n2cmu-arduino +https://github.com/nthnn/mdif https://github.com/nthnn/Navigador https://github.com/nthnn/PH4502C-Sensor https://github.com/nthnn/PortaMob @@ -4328,6 +5006,8 @@ https://github.com/OpenBCI/OpenBCI_Radios https://github.com/OpenBCI/OpenBCI_WIFI https://github.com/OpenBCI/OpenBCI_Wifi_Master_Library https://github.com/OpenCIAg/BlueFairy +https://gitlab.com/ettotog/tiny-scheduler +https://gitlab.com/ettotog/tiny-io https://github.com/OpenDevice/opendevice-lib-arduino https://github.com/openenergymonitor/EmonLib https://github.com/OpenFTC/HiTechnic-Arduino @@ -4427,6 +5107,10 @@ https://github.com/PeaPodTechnologies/ControlSystemsOS https://github.com/PeaPodTechnologies/FiniteStateMachine https://github.com/PeaPodTechnologies/I2CIP https://github.com/peetj/Nexgen_Rover +https://github.com/per1234-org/GPT_Stepper +https://github.com/per1234-org/LoveButton +https://github.com/per1234-org/PID_DG +https://github.com/per1234-org/R4_Touch https://github.com/PeterEmbedded/BH1750FVI https://github.com/peterus/APRS-Decoder-Lib https://github.com/peterus/APRS-IS-Lib @@ -4501,6 +5185,12 @@ https://github.com/pilotak/MovingAverage https://github.com/pilotak/MovingAverageAngle https://github.com/pilotak/MovingAverageFloat https://github.com/pilotak/WeatherMeters +https://github.com/piruetasxyz/Boton +https://github.com/piruetasxyz/FrecuenciasMIDI +https://github.com/piruetasxyz/NotasMIDI +https://github.com/piruetasxyz/maqui_library +https://github.com/piruetasxyz/Pantalla12x8 +https://github.com/piruetasxyz/Perilla https://github.com/Pixelbo/Pelco_And_Arduino https://github.com/pixelmatix/GifDecoder https://github.com/pixelmatix/SmartMatrix @@ -4534,18 +5224,22 @@ https://github.com/PlayingWithFusion/PWFusion_Mcp2515 https://github.com/PlayingWithFusion/PWFusion_Mcp960x https://github.com/PlayingWithFusion/PWFusion_TCA9548A https://github.com/PlayingWithFusion/PWFusion_VL53L3C +https://github.com/PlayingWithFusion/PWFusion_SHT3X https://github.com/Plefunga/AstroCalcs https://github.com/plenprojectcompany/PLEN5Stack 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 @@ -4597,21 +5291,16 @@ https://github.com/porrey/Mioduino https://github.com/postfixNotation/OLED_LIB_VGY12864L_03 https://github.com/postpersonality/melt-7segment-lcd https://github.com/pothos/arduino-n64-controller-library -https://github.com/PowerBroker2/ArdUAV https://github.com/PowerBroker2/ArduPID -https://github.com/PowerBroker2/Autopilot https://github.com/PowerBroker2/DFPlayerMini_Fast https://github.com/PowerBroker2/ELMduino https://github.com/PowerBroker2/FireTimer https://github.com/PowerBroker2/MotorController https://github.com/PowerBroker2/MultivariateNormal -https://github.com/PowerBroker2/navduino -https://github.com/PowerBroker2/NEO-6M_GPS https://github.com/PowerBroker2/SafeString https://github.com/PowerBroker2/SdTerminal https://github.com/PowerBroker2/SerialTransfer https://github.com/PowerBroker2/Teensy_3X_Multipurpose_Board -https://github.com/PowerBroker2/UM7 https://github.com/PowerBroker2/UniversalTransmitter https://github.com/pozyxLabs/Pozyx-Arduino-library https://github.com/ppedro74/Arduino-SerialCommands @@ -4662,6 +5351,7 @@ https://github.com/PribaNosati/mrm-us-b https://github.com/PribaNosati/mrm-us1 https://github.com/printoo/printoo_library https://github.com/PrivateHomeIoT/SecureMQTT +https://github.com/Production3000/mvp3000esp https://github.com/ProfTahseen/Tarmos https://github.com/ProgettoCompany/Progetto_One_Pin_Keypad_Arduino_Library https://github.com/Programmable-Air/Code @@ -4737,13 +5427,17 @@ https://github.com/pvannatto/Switch2_Lib https://github.com/pvizeli/CmdParser https://github.com/pxsty0/deneyap.telegram https://github.com/pxsty0/deneyapkart.agent.lib -https://github.com/pxsty0/pxserv.lib +https://github.com/pxsty0/pxserv.arduino +https://github.com/pxsty0/DisCard https://github.com/Pylo/MCreatorLinkArduino +https://github.com/pokerobo/Pokerobo_ABC https://github.com/pokerobo/Pokerobo_Arm https://github.com/pokerobo/Pokerobo_Car https://github.com/pokerobo/Pokerobo_Labs https://github.com/pokerobo/Pokerobo_RCB +https://github.com/pokerobo/Pokerobo_I2C https://github.com/pokerobo/Pokerobo_IRx +https://github.com/pokerobo/Pokerobo_PSx https://github.com/qisun1/ESP8266_LED_64x16_Matrix https://github.com/QuadrifoglioVerde/DL_PAC_NK76 https://github.com/qub1750ul/Arduino_HTTP @@ -4833,10 +5527,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_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 @@ -4858,9 +5558,11 @@ https://github.com/rfetick/Kalman https://github.com/rfetick/MPU6050_light https://github.com/RFExplorer/RFExplorer_3GP_IoT_Arduino https://github.com/rgot-org/TheThingsNetwork_esp32 +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 @@ -4938,7 +5640,11 @@ 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 https://github.com/RoboCore/RoboCore_SMW-SX1276M0 https://github.com/RoboCore/RoboCore_Vespa @@ -4974,41 +5680,62 @@ 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 https://github.com/RobTillaart/ACS712 https://github.com/RobTillaart/AD5144A https://github.com/RobTillaart/AD520X +https://github.com/RobTillaart/AD523X https://github.com/RobTillaart/AD5245 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 https://github.com/RobTillaart/ADC081S https://github.com/RobTillaart/ADC08XS https://github.com/RobTillaart/ADG725 https://github.com/RobTillaart/ADG726 +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 https://github.com/RobTillaart/Angle https://github.com/RobTillaart/AngleConvertor https://github.com/RobTillaart/ANSI +https://github.com/RobTillaart/APDS9900 https://github.com/RobTillaart/AS5600 +https://github.com/RobTillaart/AS7331 https://github.com/RobTillaart/AsyncAnalog https://github.com/RobTillaart/AtomicWeight https://github.com/RobTillaart/AverageAngle @@ -5019,6 +5746,7 @@ https://github.com/RobTillaart/bitHelpers https://github.com/RobTillaart/BoolArray https://github.com/RobTillaart/CHT8305 https://github.com/RobTillaart/CHT8310 +https://github.com/RobTillaart/CHT832X https://github.com/RobTillaart/Complex https://github.com/RobTillaart/Correlation https://github.com/RobTillaart/CountDown @@ -5029,8 +5757,13 @@ https://github.com/RobTillaart/DAC8550 https://github.com/RobTillaart/DAC8551 https://github.com/RobTillaart/DAC8552 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/DCT532 +https://github.com/RobTillaart/decibel https://github.com/RobTillaart/DEVFULL https://github.com/RobTillaart/DEVNULL https://github.com/RobTillaart/DEVRANDOM @@ -5044,6 +5777,7 @@ https://github.com/RobTillaart/DHTstable https://github.com/RobTillaart/DistanceTable https://github.com/RobTillaart/DMM https://github.com/RobTillaart/DRV8825 +https://github.com/RobTillaart/DS1804 https://github.com/RobTillaart/DS1821 https://github.com/RobTillaart/DS18B20 https://github.com/RobTillaart/DS18B20_INT @@ -5052,6 +5786,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 @@ -5078,27 +5813,37 @@ https://github.com/RobTillaart/HeartBeat https://github.com/RobTillaart/Histogram https://github.com/RobTillaart/HMC6352 https://github.com/RobTillaart/HT16K33 +https://github.com/RobTillaart/HX710AB https://github.com/RobTillaart/HX711 https://github.com/RobTillaart/HX711_MP https://github.com/RobTillaart/I2C_24LC1025 https://github.com/RobTillaart/I2C_ASDX +https://github.com/RobTillaart/I2C_CAT24M01 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 https://github.com/RobTillaart/Interval https://github.com/RobTillaart/Kelvin2RGB https://github.com/RobTillaart/KT0803 +https://github.com/RobTillaart/Kurtosis +https://github.com/RobTillaart/L9110 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 @@ -5124,9 +5869,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 @@ -5143,6 +5893,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 @@ -5150,17 +5901,25 @@ https://github.com/RobTillaart/PCA9549 https://github.com/RobTillaart/PCA9551 https://github.com/RobTillaart/PCA9552 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 @@ -5175,11 +5934,15 @@ https://github.com/RobTillaart/RAIN https://github.com/RobTillaart/randomHelpers 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 https://github.com/RobTillaart/RunningAverage https://github.com/RobTillaart/RunningMedian +https://github.com/RobTillaart/SD2405 https://github.com/RobTillaart/SET https://github.com/RobTillaart/SGP30 https://github.com/RobTillaart/SHEX @@ -5189,8 +5952,10 @@ https://github.com/RobTillaart/SHT2x https://github.com/RobTillaart/SHT31 https://github.com/RobTillaart/SHT31_SW https://github.com/RobTillaart/SHT31_SWW +https://github.com/RobTillaart/SHT4x https://github.com/RobTillaart/SHT85 https://github.com/RobTillaart/SIMON +https://github.com/RobTillaart/SMC https://github.com/RobTillaart/Soundex https://github.com/RobTillaart/SparseArray https://github.com/RobTillaart/SparseMatrix @@ -5198,10 +5963,16 @@ https://github.com/RobTillaart/SRF05 https://github.com/RobTillaart/statHelpers https://github.com/RobTillaart/Statistic https://github.com/RobTillaart/StopWatch_RT +https://github.com/RobTillaart/Student https://github.com/RobTillaart/SWSerialOut +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 https://github.com/RobTillaart/TinyKT0803 https://github.com/RobTillaart/tinySHT2x @@ -5214,6 +5985,7 @@ https://github.com/RobTillaart/Troolean https://github.com/RobTillaart/TSL235R https://github.com/RobTillaart/TSL260R https://github.com/RobTillaart/UUID +https://github.com/RobTillaart/Vibration https://github.com/RobTillaart/VolumeConverter https://github.com/RobTillaart/WaterMix https://github.com/RobTillaart/WaveMix @@ -5254,15 +6026,15 @@ https://github.com/rppicomidi/usb_midi_host https://github.com/rstephan/ArtnetWifi https://github.com/rtdgreg/TWI_GPS https://github.com/rtnate/arduino-BasicTimer +https://github.com/rtnate/Arduino-DS1881_2 https://github.com/rudydelorenzo/ELMo https://github.com/Rufus31415/Sharer https://github.com/ruiseixasm/Robust-EEPROM https://github.com/ruiseixasm/Versatile_RotaryEncoder https://github.com/ruminize/FlashLightLED -https://github.com/Rupakpoddar/ESP32Firebase -https://github.com/Rupakpoddar/ESP32Webhook -https://github.com/Rupakpoddar/ESP8266Firebase -https://github.com/Rupakpoddar/ESP8266Webhook +https://github.com/Rupakpoddar/FirebaseArduino +https://github.com/Rupakpoddar/ConsumerKeyboard +https://github.com/Rupakpoddar/ESP32Sonos https://github.com/rv701/SPL06-007 https://github.com/RyoKosaka/HelloDrum-arduino-Library https://github.com/ryraki/FXLS89xx_Arduino @@ -5278,6 +6050,7 @@ https://github.com/s-light/slight_LiquidCrystalDummy https://github.com/s-light/slight_mapping https://github.com/s-light/slight_RotaryEncoder https://github.com/s-light/slight_TLC5957 +https://github.com/s-light/slight_PlainTime https://github.com/s00500/ESPUI https://github.com/s00500/SimpleExpressions https://github.com/sabas1080/FXAS21002C_Arduino_Library @@ -5297,6 +6070,7 @@ https://github.com/sam-peach/Adafruit_SSD1306_EMULATOR https://github.com/Sam4uk/CRSF https://github.com/Sam4uk/Password https://github.com/Sam4uk/Filter.Easy +https://github.com/Sam4uk/RC.Easy https://github.com/Sam4uk/Tools.Easy https://github.com/Sam4uk/WD.Easy https://github.com/samelement/ACS-M1128 @@ -5312,7 +6086,6 @@ https://github.com/SantiagoSaldana/SBC https://github.com/Saruccio/ESPpassthrough https://github.com/satspares/DWIN_DGUS_HMI https://github.com/sauttefk/RS485HwSerial -https://github.com/sb1978/rgbled https://github.com/sblantipodi/arduino_bootstrapper https://github.com/sbouhoun/smoother/ https://github.com/scheffield/sic45x-driver @@ -5330,10 +6103,13 @@ 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 https://github.com/scottchiefbaker/ESP-WebOTA +https://github.com/scottyob/IgcLogger https://github.com/SCRN92/Sim800L https://github.com/sdumetz/coordinates https://github.com/sdutek/sducar @@ -5376,7 +6152,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 @@ -5412,6 +6187,8 @@ https://github.com/Seeed-Studio/Seeed_Arduino_rpcUnified 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 @@ -5423,6 +6200,7 @@ https://github.com/Seeed-Studio/Seeed_QTouch https://github.com/Seeed-Studio/Seeed_SHT35 https://github.com/Seeed-Studio/Seeed_VEML6070 https://github.com/Seeed-Studio/Seeed_Wio_GPS_Board +https://github.com/Seeed-Studio/Seeed_Serial_MP3_Player https://github.com/Seeed-Studio/SeeedMotorShieldV2 https://github.com/Seeed-Studio/Seeeduino_GPRS https://github.com/Seeed-Studio/Small_ePaper_Shield @@ -5445,6 +6223,7 @@ https://github.com/semcneil/ADS7142_Arduino_Library https://github.com/semcneil/PCA95x5 https://github.com/sensboston/esp32_moga https://github.com/sensebox/senseBoxBLE +https://github.com/sensebox/SolarChargerSB041 https://github.com/Sensirion/arduino-ble-gadget https://github.com/sensirion/arduino-core https://github.com/Sensirion/arduino-ess @@ -5454,25 +6233,33 @@ https://github.com/Sensirion/arduino-i2c-scd4x https://github.com/sensirion/arduino-i2c-sdp https://github.com/Sensirion/arduino-i2c-sen44 https://github.com/Sensirion/arduino-i2c-sen5x +https://github.com/Sensirion/arduino-i2c-sen66 +https://github.com/Sensirion/arduino-i2c-sen63c +https://github.com/Sensirion/arduino-i2c-sen65 +https://github.com/Sensirion/arduino-i2c-sen68 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 +https://github.com/Sensirion/arduino-i2c-sps30 https://github.com/Sensirion/arduino-sht -https://github.com/Sensirion/arduino-sps https://github.com/Sensirion/arduino-uart-sen44 https://github.com/Sensirion/arduino-uart-sfa3x https://github.com/sensirion/arduino-uart-svm4x https://github.com/Sensirion/arduino-uart-sfx6xxx +https://github.com/Sensirion/arduino-uart-sps30 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 @@ -5555,9 +6342,9 @@ https://github.com/siktec-lab/SIKTEC-SdExplore https://github.com/siktec-lab/SIKTEC-SPI https://github.com/siktec-lab/SIKTEC-SRAM https://github.com/Silvan85/Nova_SDS011 -https://github.com/Silver-Fang/ArduinoSTL -https://github.com/Silver-Fang/Low-level-quick-digital-IO -https://github.com/Silver-Fang/TimersOneForAll +https://github.com/Ebola-Chan-bot/Cpp_Standard_Library +https://github.com/Ebola-Chan-bot/Quick_digital_IO_interrupt +https://github.com/Ebola-Chan-bot/Timers_one_for_all https://github.com/silvervest/Silvervest_OLED_0010_SPI https://github.com/simap/TouchWheel https://github.com/simonlmn/esp-iot-core @@ -5668,6 +6455,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 @@ -5700,6 +6490,8 @@ https://github.com/SolderedElectronics/Soldered-SIM800L-GSM-Module-Arduino-Libra https://github.com/SolderedElectronics/Soldered-TCA9548A-I2C-Multiplexer-Arduino-Library https://github.com/SolderedElectronics/Soldered-Ultrasonic-Sensor-easyC-Arduino-Library https://github.com/SolderedElectronics/Soldered-WS2812-Smart-Leds-Arduino-Library +https://github.com/SolderedElectronics/Soldered-LSM9DS1TR-Arduino-Library +https://github.com/SolderedElectronics/Soldered-BMP280-Arduino-Library https://github.com/solderparty/arduino_bbq10kbd https://github.com/solderparty/arduino_tsc2004 https://github.com/solidsnake745/MIDI_Device_Controller @@ -5747,6 +6539,7 @@ https://github.com/sparkfun/SparkFun_Alphanumeric_Display_Arduino_Library https://github.com/sparkfun/SparkFun_Ambient_Light_Sensor_Arduino_Library https://github.com/sparkfun/SparkFun_APDS-9960_Sensor_Arduino_Library https://github.com/sparkfun/SparkFun_APDS9301_Library +https://github.com/sparkfun/SparkFun_Apple_Accessory_Arduino_Library https://github.com/sparkfun/SparkFun_ARGOS_ARTIC_R2_Arduino_Library https://github.com/sparkfun/SparkFun_AS108M_Fingerprint_Scanner_Arduino_Library https://github.com/sparkfun/SparkFun_AS3935_Lightning_Detector_Arduino_Library @@ -5755,8 +6548,10 @@ 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_Authentication_Coprocessor_Arduino_Library https://github.com/sparkfun/SparkFun_AVR_ISP_Programming_Library https://github.com/sparkfun/SparkFun_Bar_Graph_Breakout_Arduino_Library https://github.com/sparkfun/SparkFun_BH1749NUC_Arduino_Library @@ -5790,6 +6585,7 @@ https://github.com/sparkfun/SparkFun_HM1X_Bluetooth_Arduino_Library https://github.com/sparkfun/SparkFun_HTU21D_Breakout_Arduino_Library https://github.com/sparkfun/SparkFun_HyperDisplay https://github.com/sparkfun/SparkFun_I2C_GPS_Arduino_Library +https://github.com/sparkfun/SparkFun_I2C_Expander_Arduino_Library https://github.com/sparkfun/SparkFun_I2C_Mux_Arduino_Library https://github.com/sparkfun/SparkFun_ICM-20948_ArduinoLibrary https://github.com/sparkfun/SparkFun_IM19_IMU_Arduino_Library @@ -5797,6 +6593,7 @@ https://github.com/sparkfun/SparkFun_Indoor_Air_Quality_Sensor-ENS160_Arduino_Li https://github.com/sparkfun/SparkFun_IridiumSBD_I2C_Arduino_Library https://github.com/sparkfun/SparkFun_ISL29125_Breakout_Arduino_Library https://github.com/sparkfun/SparkFun_KX13X_Arduino_Library +https://github.com/sparkfun/SparkFun_LG290P_GNSS_Arduino_Library https://github.com/sparkfun/SparkFun_LIDARLitev4_Arduino_Library https://github.com/sparkfun/SparkFun_Line_Follower_Array_Arduino_Library https://github.com/sparkfun/SparkFun_LIS2DH12_Arduino_Library @@ -5830,6 +6627,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 @@ -5852,6 +6650,7 @@ https://github.com/sparkfun/SparkFun_Qwiic_LED_Stick_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_MP3_Trigger_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_OLED_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_OpenLog_Arduino_Library +https://github.com/sparkfun/SparkFun_Qwiic_OTOS_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_PIR_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Power_Switch_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Relay_Arduino_Library @@ -5881,13 +6680,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 @@ -5927,6 +6730,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 @@ -5963,7 +6768,7 @@ https://github.com/sstaub/TickTwo https://github.com/sstaub/Timer https://github.com/ssuhrid/EmSevenSegment https://github.com/St3p40/EMFButton -https://github.com/Staacks/phyphox-arduino +https://github.com/phyphox/phyphox-arduino https://github.com/Stan-Reifel/ArduinoUserInterface https://github.com/Stan-Reifel/FlexyStepper https://github.com/Stan-Reifel/SpeedyStepper @@ -6129,7 +6934,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 @@ -6140,6 +6945,8 @@ https://github.com/suratin27/PicoPLC https://github.com/SV-Zanshin/INA https://github.com/SvenRosvall/SignalControl https://github.com/swharden/NumberSpeaker +https://github.com/SWITCHSCIENCE/QZSSDCX +https://github.com/SWITCHSCIENCE/ZPA4756_0311A_R https://github.com/Syncano/syncano-arduino https://github.com/SyntaxHarvy/HaCEspSockets https://github.com/SyntaxHarvy/HACTimers @@ -6288,6 +7095,10 @@ https://github.com/thingsboard/pubsubclient https://github.com/thingsboard/thingsboard-client-sdk https://github.com/thingSoC/embedis https://github.com/thinkovation/Ambimate +https://github.com/thirstyice/JVC-Stereo +https://github.com/thirstyice/Olimex16x2 +https://github.com/thirstyice/RedEye +https://github.com/thirstyice/TinyDMXSerial https://github.com/ThisSmartHouse/CoogleIOT https://github.com/thomasfredericks/Bounce2 https://github.com/thomasfredericks/Chrono @@ -6342,6 +7153,7 @@ https://github.com/tobozo/ESP32-targz https://github.com/tobozo/ESP32-USB-Soft-Host https://github.com/tobozo/ESP8266SDUpdater https://github.com/tobozo/ImgurUploader +https://github.com/tobozo/LGFX_PPA https://github.com/tobozo/LGFXMeter https://github.com/tobozo/M5Stack-SD-Updater https://github.com/tobozo/WiFiManagerTz @@ -6353,8 +7165,10 @@ https://github.com/todd-herbert/unoHID https://github.com/Toernblom/SimpleUDPController https://github.com/Toernblom/SimpleWiFiClient https://github.com/tofuman0/PCA9505_06 +https://github.com/tom-dudman/DS1804 https://github.com/TomasRoj/BasicsLibrary https://github.com/TomasRoj/OctopusLab-Library +https://github.com/tomasz90/debounce-me https://github.com/tomasz90/two-buttons-interface https://github.com/TomergitH/Gyro_Tomer.git https://github.com/tommag/DS2431_Arduino @@ -6372,6 +7186,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 @@ -6393,6 +7208,7 @@ https://github.com/tttmmmsss/ICM7218C/ https://github.com/tttttx2/ddcvcp https://github.com/tuanpmt/ESP8266MQTTClient https://github.com/turbyho/DABDUINO +https://github.com/Dhananjayaprabath/WiFiProvision https://github.com/turing-complete-labs/LCDDisplay10_Arduino https://github.com/turn-a-round/Arduino-Charlieplexing https://github.com/tuya/tuya-ble-mcu-sdk-arduino-library @@ -6400,6 +7216,7 @@ https://github.com/tuya/tuya-wifi-mcu-sdk-arduino-library https://github.com/tuya/tuya-zigbee-mcu-sdk-arduino-library https://github.com/Tvde1/ConfigTool https://github.com/Tvde1/WiFiPicker +https://github.com/tyeth/omron-devhub_d6t-arduino https://github.com/tyhenry/CheapStepper https://github.com/tyrkelko/sn76489 https://github.com/tzapu/WiFiManager @@ -6430,7 +7247,8 @@ https://github.com/udoklein/MLX90393_raw https://github.com/ug-cp/precise_sntp https://github.com/UIPEthernet/UIPEthernet https://github.com/ukkz/green-beacon-esp32 -https://github.com/ukw100/IRMP +https://github.com/ukkz/tiny-key-value-store +https://github.com/IRMP-org/IRMP https://github.com/uldara1/Modbus.git https://github.com/UlmerMan/Elegoo https://github.com/ultimaterobotics/uECG_library @@ -6455,9 +7273,9 @@ https://github.com/uStepper/uStepperS32 https://github.com/vacmg/MAX_RS485 https://github.com/VasilKalchev/ExponentMap https://github.com/VasilKalchev/LiquidMenu -https://github.com/VasilKalchev/RGBLED https://github.com/VassilyDev/TSBridge https://github.com/VassilyDev/TSController +https://github.com/vasutornjays/SCL3400 https://github.com/vChavezB/lwip-Arduino https://github.com/vChavezB/NoBlockEEPROM https://github.com/vChavezB/qpcpp_esp32 @@ -6516,6 +7334,7 @@ https://github.com/Vrekrer/Vrekrer_scpi_parser https://github.com/vshymanskyy/Preferences https://github.com/vshymanskyy/StreamDebugger https://github.com/vshymanskyy/TinyGSM +https://github.com/vulcu/terminal-commander https://github.com/Vulintus/ATWINC3400_Driver_Arduino https://github.com/vurdalakov/radsensboard https://github.com/warhog/Arduino-MedianFilter @@ -6564,7 +7383,6 @@ https://github.com/witnessmenow/arduino-coinmarketcap-api https://github.com/witnessmenow/arduino-facebook-api https://github.com/witnessmenow/arduino-google-maps-api https://github.com/witnessmenow/arduino-ifttt-maker -https://github.com/witnessmenow/arduino-instagram-stats https://github.com/witnessmenow/arduino-instructables-api https://github.com/witnessmenow/arduino-kickstarter-stats https://github.com/witnessmenow/arduino-slack-api @@ -6605,6 +7423,7 @@ https://github.com/Wolodia-M/btnapi-library https://github.com/Wolodia-M/flagsapi-library https://github.com/Wolodia-M/timersapi-library https://github.com/WonderCRM/CRMui3 +https://github.com/workloads/scservo https://github.com/WorldFamousElectronics/PulseSensorPlayground https://github.com/WPIRoboticsEngineering/DFW https://github.com/WPIRoboticsEngineering/RBE1001Lib @@ -6659,14 +7478,18 @@ https://github.com/yashi/Servo328 https://github.com/YashuYathi/controlKeyboard https://github.com/yasir-shahzad/AM4096 https://github.com/yasir-shahzad/SoftI2C +https://github.com/yasir-shahzad/ADS122U04_ADC_Arduino_Library +https://github.com/yasir-shahzad/CS5530_ADC_Arduino_Library 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 +https://github.com/YFROBOT-TM/Yfrobot-TTS-Library +https://github.com/YFROBOT-TM/Yfrobot-Motor-Driver-IIC1508-Library https://github.com/yhur/ConfigPortal32 https://github.com/yhur/ConfigPortal8266 https://github.com/YiannisBourkelis/Uptime-Library @@ -6684,7 +7507,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/yourapiexpert/ATCommands +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 @@ -6818,7 +7641,7 @@ https://gitlab.com/virchow-personal/arduino-ledflasher https://gitlab.com/xoan/escornabot-extlib https://github.com/yesbotics/average-value https://github.com/yesbotics/interval-callback -https://gitlab.com/yesbotics/libs/arduino/led +https://github.com/yesbotics/arduino-lib-led https://github.com/yesbotics/timeout-callback https://github.com/yesbotics/voltmeter https://github.com/yesbotics/simple-serial-protocol-arduino @@ -6848,6 +7671,11 @@ https://github.com/braydenanderson2014/ArduinoTimer 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/qqqlab/ESPnow-RC https://github.com/MJBeltran13/Bucopi_library https://github.com/lualtek/buttino-rak https://github.com/tomcombriat/FixMath @@ -6878,9 +7706,9 @@ 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/DFRobot/DFRobot_GDL https://github.com/iwandwip/Kinematrix https://github.com/floatplane/Ministache https://github.com/dvelaren/ThingworxESP32 @@ -6890,7 +7718,7 @@ https://github.com/SikongJueluo/LCT200 https://github.com/mobizt/FirebaseClient https://github.com/axlan/arduino-pixels-dice.git https://github.com/AntonioPrevitali/ApSDM120 -https://github.com/SNP-FIT/snp-light +https://github.com/SNP-FIT/snp-sensor https://github.com/MOMIZICH/PBEnhancer https://github.com/MOMIZICH/OneShot https://github.com/siroshy/SerialTerminalIO @@ -6915,6 +7743,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 @@ -6959,3 +7788,654 @@ https://github.com/gadaman-rm/ESP_MultiWiFi https://github.com/boodskap/ArduinoDigitalTwin https://github.com/Narwhalsss360/NStreamCom-arduino https://github.com/Narwhalsss360/PinMatrix +https://github.com/Every-Flavor-Robotics/motorgo-arduino +https://github.com/become-cool/beshell-arduino-precompiled +https://github.com/hpsaturn/easy-preferences +https://github.com/Franzininho/biblioteca-laboratorioFW-DIY/ +https://github.com/ozantoteles/IPS-7100-I2C-Arduino +https://github.com/BroadwellConsultingInc/SerialWombat18ABVGADriver +https://github.com/felixthecat8a/LCD_BacklightRGB +https://github.com/agfy/CxMQTT +https://github.com/SpaceTrekKSC/SpaceTrek_ExoNaut +https://github.com/Syafiqlim/ESP32_MySQL +https://github.com/nananauno/M5EasyUI +https://github.com/x821938/erpc +https://github.com/jonp92/TemplateTango +https://github.com/xamrex/arduino-InstagramFollowers +https://github.com/Networking-for-Arduino/EthernetESP32 +https://github.com/Tyler-Barnes/promplus +https://github.com/Tyler-Barnes/RPM +https://github.com/lucas-sesti/JWT_RS256 +https://github.com/agfy/CxDevices +https://github.com/IPdotSetAF/ESPAsyncHTTPUpdateServer +https://github.com/IPdotSetAF/EZButton +https://github.com/shunceyb/MultiMAX6675 +https://github.com/SequentMicrosystems/Sequent-16univin-Library +https://github.com/calliope-edu/Calliope_Arduino_library +https://github.com/schreinerman/amx8x5 +https://github.com/paramoshkinandrew/BME280_Arduino_I2C +https://github.com/crudlabs/StevesAwesomeButton +https://github.com/superdinmc/MicroPOP32 +https://github.com/qingmeijiupiao/DJIMotorCtrlESP +https://github.com/volty98/GP2Y0A21YK_lib +https://github.com/KobaProduction/BDSP +https://github.com/a3510377/MKPin +https://github.com/a3510377/MKHC595 +https://github.com/AkessonUlrik/RLNode.git +https://github.com/Pranjal-Prabhat/ultrasonic-arduino +https://github.com/clavisound/SlimLoRa +https://github.com/chan1sook/Web3E-jbc +https://github.com/arkhipenko/PersistentQueue +https://github.com/Meli0609/I0Servo +https://github.com/Freenove/Freenove_IR_Lib_for_ESP32 +https://github.com/DerWaldi/Tiny-I2C-Drivers +https://github.com/bayeggex/Arduino-AI-Chat-Library +https://github.com/GRMrGecko/cmd +https://github.com/joaoaugustocz/LidarArray +https://github.com/a3510377/arduino-uno-car +https://github.com/ayushsharma82/NetWizard +https://github.com/Zhentao-Lin/WS2812_Lib_for_Air001 +https://github.com/JoJos1220/adafruit_INA219_mock +https://github.com/JoJos1220/adafruit_fram_i2C_mock +https://github.com/MaxMax-embedded/TLE9012_Arduino_Lib +https://github.com/crane-elec/EthernetSP +https://github.com/orcadom/DS4 +https://github.com/SeeedJP/wio_cellular +https://github.com/bitbank2/zlib_turbo +https://github.com/uutzinger/SavitzkyGolayFilter +https://github.com/uutzinger/Arduino_AFE44XX +https://github.com/ConsentiumIoT/ConsentiumThings +https://github.com/iavorvel/MyLD2410 +https://github.com/jhagas/ESPSupabase +https://github.com/ArtronShop/IOXESP32_4-20mA_Receiver +https://github.com/mgoblin/ArduinoSplashScreen +https://github.com/senseshift/arduino-ble-serial +https://github.com/stm32duino/VL53L7CH +https://github.com/stm32duino/VL53L8CH +https://github.com/protheeuz/AsyncWebServerESP +https://github.com/JoelJojoP/SimpleIMU +https://github.com/vickash/RotaryEncoderPCNT +https://github.com/kanitawa/RotEnc +https://github.com/BlairBlaidd/Newhaven_CharacterOLED_SPI +https://github.com/lhtran114/OnlyTimer +https://github.com/sinricpro/arduino-renesas-sdk +https://github.com/septentrio-gnss/Septentrio_Arduino_library +https://github.com/iamfaraz/Waveshare_ST7262_LVGL +https://github.com/Danzo-Systems/FM25060_Library +https://github.com/DouglasFlores-fun/SimpleLogger +https://github.com/KobaProduction/AvrFHT +https://github.com/cgobat/spartan-edge-esp32-boot/ +https://github.com/sierramike/HomeAssistantMQTT +https://github.com/DannyRavi/AD7747 +https://github.com/avdwebLibraries/avdweb_CodeDebugScope +https://github.com/LeeLeahy2/R4A_ESP32 +https://github.com/yuri-rage/arduino-i2c-slave +https://bitbucket.org/jezhill/SyncGenie +https://github.com/Vegetable-SYC/IMU_Fusion_SYC +https://github.com/DCS-Skunkworks/dcs-bios-arduino-library +https://github.com/Bhanuka-Anjana/K24C16-EEPROM-Library +https://github.com/appnostic-io/Appnostic_SC16IS7XX_Arduino_Library +https://github.com/suratin27/PLCCore2 +https://github.com/Lopfi/ina780x +https://github.com/cbm80amiga/ST7789_AVR +https://github.com/cbm80amiga/GC9A01A_AVR +https://github.com/CMB27/ModbusADU +https://github.com/CMB27/ModbusRTUComm +https://github.com/Zhentao-Lin/ESP32_WS2812_Lib +https://github.com/stack-chan/stackchan-arduino +https://github.com/adbancroft/avr-fast-div +https://github.com/adbancroft/avr-fast-shift +https://github.com/LeeLeahy2/R4A_I2C +https://github.com/LeeLeahy2/R4A_Robot +https://github.com/zoho/zoho-iot-sdk-arduino +https://github.com/AndreiOp235/24s02ya__M24SR02-Y +https://github.com/jerry-magnin/47XXX_EERAM_Arduino_Library +https://github.com/ConsentiumIoT/EdgeNeuron +https://github.com/cbm80amiga/DigiFont +https://github.com/IlikeChooros/EEPROMReader +https://github.com/GabyGold67/ButtonToSwitch_ESP32 +https://gitlab.com/iridium/9704_launch_pad/arduino_library +https://github.com/Kernow-Robotics/Guppy +https://github.com/johnsnow-nam/elio-arduino-example +https://github.com/johnosbb/MicroTFLite +https://github.com/denicsdevices/DS1307 +https://github.com/lucweb/SmartLadderFirmware +https://github.com/YUKAI/MakerBoard +https://github.com/Kei0208/M8058 +https://github.com/Alexander57rus/ADE7880Energy +https://github.com/bgo/oled-ui-lib +https://github.com/AITINKR/AITINKR_JSON_FIELDS +https://github.com/AITINKR/AITINKR_AIOT_V2 +https://github.com/guerratron/minIniFS +https://github.com/arielzw/DPS-Power-Supply-library-for-Arduino +https://github.com/arastaskiran/RustyKeypad +https://github.com/Freenove/Freenove_RFID_Lib_for_Pico +https://github.com/thomasgeissl/Parameter +https://github.com/thomasgeissl/ESP-NOW-MIDI +https://github.com/adbancroft/avr-fast-map +https://github.com/soynaldo/Labvee +https://github.com/JensDMadsen/Multitasker +https://github.com/piscodev/r4httpclient +https://github.com/arastaskiran/RustyVoltmeter +https://github.com/OpenBuilds/OpenBuildsBLOX +https://github.com/csd-robocon-nitk/LSA08_Simplified +https://github.com/gpstar81/GPStarAudio-Serial-Library +https://github.com/moinologics/AsyncTask +https://github.com/MoCoMakers/esp-fipsy +https://github.com/galarb/ev3lego.git +https://github.com/bitbank2/bb_truetype.git +https://github.com/nseinlet/Modelisme.git +https://github.com/JensDMadsen/ISRHandler +https://github.com/JarikDem-Bot/OCServo +https://github.com/TheSpaceEgg/InfinitePCA9685 +https://github.com/ArtronShop/ArtronShop_HDC302x +https://github.com/Shiddieqy/MR76_Radar +https://github.com/styropyr0/MX8650 +https://github.com/styropyr0/JSON_Encoder +https://github.com/giuliopons/PenguinBotLib +https://github.com/leocoderu/LC_EEPROM +https://github.com/JensDMadsen/RotEncoder +https://github.com/codingABI/DFR0534 +https://github.com/sinricpro/esp32-business-sdk +https://github.com/DBSStore/EIS +https://github.com/guerratron/TouchCal +https://github.com/GabyGold67/ButtonToSwitch_AVR +https://github.com/bitbank2/bb_epaper +https://github.com/Rmin-code2005/sparkey_gyro_i2c +https://github.com/Kei0208/RX8900 +https://github.com/Garfius/cliSerialMenu +https://github.com/nhjschulz/cfsm +https://github.com/chrmlinux/spreGnssRtcLib +https://github.com/chrmlinux/spreLgfxTouch +https://github.com/quarkifii/quark-db-arduino +https://github.com/PaulStoffregen/WS2812Capture +https://github.com/chrmlinux/spreMP3Lib +https://github.com/voelkerb/STPM3X +https://github.com/blasilli/GBALib_Potentiometer +https://github.com/Aleksandr-ru/StepperMulti +https://github.com/nikitagricanuk/CCS811-library-by-ASTRON +https://github.com/joaoaugustocz/mpu6050_FastAngles +https://github.com/goodisplayshare/esp32_epd +https://github.com/dralicimen/dwiBus +https://github.com/MonHauVD/PlayNote +https://github.com/1e1/Arduino-FastTimer +https://github.com/1e1/Arduino-GoogleSchedular +https://github.com/UltiBlox/DisplayValueOLED +https://github.com/UltiBlox/LCDI2C +https://github.com/UltiBlox/SensorAnalog +https://github.com/UltiBlox/SerialLogger +https://github.com/UltiBlox/ActiveThreshold +https://github.com/UltiBlox/DisplayValueLCD +https://github.com/UltiBlox/UltiBloxExamples +https://github.com/UltiBlox/DisplayValueNull.git +https://github.com/UltiBlox/SerialCommands +https://github.com/mirs240x/micro_ros_arduino_mirs240x +https://github.com/SequentMicrosystems/Sequent-16relays-Library +https://github.com/canusorn/CynoIOT +https://github.com/GitCoyote/solarfunctions +https://github.com/TheSpaceEgg/SimpleAD9833 +https://github.com/matthewgream/LightMDNS +https://github.com/matthewgream/BluetoothTPMS +https://github.com/matthewgream/DalyBMSInterface +https://github.com/MMZBin/Arduino_MacroPad +https://github.com/jlopezr/arduino-yl800n +https://github.com/gooddisplayshare/ESP32epd +https://github.com/lautisilber/SmartComm +https://github.com/BestModules-Libraries/BMV31T001 +https://github.com/BestModules-Libraries/BMV51T001 +https://github.com/BestModules-Libraries/BMV56T123 +https://github.com/georgemihaila/xy2-100 +https://github.com/georgemihaila/galvo-controller +https://github.com/pschatzmann/TalkiePCM +https://github.com/YuenNicdao/iParol +https://github.com/Natpol50/BME280_mini +https://github.com/MMZBin/Raspberry_Pi_Pico_MacroPad +https://github.com/styropyr0/oled.h +https://github.com/jaakka/DelayFunctionsArduino +https://github.com/ZanPekosak/SlowPWM +https://github.com/Lorandil/uCompression +https://github.com/DMT-Services/GeoMagnetism +https://github.com/ConsentiumIoT/ConsentiumStarterKit +https://github.com/batuhantrkgl/ESP8266-D1_SMTPClient +https://github.com/technochicken/SmartSW +https://github.com/53175ddd/AY-3-8910_Arduino +https://github.com/circuitcode/AsyncWebSerial +https://github.com/circuitcode/AsyncOTA +https://github.com/EmotiBit/EmotiBit_KTD2026 +https://github.com/SimonVonSchmude/Cabluino +https://github.com/kkeonline/LineMessagingAPI +https://github.com/UnexpectedMaker/RGB-Touch-Mini-Arduino-Helper +https://github.com/ktauchathuranga/telnet +https://github.com/ConsentiumIoT/ConsentiumNow +https://github.com/gooddisplayshare/ESP32epdx +https://github.com/cvmanjoo/LM75 +https://github.com/abread/cj-kit-arduino-lib +https://github.com/ArtronShop/ArtronShop_RX8130CE +https://github.com/humacompany/Huma_Buttons +https://github.com/KriBielinski/PrecDueTimer +https://github.com/KriBielinski/InterruptStepper +https://github.com/ripred/CodeSizeProfiler +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/DigitalFuturesOCADU/AltController +https://github.com/digitalfen/ArtificialDateTime +https://github.com/digitalfen/PseudoDateTime +https://github.com/digitalfen/ArtificialRTC +https://github.com/digitalfen/EmuRTC +https://github.com/alfan459/RandomForestModel +https://github.com/alfan459/ElasticNetModel +https://github.com/alfan459/LinearRegressionModel +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/rescenic/rescenicio +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/stacknix/stackmq-esp32 +https://github.com/marekburiak/ESP32_MQTTClient +https://github.com/levkovigor/PTZProtocolHandler +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/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/mirosieber/OPT300x +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/bastian2001/Fixed-Point-int +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/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/ennio64/CL57R-Stepper-Driver-Arduino-Library +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 +https://github.com/HS3UKA/HS3UKA_PCF8574 +https://github.com/muhpuc40/MacRandomizer +https://github.com/faisalill/BMP390 +https://github.com/SpaceTrekKSC/MakerBox +https://github.com/BackLogers/RYUW122_UWB +https://github.com/LCerimeli/StratoLit-BQ25611D +https://github.com/gly-engine/core-native-arduino +https://github.com/AntonioPrevitali/ApJSY194T +https://github.com/sensebox/SerialSDManager +https://github.com/edovis/TMP126 +https://github.com/X-croot/L298N-XCR +https://github.com/kkfranco98/FIR_Filters +https://github.com/m-shintaro/SpresenseIMU +https://github.com/msnicklous/CommandCatcher +https://github.com/UnexpectedMaker/seriesd_arduino_helper +https://github.com/markub3327/Task +https://github.com/markub3327/LiquidCrystal_I2C +https://github.com/styropyr0/Wizer +https://github.com/bull-m/BULLM_ExtendMotor +https://github.com/npuckett/WebGUI +https://github.com/kolod/Arduino-Simple-Modbus-Slave +https://github.com/EmotiBit/EmotiBit_Brainflow_SpO2_Algorithm +https://github.com/TelemetryHarbor/harbor-sdk-c-plus-plus +https://github.com/ycharfi09/QTRMuxes +https://github.com/BestModules-Libraries/BMH12M205 +https://github.com/BestModules-Libraries/BMS56M206A +https://github.com/BestModules-Libraries/BMH08101 +https://github.com/BestModules-Libraries/BMV31M304A +https://github.com/Zakrzewiaczek/pantryclient-esp +https://github.com/John-Karatka/MAX6953 +https://github.com/MicroSui/microsui-lib +https://github.com/muki01/OBD2_KLine_Library +https://github.com/muki01/OBD2_CAN_Bus_Library +https://github.com/max22-/ble-keyboard-mouse-client +https://github.com/John-Karatka/DS1621 +https://github.com/Martin4017/LCDShiftView +https://github.com/njazz/rowguelike +https://github.com/ErtugrulKra/ESP-Music +https://github.com/nexbyteio/ZenLib +https://github.com/tomorrow56/ESP32_LINE_Messaging_API +https://github.com/toddpan/xiaozhi-esp32-mcp +https://github.com/TexhFexLabs/HydroNode-Library +https://github.com/ConsentiumIoT/EdgeSense +https://github.com/AntonioPrevitali/ApJSY163T +https://github.com/MicrochipTech/RNWF02_WIFI_ARDUINO_LIBRARY +https://github.com/m5stack/M5Unit-Step16 +https://github.com/Zefek/MQTTESP8266 +https://github.com/AntonioPrevitali/ApJSY333 +https://github.com/CQUPTHXC/HXC_CAN +https://github.com/adafruit/Adafruit_uBlox +https://github.com/AvantMaker/ESP32_AI_Connect +https://github.com/TheProgrammerFundation/EasyArduino +https://github.com/wisec/tinysleeper/ +https://github.com/BorisKotlyarov/ESP8266-WiFiSetupManager +https://github.com/max22-/cst816d +https://github.com/HarutoHiroki/VFDDisplay +https://github.com/steveeidemiller/SE_BME680 +https://github.com/BestModules-Libraries/BME36M280A +https://github.com/jaikulk14/QuickAPConnect +https://github.com/BestModules-Libraries/BM62S6021-1 +https://github.com/teldrive-jpg/modbusmaster-GigaR1 +https://github.com/kodediy/kode_bq27220 +https://github.com/ArtronShop/TinkerC6_Library +https://github.com/tobiastl/LD2412 +https://github.com/Benas09/FujitsuAC +https://github.com/TektiteBiz/TektiteRotEv +https://github.com/Raghav117/bluetooth_ota_firmware_update.git +https://github.com/laddge/esp32-pasori-rcs300 +https://github.com/kodediy/kode_MAX31329 +https://github.com/Zefek/TX07K-TXC +https://github.com/Xinyuan-LilyGO/LilyGoLib +https://github.com/salesiopark/Chaino.git +https://github.com/jaikulk14/DataLinkSerial +https://github.com/tomorrow56/ESPNowAutoPairing +https://github.com/yohanna02/ESPComm +https://github.com/gvp-257/DietSerial +https://github.com/gvp-257/SendOnlySerial +https://github.com/gvp-257/AnalogControlPanel +https://github.com/gvp-257/AVRactivePower +https://github.com/CuiYao631/HomeSpan-zh +https://github.com/satoyon/PFNFont +https://github.com/nexbyteio/ZenRTC.git +https://github.com/7semi-solutions/7Semi-HMC6343-3-Axis-Digital-Compass-Module-with-Tilt-Compensation-I2C-Arduino-Library +https://github.com/AirNgin/Airngin-stm32-mqtt-client +https://github.com/AlphaNodesDev/SciFy-Iot +https://github.com/RigelSixSix/flagManager +https://github.com/7semi-solutions/7Semi-SCD4x-Arduino-Library +https://github.com/Robotistan/PicoBricks-for-ESP32-Arduino +https://github.com/ayresnet/AyresWiFiManager +https://github.com/7semi-solutions/7Semi-L89HA-GNSS-Module-Arduino-Library +https://github.com/felixardyansyah/FGV_CH224X +https://github.com/CharminJunior/UOS +https://github.com/NitrofMtl/DUERS485DMA +https://github.com/NitrofMtl/DUE-ModbusDMA +https://github.com/rahulstva/RS_ThingSpeak +https://github.com/7semi-solutions/7Semi-ADXL335-Analog-Accelerometer-Module-Arduino-Library +https://github.com/Mataas08/ToFFilter +https://github.com/7semi-solutions/7Semi-INA260-Current-Power-Voltage-Monitor-Arduino-Library +https://github.com/milescb/PlantMonitor +https://github.com/tomorrow56/ESP32FwUploader +https://github.com/7semi-solutions/7Semi-BME690-Arduino-Library +https://github.com/Glinek/picoEEPROM +https://github.com/alexghrrsn/Ecowitt-Gateway-Parser/ +https://github.com/harishfaqot/TF-LC02 +https://github.com/harishfaqot/Atlas_EC +https://github.com/7semi-solutions/7Semi-ACS772-CurrentSensor-Arduino-Library +https://github.com/7semi-solutions/7Semi-SHT4x-Arduino-Library +https://github.com/jonavarro22/MAX7SegmentDisplay +https://github.com/sutiana/WiFiConfigManager +https://github.com/7semi-solutions/7Semi-DS18B20-Arduino-Library +https://github.com/7semi-solutions/7Semi-MAX17048-Arduino-Library +https://github.com/Rmin-code2005/sparkey_gyro_I2C +https://github.com/BlueskyBV/Easy_Web_Remote_Control-ESP32- +https://github.com/JackHat1/MT07_CAN_Project +https://github.com/7semi-solutions/7Semi-HX711-Arduino-Library +https://github.com/Rmin-code2005/sh1106-1306_ui_assistance +https://github.com/ayresnet/AyresShell +https://github.com/7semi-solutions/7Semi-ADS1xx5-Arduino-Library +https://github.com/tomrodinger/Servomotor_Arduino_Library +https://github.com/csu333/TFTPClient +https://github.com/FT-tele/ST7305_MonoTFT_Arduino_Library +https://github.com/7semi-solutions/7Semi-ADS126x-Arduino-Library +https://github.com/7semi-solutions/7Semi-ADS7830-Arduino-Library +https://github.com/ghi-electronics/duelink-libraries-arduino +https://github.com/charlie731/Simple_Esp32WiFiManager +https://github.com/Bitworx-cz/Updater +https://github.com/7semi-solutions/7Semi-MAX31865-Arduino-Library +https://github.com/vkumpan/TEA5767 +https://github.com/vkumpan/ActionButtons +https://github.com/arduino-libraries/Arduino_APDS9999 +https://github.com/7semi-solutions/7Semi-MCP23017-Arduino-Library +https://github.com/tbwcjw/arduino-ps3mapi +https://github.com/IwanIDev/lego-arduino-train +https://github.com/stm32duino/ISM6HG256X +https://github.com/stm32duino/IIS2DULPX +https://github.com/stm32duino/ISM330IS +https://github.com/stm32duino/ILPS22QS +https://github.com/fulda1/SUSI2 +https://github.com/MISTERNEGATIVE21/QuectelEC200U +https://github.com/WeSpeakEnglish/ANTIRTOS_MODERN +https://github.com/hidori/MicroSerial +https://github.com/7semi-solutions/7Semi-BNO055-Arduino-Library +https://github.com/ConsentiumIoT/EdgeVision +https://github.com/junzzhu/esp-mqtt-arduino +https://github.com/skr-electronics-lab/OLEDKeyboard.git +https://github.com/valeriofantozzi/TraccarClient.git +https://github.com/SofaPirate/PqLEDStrip +https://github.com/dac1e/RcSwitchTransmitter +https://github.com/nonpawite/bcc-esp-dev +https://github.com/ennio64/StepperHAL_STM32F4x1-Library +https://github.com/AymenTurki0/Aerobotix_Arduino_navigation