diff --git a/.github/.markdown-link-check.json b/.github/.markdown-link-check.json index da7987976..c5e178ddc 100644 --- a/.github/.markdown-link-check.json +++ b/.github/.markdown-link-check.json @@ -1,4 +1,12 @@ { + "httpHeaders": [ + { + "urls": ["https://docs.github.com/"], + "headers": { + "Accept-Encoding": "gzip, deflate, br" + } + } + ], "retryOn429": true, "retryCount": 3, "aliveStatusCodes": [200, 206] diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 000000000..28cc386c2 --- /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/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 000000000..0dcd509b8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,47 @@ +# Source: +# https://github.com/arduino/tooling-project-assets/blob/main/issue-templates/forms/platform-dependent/bug-report.md +# See: +# https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms + +name: Bug report +description: Report a problem with the code or documentation in this repository. +labels: + - "type: imperfection" +body: + - type: textarea + id: description + attributes: + label: Describe the problem + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: To reproduce + description: Provide the specific set of steps we can follow to reproduce the problem. + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected behavior + description: What would you expect to happen after following those instructions? + validations: + required: true + - type: textarea + id: additional + attributes: + label: Additional context + description: Add any additional information here. + validations: + required: false + - type: checkboxes + id: checklist + attributes: + label: Issue checklist + description: Please double-check that you have done each of the following things before submitting the issue. + options: + - label: I searched for previous reports in [the issue tracker](https://github.com/arduino/library-registry/issues?q=) + required: true + - label: My report contains all necessary details + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..8ca54258f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,33 @@ +# Source: +# https://github.com/arduino/tooling-project-assets/blob/main/issue-templates/template-choosers/general/config.yml +# See: +# https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser + +contact_links: + - name: Submit a library + url: https://github.com/arduino/library-registry#adding-a-library-to-library-manager + about: Instructions for submitting a library for inclusion in the Arduino Library Manager. + - name: Change the library URL + url: https://github.com/arduino/library-registry#changing-the-url-of-a-library-already-in-library-manager + about: Instructions for updating a library's registered URL. + - name: Library removal + url: https://github.com/arduino/library-registry#removing-a-library-from-library-manager + about: Instructions for requesting removal of your library from the Arduino Library Manager index. + - name: Submissions of new library releases + url: https://github.com/arduino/library-registry/blob/main/FAQ.md#how-can-i-publish-a-new-release-once-my-library-is-in-the-list + about: Instructions for publishing a new release of your library. + - name: Library not updated after release + url: https://github.com/arduino/library-registry/blob/main/FAQ.md#why-arent-releases-of-my-library-being-picked-up-by-library-manager + about: Information on why library releases are not picked up. + - name: Learn about using the Arduino Library Manager + url: https://docs.arduino.cc/software/ide-v1/tutorials/installing-libraries/#using-the-library-manager + about: Documentation is available here. + - name: Learn about using this project + url: https://github.com/arduino/library-registry#readme + about: Detailed usage documentation is available here. + - name: Support request + url: https://forum.arduino.cc/ + about: We can help you out on the Arduino Forum! + - name: Discuss development work on the project + url: https://groups.google.com/a/arduino.cc/g/developers + about: Arduino Developers Mailing List diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 000000000..34124d62b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,42 @@ +# Source: +# https://github.com/arduino/tooling-project-assets/blob/main/issue-templates/forms/platform-dependent/bug-report.md +# See: +# https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms + +name: Feature request +description: Suggest an enhancement to this project. +labels: + - "type: enhancement" +body: + - type: textarea + id: description + attributes: + label: Describe the request + validations: + required: true + - type: textarea + id: current + attributes: + label: Describe the current behavior + description: | + What is the current behavior of the Arduino Library Manager registry in relation to your request? + How can we reproduce that behavior? + validations: + required: true + - type: textarea + id: additional + attributes: + label: Additional context + description: Add any additional information here. + validations: + required: false + - type: checkboxes + id: checklist + attributes: + label: Issue checklist + description: Please double-check that you have done each of the following things before submitting the issue. + options: + - label: I searched for previous requests in [the issue tracker](https://github.com/arduino/library-registry/issues?q=) + required: true + - label: My request contains all necessary details + required: true diff --git a/.github/ISSUE_TEMPLATE/release-removal.yml b/.github/ISSUE_TEMPLATE/release-removal.yml new file mode 100644 index 000000000..161ed26aa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/release-removal.yml @@ -0,0 +1,25 @@ +# See: +# https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms + +name: Library release removal +description: Request the removal of a library release. +title: Library release removal request +labels: + - "topic: release removal" +body: + - type: markdown + attributes: + value: | + Please read the instructions for removing a library release: [here](https://github.com/arduino/library-registry/blob/main/FAQ.md#how-can-i-remove-a-release-of-my-library-from-library-manager). + - type: input + id: name + attributes: + label: Library name + validations: + required: true + - type: input + id: version + attributes: + label: Version to remove + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/rename.yml b/.github/ISSUE_TEMPLATE/rename.yml new file mode 100644 index 000000000..42e001139 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/rename.yml @@ -0,0 +1,19 @@ +# See: +# https://docs.github.com/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms + +name: Library name change +description: Request an update of the registered library name. +title: Library name change request +labels: + - "topic: rename" +body: + - type: markdown + attributes: + value: | + Please read the instructions for renaming your library: [here](https://github.com/arduino/library-registry/blob/main/FAQ.md#how-can-i-change-a-librarys-name). + - type: input + id: url + attributes: + label: Library repository URL + validations: + required: true diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1de94f5a5..e962cf4f1 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/label-configuration-files/labels.yml b/.github/label-configuration-files/labels.yml index be49bb3c7..53d3f4f97 100644 --- a/.github/label-configuration-files/labels.yml +++ b/.github/label-configuration-files/labels.yml @@ -25,12 +25,11 @@ - name: "topic: rename" color: "00ffff" description: Change registered library name +# Vulnerability disclosures are made following the procedure at: +# https://github.com/arduino/.github/blob/master/SECURITY.md - name: "topic: security" color: "ff0000" description: Related to the protection of user data - notes: | - Vulnerability disclosures are made following the procedure at: - https://github.com/arduino/.github/blob/master/SECURITY.md - name: "topic: submission" color: "00ffff" description: Add library to the list diff --git a/.github/workflows/assets/accesslist.yml b/.github/workflows/assets/accesslist.yml new file mode 100644 index 000000000..12d727293 --- /dev/null +++ b/.github/workflows/assets/accesslist.yml @@ -0,0 +1,59 @@ +# 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: Herobrine-pixel + access: deny + reference: https://github.com/arduino/library-registry/pull/7066#issuecomment-3478077991 +- 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 d51ff9569..5ba468590 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@v2 + 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 23d9553f8..759d61ec5 100644 --- a/.github/workflows/check-markdown.yml +++ b/.github/workflows/check-markdown.yml @@ -34,10 +34,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Initialize markdownlint-cli problem matcher - uses: xt0rted/markdownlint-problem-matcher@v1 + uses: xt0rted/markdownlint-problem-matcher@v3 - name: Install markdownlint-cli run: sudo npm install --global markdownlint-cli @@ -50,7 +50,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + 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 dd29c8b38..b797eb2ba 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@v2 + 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 f1387759e..635972039 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@v2 + 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 1eb3dab2c..e62fd5a8a 100644 --- a/.github/workflows/check-workflows.yml +++ b/.github/workflows/check-workflows.yml @@ -22,11 +22,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Download JSON schema for GitHub Actions workflows id: download-schema - uses: carlosperate/download-file-action@v1 + uses: carlosperate/download-file-action@v2 with: # See: https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/github-workflow.json file-url: https://json.schemastore.org/github-workflow diff --git a/.github/workflows/check-yaml.yml b/.github/workflows/check-yaml.yml index 4756ae191..db497a671 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@v2 + 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 3db299d89..ea722bb3e 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: @@ -13,7 +13,7 @@ on: # comment and merge. # Note that this means the version of the workflow from the PR base ref will be used as opposed to the head ref, as is # the case with pull_request triggered workflows. - # See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request_target + # See: https://docs.github.com/actions/reference/events-that-trigger-workflows#pull_request_target pull_request_target: types: - opened @@ -61,7 +61,7 @@ jobs: head: ${{ steps.head.outputs.head }} env: - # See: https://docs.github.com/en/rest/reference/pulls#custom-media-types-for-pull-requests + # See: https://docs.github.com/rest/reference/pulls#custom-media-types-for-pull-requests DIFF_IDENTIFIER: diff JSON_IDENTIFIER: raw+json @@ -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@v2 + uses: actions/upload-artifact@v5 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,24 +134,26 @@ 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@v2 + uses: actions/checkout@v5 - name: Download submission parser id: download-parser - uses: carlosperate/download-file-action@v1 + uses: carlosperate/download-file-action@v2 with: file-url: https://github.com/arduino/library-registry-submission-parser/releases/download/${{ env.SUBMISSION_PARSER_VERSION }}/parser location: ${{ runner.temp }} - name: Download diff - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v6 with: path: ${{ needs.diff.outputs.path }} name: ${{ needs.diff.outputs.artifact }} - name: Remove no longer needed artifact - uses: geekyeggo/delete-artifact@v1 + 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@v2 + uses: actions/upload-artifact@v5 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@v6 + 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@v2 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@v2 + uses: actions/checkout@v5 with: ref: production @@ -535,7 +655,7 @@ jobs: ${{ env.ERROR_MESSAGE_PREFIX }}Your submission meets all requirements. However, the pull request could not be merged. Please follow this guide to sync your fork: - https://docs.github.com/en/github/collaborating-with-pull-requests/working-with-forks/syncing-a-fork + https://docs.github.com/github/collaborating-with-pull-requests/working-with-forks/syncing-a-fork Once that is done, it will be merged automatically. @@ -554,7 +674,7 @@ jobs: ${{ env.ERROR_MESSAGE_PREFIX }}Your submission meets all requirements. However, the pull request could not be merged. Please follow this guide to resolve a merge conflict: - https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github + https://docs.github.com/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github Once that is done, it will be merged automatically. @@ -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 9de88f466..ccfd1bbfb 100644 --- a/.github/workflows/spell-check.yml +++ b/.github/workflows/spell-check.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + 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 3ee6febdc..164ed1dc9 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,11 +27,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Download JSON schema for labels configuration file id: download-schema - uses: carlosperate/download-file-action@v1 + uses: carlosperate/download-file-action@v2 with: file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/arduino-tooling-gh-label-configuration-schema.json location: ${{ runner.temp }}/label-configuration-schema @@ -65,18 +65,18 @@ jobs: steps: - name: Download - uses: carlosperate/download-file-action@v1 + uses: carlosperate/download-file-action@v2 with: 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@v2 + uses: actions/upload-artifact@v5 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@v2 + uses: actions/checkout@v5 - - name: Download configuration files artifact - uses: actions/download-artifact@v2 + - name: Download configuration file artifacts + uses: actions/download-artifact@v6 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@v1 + - 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 95eb0ffab..eba406117 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://www.arduino.cc/en/Guide/Libraries#toc3 +- 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. @@ -77,9 +81,9 @@ Follow the instructions [here](README.md#adding-a-library-to-library-manager). - [ ] For 3rd party libraries, the `name` field in library.properties must not start with `Arduino`. - [ ] The library repository must not contain any `.exe` files. - [ ] The library repository must not contain a [`.development` file](https://arduino.github.io/arduino-cli/latest/library-specification/#development-flag-file). -- [ ] The library repository must not contain any [symlinks](https://en.wikipedia.org/wiki/Symbolic_link). +- [ ] The library repository must not contain any [symlinks](https://wikipedia.org/wiki/Symbolic_link). - [ ] The library repository must not contain any files detected as infected by our antivirus scan. -- [ ] The library repository must have a [Git tag](https://git-scm.com/book/en/v2/Git-Basics-Tagging) (or [release](https://docs.github.com/en/github/administering-a-repository/releasing-projects-on-github/managing-releases-in-a-repository)) and must have been compliant with all the above requirements at the time of that tag. +- [ ] The library repository must have a [Git tag](https://git-scm.com/book/en/v2/Git-Basics-Tagging) (or [release](https://docs.github.com/repositories/releasing-projects-on-github/managing-releases-in-a-repository)) and must have been compliant with all the above requirements at the time of that tag. - [ ] The library repository must be hosted on a major Git-hosting website like GitHub, BitBucket or GitLab (other hosting sites may be considered on request). Arduino has created a command line tool to check libraries for compliance with all the Library Manager requirements: @@ -102,7 +106,7 @@ Note that libraries will need to be compliant with [all requirements](#update-re 1. Make sure the library is compliant with [all requirements](#update-requirements). 1. Update the `version` in the library's [`library.properties`](https://arduino.github.io/arduino-cli/latest/library-specification/#library-metadata)). -1. Tag the library's repository once more and push the new tag (or create a release if the library's Git-hosting site offers a way to do it, for example with [GitHub "releases"](https://docs.github.com/en/github/administering-a-repository/releasing-projects-on-github/managing-releases-in-a-repository)). +1. Tag the library's repository once more and push the new tag (or create a release if the library's Git-hosting site offers a way to do it, for example with [GitHub "releases"](https://docs.github.com/repositories/releasing-projects-on-github/managing-releases-in-a-repository)). [Our indexer](#how-is-the-library-manager-index-generated) checks for new releases every hour and will eventually fetch and publish the new release. @@ -141,7 +145,7 @@ If you discover a problem with the library release, simply fix the problem and m In the event a library release is later discovered to contain something that absolutely can not be published, we do allow removing releases from Library Manager on request by the following procedure: 1. Delete the [tag](https://git-scm.com/book/en/v2/Git-Basics-Tagging) of the problematic release from the library's repository. -1. Open an issue in [the issue tracker of this repository](https://github.com/arduino/library-registry/issues), specifying the URL of the library repository and requesting that the library be updated. +1. Open an issue [here](https://github.com/arduino/library-registry/issues/new?labels=topic%3A+release+removal&template=release-removal.yml&title=Library+release+removal+request), specifying the name of the library and the version number of the release that should be removed. @@ -153,7 +157,7 @@ If you wish to change the name it will need to be done manually by request: 1. Change the `name` value in the [library.properties file](https://arduino.github.io/arduino-cli/latest/library-specification/#libraryproperties-file-format) and update the `version`. 1. Create a release or tag. -1. Submit an [issue report](https://github.com/arduino/library-registry/issues) requesting the name be changed and stating the URL of the library's repository. +1. Open an issue [here](https://github.com/arduino/library-registry/issues/new?labels=topic%3A+rename&template=rename.yml&title=Library+name+change+request) specifying the URL of the library's repository. ## Limitations @@ -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 af64c1c1d..b0d325c61 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Arduino Library Manager list This repository contains the list of libraries in the -[Arduino Library Manager](https://www.arduino.cc/en/guide/libraries#toc3) index. +[Arduino Library Manager](https://docs.arduino.cc/software/ide-v1/tutorials/installing-libraries#using-the-library-manager) index. ## Table of Contents @@ -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) @@ -25,23 +26,54 @@ For more information about Arduino Library Manager and how the index is maintain ## Adding a library to Library Manager If you would like to make a library available for installation via Library Manager, just submit a -[pull request](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests) +[pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests) that adds the repository URL to [the list](repositories.txt). You are welcome to add multiple libraries at once. See the instructions below for detailed instructions on how to do this via the GitHub web interface. ### 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. -1. Open this link to fork this repository and edit the list via the - GitHub web interface: https://github.com/arduino/library-registry/edit/main/repositories.txt -1. Click the Fork this repository button. +1. Click the following link:
+ https://github.com/arduino/library-registry/fork
+ The "**Create a new fork**" page will open. +1. Click the Create fork button in the "**Create a new fork**" page.
+ A "**Forking arduino/library-registry**" page will open while the fork is in the process of being created. +1. Wait for the "Forking" process to finish.
+ The home page of your [fork](https://docs.github.com/get-started/quickstart/fork-a-repo) of the **library-registry** repository will open. +1. Click on the file `repositories.txt` under the list of files you see in that page.
+ The "**library-registry/repositories.txt**" page will open. +1. Click the pencil icon ("Edit this file") at the right side of the toolbar in the "**library-registry/repositories.txt**" page.
+ The `repositories.txt` file will open in the online text editor. 1. Add the library repository's URL to the list (it doesn't matter where in the list). This should be the URL of the repository home page. For example: `https://github.com/arduino-libraries/Servo` -1. Click the Propose changes button. -1. In the **"Comparing changes"** window that opens, click the Create pull request button. +1. Click the Commit changes... button located near the top right corner of the page.
+ The "**Commit changes**" dialog will open. +1. Click the Commit changes button in the "**Commit changes**" dialog.
+ The "**library-registry/repositories.txt**" page will open. +1. Click the "**library-registry**" link at the top of the "**library-registry/repositories.txt**" page.
+ The home page of your fork of the **library-registry** repository will open. +1. You should see a banner on the page that says: + + > **This branch is 1 commit ahead of arduino:main.** + + Click the "**Contribute**" link near the right side of that banner.
+ A menu will open. + +1. Click the Open pull request button in the menu.
+ The "**Open a pull request**" page will open. 1. In the **"Open a pull request"** window that opens, click the Create pull request button. The library will be automatically checked for compliance as soon as the pull request is submitted. If no problems were @@ -54,7 +86,7 @@ with your pull request or with the library. #### If the problem is with the pull request: Edit the file in the -[branch](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches) +[branch](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches) you submitted the pull request from in your fork of the `arduino/library-registry` repository, then commit. Doing this will update the pull request and cause the automated checks to run again. @@ -65,7 +97,7 @@ Doing this will update the pull request and cause the automated checks to run ag 1. Increment the `version` value in the library's [library.properties file](https://arduino.github.io/arduino-cli/latest/library-specification/#library-metadata). 1. Create a - [release](https://docs.github.com/en/github/administering-a-repository/releasing-projects-on-github/managing-releases-in-a-repository) + [release](https://docs.github.com/repositories/releasing-projects-on-github/managing-releases-in-a-repository) or [tag](https://git-scm.com/docs/git-tag). The Library Manager index always uses tagged versions of the libraries, so even if the development version of the library is compliant, it can't be accepted until the latest release or tag is compliant. Alternatively, you can redo the existing release/tag if you prefer. @@ -96,5 +128,12 @@ because it was not compliant with all [the requirements](FAQ.md#update-requireme This repository is not an appropriate place to request support or report problems with a library. Check the library's own documentation for instructions or ask on the [Arduino Forum](https://forum.arduino.cc/). -If the problem is about something else, please make an issue report here: -https://github.com/arduino/library-registry/issues?q=is%3Aissue +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 b37845ce7..993f85762 100644 --- a/repositories.txt +++ b/repositories.txt @@ -1,246 +1,713 @@ -https://github.com/Stutchbury/TouchKeypad -https://github.com/Stutchbury/DisplayUtils -https://github.com/JChristensen/JC_EEPROM -https://github.com/sstaub/gma3 -https://github.com/sstaub/NTP -https://github.com/sstaub/TeensyID -https://github.com/sstaub/Timer -https://github.com/Stutchbury/EncoderButton -https://github.com/Gbertaz/JDI_MIP_Display -https://github.com/ClemensAtElektor/Nano_Every_WS2812B -https://github.com/JChristensen/JC_Sunrise -https://github.com/bobveringa/HSCDTD008A-Library -https://github.com/boothinator/AnalogReadAsync -https://github.com/bolderflight/vector_nav -https://github.com/boothinator/TimerExtensions -https://github.com/sstaub/Ethernet3 -https://github.com/sstaub/TickTwo -https://github.com/sstaub/NextionX2 -https://github.com/aikopras/AP_DCC_library -https://github.com/bolderflight/pwm -https://github.com/bolderflight/excitation -https://github.com/bolderflight/filter -https://github.com/bolderflight/polytools -https://github.com/bolderflight/eigen -https://github.com/bolderflight/control -https://github.com/bolderflight/imap -https://github.com/bolderflight/uleb128 -https://github.com/bolderflight/leb128 -https://github.com/bolderflight/framing -https://github.com/bolderflight/checksum -https://github.com/bolderflight/airdata -https://github.com/GyverLibs/GyverPortal -https://github.com/GyverLibs/GyverMAX6675 -https://github.com/GyverLibs/SimplePortal -https://github.com/GyverLibs/GyverHTU21D -https://github.com/GyverLibs/GyverHC595 -https://github.com/GyverLibs/OVS -https://github.com/GyverLibs/GyverTransfer -https://github.com/GyverLibs/GyverLBUF -https://github.com/GyverLibs/EEManager -https://github.com/GyverLibs/MicroUART -https://github.com/GyverLibs/GyverINA -https://github.com/GyverLibs/Approxy -https://github.com/MajicDesigns/MD_SmartCar2 -https://github.com/ncmreynolds/TapCode -https://github.com/NeMaksym/Arduino-EasySevenSeg -https://github.com/ArduinoGetStarted/Analog-Keypad -https://github.com/GerLech/AsyncWebConfig -https://github.com/ohad32/FireBase32 -https://github.com/Franzininho/Franzininho_LiquidCrystal -https://github.com/ProjectoOfficial/Oscup -https://github.com/cygig/MonteCarloPi -https://github.com/ncmreynolds/pimoroniTrackball -https://github.com/AlexIII/incbin-arduino -https://github.com/bolderflight/units -https://github.com/bolderflight/statistics -https://github.com/bolderflight/circle_buf -https://github.com/connornishijima/Pixie_Chroma -https://github.com/Gbertaz/NonBlockingDallas -https://github.com/RoboCore/RoboCore_Vespa -https://github.com/Phoenix1747/Arduino-Pico-Analog-Correction/ -https://github.com/StrathbogieBrewing/TinBus.git -https://github.com/StrathbogieBrewing/VEDirect.git -https://github.com/MrYsLab/Telemetrix4Connect2040 -https://github.com/mgaman/PDUlib -https://github.com/Aidywady/NXTBluetooth/ -https://github.com/TawalMc/TinyDatabase_Arduino -https://github.com/Phoenix1747/MQ135 -https://github.com/BreadBoardMates/Arduino-Mates-Controller -https://github.com/MajicDesigns/MD_Stepper -https://github.com/DFRobot/DFRobot_BMP3XX -https://github.com/DFRobot/DFRobot_DHT20 -https://github.com/DFRobot/DFRobot_RTU -https://github.com/DFRobot/DFRobot_B_LUX_V30B -https://github.com/DFRobot/DFRobot_SGP40 -https://github.com/DFRobot/DFRobot_TCS3430 -https://github.com/DFRobot/DFRobot_VL6180X -https://github.com/DFRobot/DFRobot_RGBLCD1602 -https://github.com/DFRobot/DFRobot_MGC3130 -https://github.com/DFRobot/DFRobot_VEML6075 -https://github.com/DFRobot/DFRobot_DF1201S -https://github.com/DFRobot/DFRobot_URM13 -https://github.com/ruiseixasm/Robust-EEPROM -https://github.com/DFRobot/DFRobot_BMX160 -https://github.com/DFRobot/DFRobot_PAJ7620U2 -https://github.com/DFRobot/DFRobot_DS323X -https://github.com/DFRobot/DFRobot_Lora -https://github.com/DFRobot/DFRobot_CCS811 -https://github.com/DFRobot/DFRobot_VEML7700 -https://github.com/DFRobot/DFRobot_A111 -https://github.com/DFRobot/DFRobot_VisualRotaryEncoder -https://github.com/DFRobot/DFRobot_ENS160 -https://github.com/DFRobot/DFRobot_STS3X -https://github.com/DFRobot/DFRobot_SIM -https://github.com/DFRobot/DFRobot_SIM7000 -https://github.com/DFRobot/DFRobot_EnvironmentalSensor -https://github.com/DFRobot/DFRobot_GM60 -https://github.com/DFRobot/DFRobot_ICG20660L -https://github.com/DFRobot/DFRobot_TMF8x01 -https://github.com/DFRobot/DFRobot_IICSerial -https://github.com/DFRobot/DFRobot_MCP23017 -https://github.com/DFRobot/DFRobot_BMM150 -https://github.com/DFRobot/DFRobot_ICP10111 -https://github.com/DFRobot/DFRobot_URM09 -https://github.com/DFRobot/DFRobot_AS3935 -https://github.com/DFRobot/DFRobot_SHT20 -https://github.com/DFRobot/DFRobot_DS1307 -https://github.com/DFRobot/DFRobot_AirQualitySensor -https://github.com/DFRobot/DFRobot_BloodOxygen_S -https://github.com/DFRobot/DFRobot_Alcohol -https://github.com/DFRobot/DFRobot_DF1101S -https://github.com/DFRobot/DFRobot_SpeechSynthesis -https://github.com/DFRobot/DFRobot_PN532 -https://github.com/DFRobot/DFRobot_AS7341 -https://github.com/DFRobot/DFRobot_BT401 -https://github.com/DFRobot/DFRobot_VoiceRecorder -https://github.com/DFRobot/DFRobot_ID809_I2C -https://github.com/DFRobot/DFRobot_MPX5700 -https://github.com/DFRobot/DFRobot_Maqueenplus -https://github.com/ZinggJM/ILI9486_SPI -https://github.com/ZinggJM/GFX_Extensions -https://github.com/DFRobot/DFRobot_MLX90614 -https://github.com/MajicDesigns/MD_OnePin -https://github.com/cygig/DailyStruggleButton -https://github.com/FTTechBrasil/FTTech-LoRaWAN -https://github.com/micromouseonline/BasicEncoder -https://github.com/Rad-hi/MyButton_Arduino -https://github.com/PowerBroker2/ArduPID -https://github.com/JulStrat/uCDB -https://github.com/FTTechBrasil/FTTech_XBee -https://github.com/siktec-lab/SIKTEC-AVR-Controller -https://github.com/siktec-lab/SIKTEC-Keys -https://github.com/seanboe/SimpleFusion -https://github.com/FTTechBrasil/AqualaboSensor -https://github.com/PowerBroker2/MotorController -https://github.com/MrYsLab/NanoConnectHcSr04 -https://github.com/Tinyu-Zhao/TinyGPSPlus -https://github.com/m5stack/M5_BH1750FVI -https://github.com/m5stack/M5_ADS1115 -https://github.com/m5stack/UNIT_ENCODER -https://github.com/m5stack/M5_BM8563 -https://github.com/m5stack/M5_AD9833 -https://github.com/m5stack/M5_BMM150 -https://github.com/m5stack/M5_FPC1020A -https://github.com/m5stack/STAMP-PICO -https://github.com/m5stack/M5_EzData -https://github.com/m5stack/UNIT_MQTT -https://github.com/m5stack/UNIT_SONIC -https://github.com/m5stack/UNIT_KMeter -https://github.com/m5stack/PoE_CAM -https://github.com/m5stack/M5_RoverC -https://github.com/m5stack/M5_JoyC -https://github.com/m5stack/UNIT_UHF_RFID -https://github.com/m5stack/DEMO-BOARD -https://github.com/m5stack/ATOM_DTU_CAT1 -https://github.com/MrYsLab/NeoPixelConnect -https://github.com/bigsmalloverall/SimpleTaskManager -https://github.com/Infineon/arduino-multi-half-bridge -https://github.com/aikopras/RSbus -https://github.com/tfeldmann/Arduino-SchmittTrigger -https://github.com/tfeldmann/Arduino-Blinkenlight -https://github.com/miathedev/KomootBLEConnect -https://github.com/RobotGrrl/PolylineArduino -https://github.com/Tinyu-Zhao/PCA9554 -https://github.com/Tinyu-Zhao/FFT -https://github.com/Tinyu-Zhao/TFTTerminal -https://github.com/chochain/nanoFORTH -https://github.com/Frederik-Eberhard/Excelsior -https://github.com/oguzkaganyaglioglu/PLCustomDevicesLibrary -https://github.com/dimag0g/PPM-reader -https://github.com/Mysues/ERO -https://github.com/pierremolinaro/rp2040-charlieplexing -https://github.com/RCmags/vector_datatype -https://github.com/RCmags/ADNS3080 -https://github.com/RCmags/basicMPU6050 -https://github.com/RCmags/imuFilter -https://github.com/RobTillaart/MAX14661 -https://github.com/sparkfun/SparkFun_Qwiic_6DoF_LSM6DSO_Arduino_Library -https://github.com/bitbank2/PNGdec -https://github.com/noah1510/generic-Arduino -https://github.com/atc1441/NETSGPClient -https://github.com/RobTillaart/relativity -https://github.com/RobTillaart/TSL235R -https://github.com/ArduinoShop/Seg7 -https://github.com/ARTS37/SerialMenuCmd +https://github.com/me-RK/MAX7219_CH32 +https://github.com/szilvasyz/DCF77FreeRTOS.git +https://github.com/vicharak-in/shrike_arduino.git +https://github.com/ienai-SPACE/ADC128S_Arduino +https://github.com/BojanJurca/cin-cout-for-Arduino +https://github.com/atestb/MCP4151-Digital-Potentiometer +https://github.com/nicolito128/DHT_N128 +https://github.com/steamicc/MCP23009E +https://github.com/pbudel/QuarkX +https://github.com/jobitjoseph/SoftWire_CH32 +https://github.com/franfreezy/e220_400t22d-lora-library +https://github.com/rochat2/v202_protocol +https://github.com/PTSolns/PTSolns_AHTx +https://github.com/PTSolns/PTSolns_VEML7700 +https://github.com/fmeng/EspMapping.git +https://github.com/juanjomartinf/JMBase +https://github.com/sachinthagayajith/AT21CS01-Arduino-Library +https://github.com/skipperwraith/LTC2625 +https://github.com/ArduinoLibHub/SimpleMFP +https://github.com/davidsecacontrol/FineTune-BMX160 +https://github.com/MAKE-arduino/EasyENC +https://github.com/Hamas888/ChronoLog +https://github.com/automatician/EEProm_Safe_Wear_Level +https://github.com/DIYables/DIYables-ESP32-WebApps-Library +https://github.com/nfrproducts/probot-lib +https://github.com/m5stack/M5Unit-Fingerprint2 +https://github.com/Alash-electronics/AlashMotorControlLite +https://github.com/windnerd-labs/Windnerd-Core +https://github.com/TechTronicsEngineering/AutoPlex7 +https://github.com/nickthelegend/AlgoSense +https://github.com/Herobrine-pixel/MultiGestureLib +https://github.com/dajakov/daedaluslink-arduino_esp32-lib +https://github.com/tdk-invn-oss/motion.arduino.ICM45689 +https://github.com/tdk-invn-oss/motion.arduino.ICM45608 +https://github.com/zzvllvzz/SC03_C2H5OH +https://github.com/C4rdoso/FilterDesigner +https://github.com/MrDev-5000/PhotonCore +https://github.com/DIYables/DIYables-ESP32-WebServer +https://github.com/Flamethr0wer/PS4Arduino +https://github.com/pleasedontcode/POTA +https://github.com/lucashudson-eng/PZEMPlus +https://github.com/MrDev-5000/TimerKernel +https://github.com/PWhite-Eng/SimpleNetManager +https://github.com/TEXHOUM/TEXHOUM_SERVO +https://github.com/TEXHOUM/TEXHOUM_MOTOR +https://github.com/TEXHOUM/TEXHOUM_US +https://github.com/PubInv/SFM3X00 +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/mkgeiger/RadiaCode +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/apauaie/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/tailspb/Tec02XX +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/RCLink +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 +https://github.com/LordofRobots/LoR +https://github.com/jibrilsharafi/AdvancedLogger +https://github.com/ZeeDesigns7/AdvancedSerial +https://github.com/locple/LCDI2C_Multilingual +https://github.com/makerlabvn/BlynkGate +https://github.com/trongthan210/iMaker-PS2 +https://github.com/makerlabvn/kxnTask +https://github.com/arduino279/AI/ +https://github.com/anton-freddy/move_buffer +https://github.com/Chuque/arduino-CallbackButton +https://github.com/Subodh-roy2/Modular +https://github.com/agomezgar/rupertobotLibrary +https://github.com/ropg/LoRaWAN_ESP32 +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 +https://github.com/huemonelab/HuemonelabKit +https://github.com/CIRCUITSTATE/CSE_GNSS +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/VIDI-X/VIDI-X_BQ24295 +https://github.com/pervu/FIFObuf +https://github.com/orkungedik/kmeans +https://github.com/JulyIghor/PinButtonEvents +https://github.com/Witty-Wizard/DriveMaster +https://github.com/HackerNowful/SD-Ducky +https://github.com/Karibura-Cyber/NHBot +https://github.com/locple/LiquidCrystal_I2C_UTF8 +https://github.com/Witty-Wizard/SerialIO +https://github.com/fanfanlatulipe26/FS_MX1508 +https://github.com/crozone-technology/crozone-veml6040 +https://github.com/I-AM-ENGINEER/MT6701-arduino +https://github.com/Erqos/EQSP32 +https://github.com/ropg/HotButton +https://github.com/FXDuke/Tools +https://github.com/pierremolinaro/acanfd-giga-r1 +https://github.com/ojw5014/OpenJigWare_A +https://github.com/x-radio/EEBoom +https://github.com/ropg/ESP32_RTC_EEPROM +https://github.com/ropg/heltec_esp32_lora_v3 +https://github.com/tdk-invn-oss/ultrasonic.arduino.ICUX0201 +https://github.com/dennisfrett/Arduino-Direct-NEC-Transmitter +https://github.com/Destination-SPACE/DS_MCP4018_Library +https://github.com/Destination-SPACE/DS_PCA9536_Library +https://github.com/FinianLandes/SpotifyEsp32 +https://github.com/hex705/Scissors +https://github.com/hex705/Glue +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/MentorBit-Library +https://github.com/tabahi/StatefulGSMLib/ +https://github.com/tabahi/ESP-Wifi-Config +https://github.com/karolis1115/FTPduino +https://github.com/RajasundaramM/ReadFilter +https://github.com/SylvainMontagny/LoRaE5 +https://github.com/nruin7/Arduino-XBox-Controller-Handler +https://github.com/tdk-invn-oss/pressure.arduino.ICP101XX +https://github.com/ropg/OOKwiz +https://github.com/HackerNowful/BLEHID-SD +https://github.com/WilliamMS-git/ADXL372 +https://github.com/CodingArray/CA_MotorShield_V1_Library +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 https://bitbucket.org/christandlg/bmp180mi https://bitbucket.org/christandlg/bmx280mi +https://github.com/PinoRinaudo/DoublyLinkedList https://bitbucket.org/christandlg/iaq-coremi https://bitbucket.org/christandlg/tsl2591mi https://bitbucket.org/geekfactory/gfbutton https://bitbucket.org/geekfactory/shell https://bitbucket.org/harmonicbionics/ease_arduinocode +https://bitbucket.org/jezhill/Keyhole +https://bitbucket.org/jezhill/SignalAcquisition https://bitbucket.org/pjhardy/arduinosinspace -https://github.com/EndlessParadox7/GFX_Thaana -https://github.com/Simpit-team/KerbalSimpitRevamped-Arduino 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 +https://github.com/0neblock/Arduino_SNMP +https://github.com/0x6flab/satima-arduinolibrary https://github.com/0xCAFEDECAF/VanBus +https://github.com/107-systems/107-Arduino-24LCxx +https://github.com/107-systems/107-Arduino-APDS-9950 +https://github.com/107-systems/107-Arduino-AS504x https://github.com/107-systems/107-Arduino-BMP388 +https://github.com/107-systems/107-Arduino-BoostUnits +https://github.com/107-systems/107-Arduino-CriticalSection +https://github.com/107-systems/107-Arduino-Cyphal +https://github.com/107-systems/107-Arduino-Cyphal-Support https://github.com/107-systems/107-Arduino-Debug +https://github.com/107-systems/107-Arduino-littlefs https://github.com/107-systems/107-Arduino-MCP2515 https://github.com/107-systems/107-Arduino-NMEA-Parser +https://github.com/107-systems/107-Arduino-Sensor +https://github.com/107-systems/107-Arduino-Servo-RP2040 +https://github.com/107-systems/107-Arduino-TCS3472 https://github.com/107-systems/107-Arduino-TMF8801 -https://github.com/107-systems/107-Arduino-UAVCAN +https://github.com/107-systems/107-Arduino-TSL2550 +https://github.com/107-systems/107-Arduino-UniqueId +https://github.com/1337encrypted/BTS7960_Motordriver +https://github.com/1452206376/CH9328-Keyboard https://github.com/1IoT/cloud-connectivity-lib -https://github.com/loginov-rocks/UbxGps +https://github.com/1NCE-GmbH/blueprint_arduino https://github.com/256dpi/arduino-mqtt +https://github.com/2bndy5/CirquePinnacle https://github.com/2dom/PxMatrix https://github.com/4-20ma/i2c_adc_ads7828 https://github.com/4-20ma/I2cDiscreteIoExpander 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 +https://github.com/4dsystems/Pixxi-Serial-Arduino-Library https://github.com/4dsystems/SOMOIoD https://github.com/4dsystems/ViSi-Genie-Arduino-Library +https://github.com/4dsystems/ViSi-Genie-Arduino-Library-DEV https://github.com/5N44P/ht1621-7-seg https://github.com/5pIO/BLESerial +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 +https://github.com/A223D/Adafruit_4_01_ColourEPaper +https://github.com/A223D/detaBaseArduinoESP32 https://github.com/a7md0/WakeOnLan 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 +https://github.com/Abdurraziq/ZMPT101B-arduino +https://github.com/abel6jose/Trial +https://github.com/Abhishektiwari7/Nokia_1.8_Inch_-Display_-SPFD54124B https://github.com/abishur/ms5x +https://github.com/acksen/AcksenButton +https://github.com/acksen/AcksenIntEEPROM +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-Motion-Devices/SMD-Arduino-Library https://github.com/adafruit/Adafruit_10DOF https://github.com/adafruit/Adafruit_9DOF +https://github.com/adafruit/Adafruit_AD569x +https://github.com/adafruit/Adafruit_ADG72x https://github.com/adafruit/Adafruit_ADS1X15 +https://github.com/adafruit/Adafruit_ADS7830 https://github.com/adafruit/Adafruit_ADT7410 https://github.com/adafruit/Adafruit_ADXL343 https://github.com/adafruit/Adafruit_ADXL345 +https://github.com/adafruit/Adafruit_ADXL375 +https://github.com/adafruit/Adafruit_AGS02MA https://github.com/adafruit/Adafruit_AHRS https://github.com/adafruit/Adafruit_AHT10 https://github.com/adafruit/Adafruit_AHTX0 @@ -249,8 +716,9 @@ https://github.com/adafruit/Adafruit_AM2320 https://github.com/adafruit/Adafruit_AMG88xx https://github.com/adafruit/Adafruit_AMRadio https://github.com/adafruit/Adafruit_APDS9960 -https://github.com/adafruit/Adafruit_Arcada_GifDecoder 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 @@ -265,46 +733,66 @@ 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_RVC 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 https://github.com/adafruit/Adafruit_CC3000_Library https://github.com/adafruit/Adafruit_CCS811 +https://github.com/adafruit/Adafruit_CH9328 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 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 +https://github.com/adafruit/Adafruit_Faux86 https://github.com/adafruit/Adafruit_FeatherOLED https://github.com/adafruit/Adafruit_Floppy https://github.com/adafruit/Adafruit_FONA https://github.com/adafruit/Adafruit_FRAM_I2C https://github.com/adafruit/Adafruit_FRAM_SPI https://github.com/adafruit/Adafruit_FreeTouch +https://github.com/adafruit/Adafruit_FT5336 https://github.com/adafruit/Adafruit_FT6206_Library https://github.com/adafruit/Adafruit_FXAS21002C https://github.com/adafruit/Adafruit_FXOS8700 +https://github.com/adafruit/Adafruit_GC9A01A https://github.com/adafruit/Adafruit_GPS https://github.com/adafruit/Adafruit_HDC1000_Library +https://github.com/adafruit/Adafruit_HDC302x https://github.com/adafruit/Adafruit_HMC5883_Unified https://github.com/adafruit/Adafruit_HTS221 https://github.com/adafruit/Adafruit_HTU21DF_Library https://github.com/adafruit/Adafruit_HTU31D +https://github.com/adafruit/Adafruit_HUSB238 +https://github.com/adafruit/Adafruit_HX711 https://github.com/adafruit/Adafruit_HX8357_Library https://github.com/adafruit/Adafruit_ICM20X 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 https://github.com/adafruit/Adafruit_IS31FL3731 @@ -319,6 +807,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 @@ -326,11 +815,15 @@ https://github.com/adafruit/Adafruit_LSM303DLHC https://github.com/adafruit/Adafruit_LSM6DS https://github.com/adafruit/Adafruit_LSM9DS0_Library https://github.com/adafruit/Adafruit_LSM9DS1 +https://github.com/adafruit/Adafruit_LTR329_LTR303 https://github.com/adafruit/Adafruit_LTR390 https://github.com/adafruit/Adafruit_LvGL_Glue +https://github.com/adafruit/Adafruit_MAX1704X https://github.com/adafruit/Adafruit_MAX31856 https://github.com/adafruit/Adafruit_MAX31865 +https://github.com/adafruit/Adafruit_MCP2515 https://github.com/adafruit/Adafruit_MCP3008 +https://github.com/adafruit/Adafruit_MCP3421 https://github.com/adafruit/Adafruit_MCP4725 https://github.com/adafruit/Adafruit_MCP4728 https://github.com/adafruit/Adafruit_MCP9600 @@ -340,9 +833,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 @@ -353,26 +849,32 @@ https://github.com/adafruit/Adafruit_MQTT_Library https://github.com/adafruit/Adafruit_MS8607 https://github.com/adafruit/Adafruit_MSA301 https://github.com/adafruit/Adafruit_NAU7802 -https://github.com/adafruit/Adafruit_NeoMatrix_ZeroDMA https://github.com/adafruit/Adafruit_NeoMatrix -https://github.com/adafruit/Adafruit_NeoPixel_ZeroDMA +https://github.com/adafruit/Adafruit_NeoMatrix_ZeroDMA https://github.com/adafruit/Adafruit_NeoPixel +https://github.com/adafruit/Adafruit_NeoPixel_ZeroDMA 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 https://github.com/adafruit/Adafruit_Seesaw -https://github.com/adafruit/Adafruit_Sensor_Calibration https://github.com/adafruit/Adafruit_Sensor +https://github.com/adafruit/Adafruit_Sensor_Calibration https://github.com/adafruit/Adafruit_SensorLab https://github.com/adafruit/Adafruit_SGP30 https://github.com/adafruit/Adafruit_SGP40 @@ -387,13 +889,19 @@ 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 https://github.com/adafruit/Adafruit_TiCoServo https://github.com/adafruit/Adafruit_TinyFlash @@ -402,16 +910,22 @@ 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 https://github.com/adafruit/Adafruit_TouchScreen https://github.com/adafruit/Adafruit_Trellis_Library +https://github.com/adafruit/Adafruit_TSC2007 +https://github.com/adafruit/Adafruit_TSC2046 https://github.com/adafruit/Adafruit_TSL2561 https://github.com/adafruit/Adafruit_TSL2591_Library 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 @@ -420,6 +934,8 @@ https://github.com/adafruit/Adafruit_VL53L1X https://github.com/adafruit/Adafruit_VL6180X https://github.com/adafruit/Adafruit_VS1053_Library https://github.com/adafruit/Adafruit_WavePlayer +https://github.com/adafruit/Adafruit_Wippersnapper_Arduino +https://github.com/adafruit/Adafruit_xCA9554 https://github.com/adafruit/Adafruit_ZeroDMA https://github.com/adafruit/Adafruit_ZeroFFT https://github.com/adafruit/Adafruit_ZeroI2S @@ -452,16 +968,18 @@ https://github.com/adafruit/arduino-CAN https://github.com/adafruit/Audio https://github.com/adafruit/CC3000_MDNS https://github.com/adafruit/DHT-sensor-library +https://github.com/adafruit/ENS160_driver https://github.com/adafruit/Ethernet2 https://github.com/adafruit/FifteenStep -https://github.com/adafruit/HL1606-LED-Strip-PWM https://github.com/adafruit/HL1606-LED-Strip +https://github.com/adafruit/HL1606-LED-Strip-PWM https://github.com/adafruit/HT1632 https://github.com/adafruit/LPD6803-RGB-Pixels https://github.com/adafruit/LPD8806 https://github.com/adafruit/MAX31850_DallasTemp https://github.com/adafruit/MAX31850_OneWire https://github.com/adafruit/MAX6675-library +https://github.com/adafruit/PicoDVI https://github.com/adafruit/Pro_Trinket_USB_Keyboard_Library https://github.com/adafruit/Pro_Trinket_USB_Mouse https://github.com/adafruit/RGB-matrix-Panel @@ -476,34 +994,65 @@ https://github.com/adafruit/TinyRTCLib https://github.com/adafruit/TinyWireM https://github.com/adafruit/TinyXML https://github.com/adafruit/WaveHC -https://github.com/adafruit/Adafruit_TestBed https://github.com/adameat/MaximWire +https://github.com/AdamJHowell/ArrayManager +https://github.com/addy123d/I2CDisplayController https://github.com/ademuri/esp-simple-web-dashboard https://github.com/ademuri/smart-input-filter https://github.com/ademuri/twilio-esp32-client +https://github.com/Adish0016/DHT118266 +https://github.com/Adish0016/dht11esp8266examples +https://github.com/Adish0016/dht11esp8266new.git +https://github.com/Adish0016/esp826611 +https://github.com/Adish0016/servodht11 https://github.com/Adminius/Dimmer32u4 https://github.com/Adminius/DimmerControl https://github.com/Adminius/DimmerZero +https://github.com/adnan-elabdullah/IOTKME.git +https://github.com/adnan-elabdullah/KmeStepper +https://github.com/adrian200223/Simple5641AS https://github.com/adrien-legrand/as5x47 https://github.com/Aduen/ThreadedTimer +https://github.com/aelmendorf/eeprom_wear_level https://github.com/aelse/ArduinoStatsd +https://github.com/Aerobotics-Global/Orbo +https://github.com/AeroboticsGlobalTeam/AEBO +https://github.com/affanhanifathtarech/DS3231_RTC +https://github.com/afpineda/MeanAndVarOnTheFly-Arduino +https://github.com/afpineda/NuS-NimBLE-Serial https://github.com/agdl/arduino-multiplePinsAPIs https://github.com/agdl/Base64 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 +https://github.com/ahmedosama07/LineFollowerPID +https://github.com/ahmedosama07/mDriverL298n +https://github.com/ahmedosama07/PID-autotune +https://github.com/AhmedYousryM/NonBlockingSequence +https://github.com/ahmsec/fork-webbino-ahmsec https://github.com/ai-techsystems/arduino +https://github.com/AI5GW/Baudot-Encode-Decode +https://github.com/AI5GW/CCIR476 +https://github.com/AI5GW/Goertzel/ https://github.com/AidenKunkler-Peck/Tactile-Necklace +https://github.com/Aidywady/NXTBluetooth/ +https://github.com/aikopras/AP_DCC_library +https://github.com/aikopras/RSbus https://github.com/AIO-Javeriana/AIO-module-nodemcu-arduino https://github.com/Aircoookie/Espalexa https://github.com/airgradienthq/arduino https://github.com/AIS-DeviceInnovation/AIS_NB_BC95 -https://github.com/AIS-DeviceInnovation/Magellan_BC95_lite +https://github.com/AIS-DeviceInnovation/Magellan https://github.com/AIS-DeviceInnovation/Magellan_BC95 +https://github.com/AIS-DeviceInnovation/Magellan_BC95_lite https://github.com/AIS-DeviceInnovation/Magellan_SIM7020E +https://github.com/AITINKR/AITINKR_AIOT_DEVBOARD +https://github.com/AITINKR/AITINKR_SHIELDS https://github.com/AJMansfield/LcdEffects https://github.com/AJMansfield/TriacDimmer https://github.com/akafugu/FourLetterWord @@ -512,15 +1061,38 @@ https://github.com/akafugu/TWIKeyboardLibrary https://github.com/akafugu/TWILiquidCrystalLibrary https://github.com/akafugu/WireRtcLibrary https://github.com/AKJ7/TM1637 +https://github.com/akkoyun/Console +https://github.com/akkoyun/dWin https://github.com/akkoyun/Environment -https://github.com/akkoyun/GE910 -https://github.com/akkoyun/LinearRegression +https://github.com/akkoyun/I2C_Functions +https://github.com/akkoyun/I2C_Scanner +https://github.com/akkoyun/MAX17055 +https://github.com/akkoyun/MAX78630 +https://github.com/akkoyun/RV3028 +https://github.com/akkoyun/Statistical +https://github.com/akkoyun/Telit_xE910 https://github.com/akvavit01/MissionList +https://github.com/alekseizarubin/CD22M3494EZ +https://github.com/alessandromrc/Custom_PortentaBreakout +https://github.com/alessandromrc/FastCore +https://github.com/alessandromrc/JOAAT https://github.com/Alex079/TinySuite https://github.com/AlexanderLL95/SerialUtil -https://github.com/AlexandreHiroyuki/MovingAverage_ArduinoLibrary +https://github.com/alexandrefelipemuller/PulseAnyPin +https://github.com/AlexandreHiroyuki/DataTome +https://github.com/AlexandreHiroyuki/MovingAveragePlus https://github.com/alexbertis/LibreriaLedRGB +https://github.com/alexbertis/Text2Matrix +https://github.com/alexCajas/EmbeddedMqttBroker +https://github.com/alexCajas/WrapperFreeRTOS +https://github.com/AlexFigas/Didactic-Robot-Project https://github.com/AlexIII/EEvar +https://github.com/AlexIII/incbin-arduino +https://github.com/alexitoo00/NewEncoder +https://github.com/alexmaurer-madis/eeprom_25AA02EXX +https://github.com/alexmaurer-madis/SC16IS7X0 +https://github.com/alexmaurer-madis/statusled +https://github.com/AlexRosito67/QUAD7SHIFT https://github.com/alextaujenis/RBD_Button https://github.com/alextaujenis/RBD_Capacitance https://github.com/alextaujenis/RBD_HumanSensor @@ -532,9 +1104,28 @@ https://github.com/alextaujenis/RBD_Servo https://github.com/alextaujenis/RBD_Threshold 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-NoU2 +https://github.com/AlfredoSystems/AlfredoConnect-Receive +https://github.com/AlfredoSystems/AlfredoCRSF +https://github.com/AlfredoSystems/PestoLink-Receive +https://github.com/AlfredoSystems/SimpleMelt https://github.com/algoduino/algoduino +https://github.com/ALICHOUCHENE/MemoryDumper +https://github.com/aliffathoni/ESP8266AutoWifi +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 +https://github.com/allexoK/TinyDecisionTreeClassifier https://github.com/allthingstalk/arduino-lorawan-sdk https://github.com/allthingstalk/arduino-ltem-sdk https://github.com/allthingstalk/arduino-wifi-sdk @@ -568,6 +1159,7 @@ https://github.com/AloriumTechnology/XLR8USB https://github.com/AloriumTechnology/XLR8Wire https://github.com/AlpenglowInd/BigNums2x2 https://github.com/AlpenglowInd/FUnicorn +https://github.com/alranel/BLESensorGateway https://github.com/alrevuelta/SEN10724 https://github.com/amaxilat/ble_definitions https://github.com/AmbientDataInc/Ambient_ESP8266_lib @@ -582,9 +1174,13 @@ https://github.com/ameltech/sme-lsm9ds1-library https://github.com/ameltech/sme-nt3h1x01-library https://github.com/ameltech/sme-se868-a-library https://github.com/ameltech/sme-vl6180x-library +https://github.com/americodias/PI4IOE5V9554 +https://github.com/Amethyste-PCB/Amethyste_LSM6DS3 +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 @@ -594,22 +1190,42 @@ https://github.com/amperka/TroykaI2CHub https://github.com/amperka/TroykaLight https://github.com/amperka/TroykaThermometer https://github.com/amperpirat/MAX77650-Arduino-Library +https://github.com/An7orAhmed/ADCButtons +https://github.com/An7orAhmed/LettersKeypad +https://github.com/An7orAhmed/LiquidCrystalSerial +https://github.com/An7orAhmed/MAX7219Segment +https://github.com/and900/AMYTOL_Robot +https://github.com/and900/Amytol_Sample https://github.com/andatche/arduino-lcd03 https://github.com/andhieSetyabudi/atlas_OEM https://github.com/andhieSetyabudi/BQ25896 +https://github.com/andhieSetyabudi/hx710b_arduino +https://github.com/andhieSetyabudi/MCP23017_LCD12864 https://github.com/andium/AmazonDRS https://github.com/andium/hueDino https://github.com/andrasbiro/AmigaMouseJoyEmu https://github.com/AndreaLombardo/L298N +https://github.com/AndresDuran53/zarus-network-controller +https://github.com/andrewhe-princeton/Iridium-GPP https://github.com/andrewrapp/xbee-arduino +https://github.com/andriell/arduino-library-WT2003M02-mp3-decoder https://github.com/andriitishchenko/HardwareButton https://github.com/andriyadi/AzureIoTHubMQTTClient https://github.com/andriyadi/EspX https://github.com/androbi-com/MqttLogger +https://github.com/Andy4495/AY3891x https://github.com/Andy4495/ICM7218 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 https://github.com/annem/AD7193 https://github.com/annem/ADXL362 https://github.com/Annikken/Andee @@ -617,6 +1233,8 @@ https://github.com/Annikken/Andee101 https://github.com/Annikken/AndeeMobile https://github.com/Annikken/EasyAndee https://github.com/Annikken/EasyAndee101 +https://github.com/Anrijs/Aranet4-ESP32 +https://github.com/Ant2000/CustomJWT https://github.com/antaresdocumentation/antares-esp8266-http https://github.com/antaresdocumentation/antares-esp8266-mqtt https://github.com/antaresdocumentation/lorawan-loraid @@ -627,37 +1245,67 @@ https://github.com/AntoIOT/anto-esp8266-arduino https://github.com/antoniopetruzzella/BeaconNano https://github.com/AntonioPrevitali/DueAdcFast https://github.com/anunpanya/ESP8266_QRcode +https://github.com/anwarminarso/ESPWiFiMqttWrapper https://github.com/AnyLeaf/ph-cpp +https://github.com/ApogeoSpace/ApogeoNode https://github.com/Apollon77/I2CSoilMoistureSensor +https://github.com/ApophisXX/MyTimer.git https://github.com/aptinex/Aptinex_DAC +https://github.com/Aquatwix/PD-10LX-Library https://github.com/arachnidlabs/tsunami-arduino https://github.com/arash77/BaleMessengerBot_Arduino https://github.com/arbotics-llc/databot_arduino +https://github.com/arbotics-llc/databot_ESP32 https://github.com/arbv/avr-context +https://github.com/ArchontisKostis/SimpleComponents +https://github.com/ardnew/cronos https://github.com/ardnew/ILI9341-Layout-Manager https://github.com/ardnew/STUSB4500 https://github.com/ardnew/XPT2046_Calibrated https://github.com/Arduboy/Arduboy -https://github.com/AlexTutorial/KrokoTS 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 https://github.com/arduino-libraries/Arduino_AVRSTL +https://github.com/arduino-libraries/Arduino_BHY2 +https://github.com/arduino-libraries/Arduino_BHY2Host +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 https://github.com/arduino-libraries/Arduino_DebugUtils https://github.com/arduino-libraries/Arduino_EdgeControl https://github.com/arduino-libraries/Arduino_EMBRYO_2 +https://github.com/arduino-libraries/Arduino_ESP32_OTA +https://github.com/arduino-libraries/Arduino_GigaDisplay +https://github.com/arduino-libraries/Arduino_GigaDisplay_GFX +https://github.com/arduino-libraries/Arduino_GigaDisplay_TinyGL +https://github.com/arduino-libraries/Arduino_GigaDisplayTouch +https://github.com/arduino-libraries/Arduino_GroveI2C_Ultrasonic +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 https://github.com/arduino-libraries/Arduino_LSM9DS1 +https://github.com/arduino-libraries/Arduino_LTR381RGB https://github.com/arduino-libraries/Arduino_MachineControl https://github.com/arduino-libraries/Arduino_MCHPTouch https://github.com/arduino-libraries/Arduino_MKRENV @@ -666,14 +1314,33 @@ https://github.com/arduino-libraries/Arduino_MKRIoTCarrier 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 -https://github.com/arduino-libraries/Arduino_PortentaBreakout +https://github.com/arduino-libraries/Arduino_PF1550 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_RouterBridge +https://github.com/arduino-libraries/Arduino_RPCLite https://github.com/arduino-libraries/Arduino_ScienceJournal +https://github.com/arduino-libraries/Arduino_ScienceKitCarrier +https://github.com/arduino-libraries/Arduino_SecureElement https://github.com/arduino-libraries/Arduino_SensorKit +https://github.com/arduino-libraries/Arduino_SerialUpdater +https://github.com/arduino-libraries/Arduino_Threads +https://github.com/arduino-libraries/Arduino_UnifiedStorage +https://github.com/arduino-libraries/Arduino_USBHIDHost +https://github.com/arduino-libraries/Arduino_USBHostMbed5 https://github.com/arduino-libraries/ArduinoBearSSL https://github.com/arduino-libraries/ArduinoBLE https://github.com/arduino-libraries/ArduinoCloudThing @@ -711,8 +1378,9 @@ https://github.com/arduino-libraries/MKRGSM https://github.com/arduino-libraries/MKRIMU https://github.com/arduino-libraries/MKRMotorCarrier https://github.com/arduino-libraries/MKRNB -https://github.com/arduino-libraries/MKRWAN_v2 https://github.com/arduino-libraries/MKRWAN +https://github.com/arduino-libraries/MKRWAN_v2 +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 @@ -738,13 +1406,21 @@ https://github.com/arduino-org/arduino-library-lora-node-shield https://github.com/arduino-org/arduino-library-wifilink https://github.com/arduino/ArduinoCloudProviderExamples https://github.com/arduino/EduIntro +https://github.com/arduino279/DirectCurrent-Motor-Module +https://github.com/arduino279/Serial-Monitor +https://github.com/arduino279/Servo-Motor-Module https://github.com/arduinocodedog/Parallax-Smart-Card-Reader-Library-for-Arduino +https://github.com/ArduinoGetStarted/Analog-Keypad https://github.com/ArduinoGetStarted/button https://github.com/ArduinoGetStarted/buzzer +https://github.com/ArduinoGetStarted/led https://github.com/ArduinoGetStarted/output https://github.com/ArduinoMax/AD5241 https://github.com/ArduinoMax/MCP41xxx https://github.com/ArduinoMax/TLC5615 +https://github.com/ArduinoSapienza/DCMotor +https://github.com/ArduinoSapienza/VibrationMotor +https://github.com/ArduinoShop/Seg7 https://github.com/arduinoverkstad/EducationShield https://github.com/Arekushi/Finite-State-Machine-Arduino https://github.com/areve/WebSocketStreamClient @@ -760,15 +1436,17 @@ https://github.com/arkhipenko/Dictionary https://github.com/arkhipenko/EspBootstrap https://github.com/arkhipenko/TaskScheduler https://github.com/arkhipenko/TM1650 +https://github.com/ArmDeveloperEcosystem/DA16200-WiFi-Library-for-Arduino https://github.com/ArminJo/Arduino-BlueDisplay https://github.com/ArminJo/Arduino-FrequencyDetector https://github.com/ArminJo/ATtinySerialOut https://github.com/ArminJo/AvrTracing +https://github.com/ArminJo/digitalWriteFast https://github.com/ArminJo/EasyButtonAtInt01 +https://github.com/ArminJo/LCDBigNumbers https://github.com/ArminJo/NeoPatterns https://github.com/ArminJo/PlayRtttl https://github.com/ArminJo/PWMMotorControl -https://github.com/icomedit/Arduino-KIMlib https://github.com/ArminJo/ServoEasing https://github.com/ArminJo/Talkie https://github.com/arms22/SoftModem @@ -779,31 +1457,64 @@ https://github.com/arpruss/USBHID_stm32f1 https://github.com/arpruss/vectordisplayarduino https://github.com/ARSadri/PushButtonClicks https://github.com/ArsaLearn/Arsa-Main -https://github.com/RodolfoPrieto/MCP3208 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 +https://github.com/ArtronShop/ArtronShop_PCF85363 +https://github.com/ArtronShop/ArtronShop_PCF85363A +https://github.com/ArtronShop/ArtronShop_SHT3x +https://github.com/ArtronShop/ArtronShop_SHT45 +https://github.com/ArtronShop/ArtronShop_SPL06-001 +https://github.com/ArtronShop/ATD1.47-S3-Lib +https://github.com/ArtronShop/ATD3.5-S3_Library +https://github.com/ArtronShop/easyConfig +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 -https://github.com/aspenforest/SIM800 +https://github.com/AsproCompany/AsproSolarShield +https://github.com/AsproCompany/GeneralShield https://github.com/aster94/GoProControl https://github.com/aster94/Keyword-Protocol-2000 https://github.com/aster94/SensorFusion https://github.com/aster94/Utilities https://github.com/astuder/icp-101xx +https://github.com/astuder/SwarmTile https://github.com/asukiaaa/AD5254_asukiaaa https://github.com/asukiaaa/AM2320_asukiaaa https://github.com/asukiaaa/arduino-A89306 +https://github.com/asukiaaa/arduino-bits https://github.com/asukiaaa/arduino-button +https://github.com/asukiaaa/arduino-ControllerAsI2c +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 https://github.com/asukiaaa/arduino-string https://github.com/asukiaaa/arduino-TC78B009FTG +https://github.com/asukiaaa/arduino-WindSensorHWD https://github.com/asukiaaa/arduino-wire https://github.com/asukiaaa/arduino-XboxControllerNotificationParser +https://github.com/asukiaaa/arduino-XboxSeriesXControllerESP32 +https://github.com/asukiaaa/arduino-XboxSeriesXHIDReportBuilder https://github.com/asukiaaa/BLVD20KM_asukiaaa https://github.com/asukiaaa/CanBusData-arduino https://github.com/asukiaaa/CanBusMCP2515-arduino +https://github.com/asukiaaa/crc-arduino https://github.com/asukiaaa/EPD https://github.com/asukiaaa/I2cControlPanel_asukiaaa https://github.com/asukiaaa/I2cMotors_asukiaaa @@ -817,33 +1528,36 @@ https://github.com/asukiaaa/utils_asukiaaa https://github.com/asukiaaa/WiredController_asukiaaa https://github.com/Asyasyarif/RFID-Spacecat https://github.com/aszopko/somfy-esp8266 +https://github.com/atc1441/NETSGPClient https://github.com/athombv/homey-arduino-library +https://github.com/AtrivaTECH/AtrivaTECH_PicUNO https://github.com/Atzingen/controleForno https://github.com/audeme/MOVIArduinoAPI +https://github.com/Augmented-Robotics/roboheart-arduino-library +https://github.com/autowp/arduino-mcp2515 +https://github.com/avalonbits/vdp-gl 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 +https://github.com/avivgr/IS31FL3729_LED_Matrix https://github.com/awesomeshield/Awesome-Shield-Library +https://github.com/awgrover/Every-for-arduino +https://github.com/awootton/mqtt5nano +https://github.com/awslabs/simpleiot-arduino 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 https://github.com/ayushsharma82/WebSerial -https://github.com/Azure/azure-iot-arduino-protocol-http -https://github.com/Azure/azure-iot-arduino-protocol-mqtt -https://github.com/Azure/azure-iot-arduino-socket-esp32-wifi -https://github.com/Azure/azure-iot-arduino-utility -https://github.com/Azure/azure-iot-arduino https://github.com/Azure/azure-sdk-for-c-arduino https://github.com/BadASszZ/IoTWebConf_for_Visuino_modified_by_IoT_Jedi https://github.com/baggio63446333/QZQSM @@ -853,24 +1567,47 @@ https://github.com/bakercp/CRC32 https://github.com/bakercp/Logger https://github.com/bakercp/MCP3XXX https://github.com/bakercp/PacketSerial +https://github.com/BalmIot/BalmIot https://github.com/Bananut-Electronics/MiDispositivoMIDI_V3 https://github.com/bandarei/AD9850-DDS +https://github.com/barbarossa12/sht3x-dis-arduino-lib https://github.com/barisdinc/LibAPRS_Tracker https://github.com/bartoszbielawski/AJSP 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/bcmi-labs/tensorflow_lite_mirror +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 https://github.com/beegee-tokyo/DHTesp https://github.com/beegee-tokyo/nRF52_OLED +https://github.com/beegee-tokyo/PicoSoftwareSerial +https://github.com/beegee-tokyo/RAKwireless_RAK14000_EPD_2_13 https://github.com/beegee-tokyo/SHT1x-ESP https://github.com/beegee-tokyo/SX126x-Arduino https://github.com/beegee-tokyo/VNCL4020C-Arduino https://github.com/beegee-tokyo/WisBlock-API -https://github.com/BeelanMX/arduino-LoRaWAN +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 +https://github.com/Beirdo/Arduino-LM96163 +https://github.com/Beirdo/Arduino-MultiWire +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/bengtmartensson/ABeacon https://github.com/bengtmartensson/AGirs @@ -878,34 +1615,123 @@ https://github.com/bengtmartensson/Arduino-DecodeIR https://github.com/bengtmartensson/GlobalCovfefe https://github.com/bengtmartensson/Infrared4Arduino https://github.com/bernebeer/Charge-n-Boost +https://github.com/berrak/LedTask +https://github.com/berrak/Mock +https://github.com/berrak/MockEEPROM +https://github.com/berrak/MyMacros +https://github.com/berrak/Rdebug +https://github.com/berrak/SensorWLED +https://github.com/BertanT/Arduino-RGBWConverter +https://github.com/bertbaron/arduino-animation-library +https://github.com/BestModules-Libraries/BM12O2021-A +https://github.com/BestModules-Libraries/BM12O2321-A +https://github.com/BestModules-Libraries/BM2102-9x-1 +https://github.com/BestModules-Libraries/BM22S2021-1 +https://github.com/BestModules-Libraries/BM22S3021-1 +https://github.com/BestModules-Libraries/BM22S3031-1 +https://github.com/BestModules-Libraries/BM22S3221-1 +https://github.com/BestModules-Libraries/BM22S4221-1 +https://github.com/BestModules-Libraries/BM2302-9x-1 +https://github.com/BestModules-Libraries/BM25S2021-1 +https://github.com/BestModules-Libraries/BM25S3221-1 +https://github.com/BestModules-Libraries/BM25S3321-1 +https://github.com/BestModules-Libraries/BM32O2531-A +https://github.com/BestModules-Libraries/BM32S3021-1 +https://github.com/BestModules-Libraries/BM52D5021-1 +https://github.com/BestModules-Libraries/BM52D5121-1 +https://github.com/BestModules-Libraries/BM62S2201-1 +https://github.com/BestModules-Libraries/BM7701-00-1 +https://github.com/BestModules-Libraries/BM92S2021-A +https://github.com/BestModules-Libraries/BM92S2222-A +https://github.com/BestModules-Libraries/BMB22M210 +https://github.com/BestModules-Libraries/BMC11T001 +https://github.com/BestModules-Libraries/BMC36M0x1 +https://github.com/BestModules-Libraries/BMC56M001 +https://github.com/BestModules-Libraries/BMC81M001 +https://github.com/BestModules-Libraries/BMD11M134 +https://github.com/BestModules-Libraries/BMD26M088 +https://github.com/BestModules-Libraries/BMD31M090 +https://github.com/BestModules-Libraries/BMD58T280 +https://github.com/BestModules-Libraries/BME34M101 +https://github.com/BestModules-Libraries/BME63M001 +https://github.com/BestModules-Libraries/BME82M131 +https://github.com/BestModules-Libraries/BMH06203 +https://github.com/BestModules-Libraries/BMH08002-4 +https://github.com/BestModules-Libraries/BMH12M105 +https://github.com/BestModules-Libraries/BMH23M001 +https://github.com/BestModules-Libraries/BMH23M002 +https://github.com/BestModules-Libraries/BMK22M131 +https://github.com/BestModules-Libraries/BMK52M134 +https://github.com/BestModules-Libraries/BMK52T016 +https://github.com/BestModules-Libraries/BMK54T004 +https://github.com/BestModules-Libraries/BMK56T004 +https://github.com/BestModules-Libraries/BML36M001 +https://github.com/BestModules-Libraries/BMN31K522 +https://github.com/BestModules-Libraries/BMP73T102 +https://github.com/BestModules-Libraries/BMP73T104 +https://github.com/BestModules-Libraries/BMP75M131 +https://github.com/BestModules-Libraries/BMS26M833 +https://github.com/BestModules-Libraries/BMS32S2031-1 +https://github.com/BestModules-Libraries/BMS33M332 +https://github.com/BestModules-Libraries/BMS36T001 +https://github.com/BestModules-Libraries/BMS56M605 +https://github.com/BestModules-Libraries/BMS81M001 +https://github.com/BestModules-Libraries/BMV23M001 +https://github.com/gizmo-platform/ArduinoGizmo +https://github.com/Bexin3/GigaScope +https://github.com/Bexin3/Snowduino +https://github.com/Bexin3/Speeduino +https://github.com/Bexin3/SpeeduinoGL +https://github.com/Bexin3/STMSpeeduino https://github.com/bhagman/ControlledServo https://github.com/bhagman/LitSwitch https://github.com/bhagman/MillisTimer https://github.com/bhagman/SoftPWM https://github.com/bhagman/Tone https://github.com/bhagman/WireData +https://github.com/bheesma-10/IP5306_I2C +https://github.com/bheesma-10/MCP23008_I2C +https://github.com/bheesma-10/mcp23017-arduino https://github.com/biagiom/AccessoryShield https://github.com/biagiom/LedBlinky +https://github.com/big12boy/MAX11643 https://github.com/bigclownlabs/SoilSensor +https://github.com/bigsmalloverall/SimpleTaskManager +https://github.com/bimac/EEPstore +https://github.com/bin2ai/zeeprom/ +https://github.com/BinaryBearzz/JoyStickModule https://github.com/bipropellant/bipropellant-hoverboard-api https://github.com/bitbank2/AnimatedGIF +https://github.com/bitbank2/bb_captouch https://github.com/bitbank2/bb_hx1230 +https://github.com/bitbank2/bb_ltr390 +https://github.com/bitbank2/bb_rtc +https://github.com/bitbank2/bb_scd41 https://github.com/bitbank2/bb_spi_lcd https://github.com/bitbank2/bb_uc1701 https://github.com/bitbank2/BitBang_I2C https://github.com/bitbank2/esp32_gamepad +https://github.com/bitbank2/FT6236G +https://github.com/bitbank2/G4Enc https://github.com/bitbank2/JPEGDEC +https://github.com/bitbank2/JPEGENC https://github.com/bitbank2/Multi_BitBang https://github.com/bitbank2/Multi_OLED https://github.com/bitbank2/OneBitDisplay +https://github.com/bitbank2/PNGdec +https://github.com/bitbank2/PNGenc +https://github.com/bitbank2/SLIC https://github.com/bitbank2/ss_oled https://github.com/bitbank2/ssd1327 https://github.com/bitbank2/Thermal_Printer https://github.com/bitbank2/TIFF_G4 +https://github.com/bitbank2/unzipLIB https://github.com/bitcraze/Bitcraze_PMW3901 https://github.com/bitixel/Omron_D6FPH https://github.com/bitluni/ESP32Lib https://github.com/BitsAndDroids/BitsAndDroidsFlightSimLibrary +https://github.com/bjoernboeckle/HC_SR04 +https://github.com/bjoernboeckle/L293D https://github.com/bkolicoski/arduino-youtube-sight https://github.com/blackhack/LCD_I2C https://github.com/blanu/codec2-arduino @@ -920,8 +1746,9 @@ https://github.com/blinker-iot/blinker-library https://github.com/BlokasLabs/USBMIDI https://github.com/BlueAndi/vscp-arduino https://github.com/BlueDot-Arduino/BlueDot_BMA400 -https://github.com/BlueDot-Arduino/BlueDot_BME280_TSL2591 https://github.com/BlueDot-Arduino/BlueDot_BME280 +https://github.com/BlueDot-Arduino/BlueDot_BME280_TSL2591 +https://github.com/BlueDot-Arduino/BlueDot-SGP40_SHT40 https://github.com/bluemurder/DS1624 https://github.com/bluemurder/esp8266-ping https://github.com/bluemurder/EveryTimer @@ -931,28 +1758,98 @@ https://github.com/bluerobotics/BlueRobotics_MS5837_Library https://github.com/bluerobotics/BlueRobotics_TSYS01_Library https://github.com/bluerobotics/ping-arduino https://github.com/blues/note-arduino +https://github.com/blues/notecard-aux-wifi +https://github.com/blues/notecard-env-var-manager https://github.com/blues/notecard-pseudo-sensor https://github.com/blynkkk/blynk-library +https://github.com/blynkkk/BlynkNcpDriver https://github.com/bmellink/IBusBM https://github.com/bmellink/VNH3SP30 https://github.com/bmts/FMDataClient +https://github.com/bobboteck/CWLibrary +https://github.com/Bobingstern/MicroFlow +https://github.com/bobveringa/HSCDTD008A-Library https://github.com/Bodmer/JPEGDecoder +https://github.com/Bodmer/OpenWeather https://github.com/Bodmer/TFT_eSPI +https://github.com/Bodmer/TFT_eWidget https://github.com/Bodmer/TJpg_Decoder +https://github.com/boeserfrosch/GuL_NovaFitness +https://github.com/boeserfrosch/GuL_Plantower +https://github.com/boeserfrosch/GuL_TI_Humidity https://github.com/bogde/HX711 -https://github.com/m5stack/M5_ADS1100 +https://github.com/bolderflight/ainstein-usd1 +https://github.com/bolderflight/airdata https://github.com/bolderflight/AMS5812 https://github.com/bolderflight/AMS5915 https://github.com/bolderflight/BME280 https://github.com/bolderflight/BMI088 +https://github.com/bolderflight/checksum +https://github.com/bolderflight/circle_buf +https://github.com/bolderflight/control +https://github.com/bolderflight/eigen +https://github.com/bolderflight/excitation +https://github.com/bolderflight/filter +https://github.com/bolderflight/framing +https://github.com/bolderflight/hg4930 +https://github.com/bolderflight/imap +https://github.com/bolderflight/leb128 https://github.com/bolderflight/MPU9250 +https://github.com/bolderflight/ms4525do +https://github.com/bolderflight/polytools +https://github.com/bolderflight/pwm https://github.com/bolderflight/SBUS +https://github.com/bolderflight/statistics +https://github.com/bolderflight/terabee https://github.com/bolderflight/UBLOX +https://github.com/bolderflight/uleb128 +https://github.com/bolderflight/units +https://github.com/bolderflight/vector_nav +https://github.com/bonezegei/Bonezegei_A4988 +https://github.com/bonezegei/Bonezegei_Compute +https://github.com/bonezegei/Bonezegei_DHT11 +https://github.com/bonezegei/Bonezegei_DHT22 +https://github.com/bonezegei/Bonezegei_DRV8825 +https://github.com/bonezegei/Bonezegei_DS3231 +https://github.com/bonezegei/Bonezegei_DS1307 +https://github.com/bonezegei/Bonezegei_GL +https://github.com/bonezegei/Bonezegei_GPS +https://github.com/bonezegei/Bonezegei_GSM +https://github.com/bonezegei/Bonezegei_HCSR04 +https://github.com/bonezegei/Bonezegei_HD44780 +https://github.com/bonezegei/Bonezegei_I2CScan +https://github.com/bonezegei/Bonezegei_ILI9341 +https://github.com/bonezegei/Bonezegei_ILI9341v2 +https://github.com/bonezegei/Bonezegei_LCD1602_I2C +https://github.com/bonezegei/Bonezegei_LCD2004_I2C +https://github.com/bonezegei/Bonezegei_List +https://github.com/bonezegei/Bonezegei_PCA9685 +https://github.com/bonezegei/Bonezegei_PCF8574 +https://github.com/bonezegei/Bonezegei_Printf +https://github.com/bonezegei/Bonezegei_Protocol +https://github.com/bonezegei/Bonezegei_RS485 +https://github.com/bonezegei/Bonezegei_Search +https://github.com/bonezegei/Bonezegei_SoftSerial +https://github.com/bonezegei/Bonezegei_SSD1306 +https://github.com/bonezegei/Bonezegei_ULN2003_Stepper +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/bonezegei/Bonezegei_74HC595 https://github.com/boodskap/BoodskapMessage https://github.com/BoodskapPlatform/BoodskapTransceiver +https://github.com/boothinator/AnalogReadAsync +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 +https://github.com/bpescarolli/74XX595_lib https://github.com/bportaluri/ALA https://github.com/bportaluri/WiFiEsp https://github.com/br3ttb/Arduino-PID-Library @@ -960,42 +1857,58 @@ https://github.com/brain-duino/AD7173-Arduino https://github.com/brainy-buddy-education/BBE-IoT-Class-Library https://github.com/BrandeisMakerLab/Arduino_Education https://github.com/BrandeisMakerLab/Zumo-Automation +https://github.com/BreadBoardMates/Arduino-Mates-Controller https://github.com/bremme/arduino-tm1637 https://github.com/brettmcalpine/PowerFlex4m https://github.com/brianrho/GT5X https://github.com/bricofoy/yasm +https://github.com/Bridgetek/RP2040-BrtEve https://github.com/bridystone/SevSegShift https://github.com/brigosx/SevenSeg4D https://github.com/BrinoOficial/BibliotecaBrino https://github.com/BriscoeTech/Arduino-FreeRTOS-SAMD21 https://github.com/BriscoeTech/Arduino-FreeRTOS-SAMD51 https://github.com/BroadwellConsultingInc/SerialWombatArdLib +https://github.com/brownby/Komotion https://github.com/BrushlessPower/SBUS2-Telemetry +https://github.com/bsch2734/SpiShiftRegisterChain +https://github.com/btomaev/Segma https://github.com/budryerson/TFLuna-I2C -https://github.com/budryerson/TFMini-Plus-I2C https://github.com/budryerson/TFMini-Plus +https://github.com/budryerson/TFMini-Plus-I2C +https://github.com/dhrubasaha08/TFminiS https://github.com/buelowp/sunset +https://github.com/burksbuilds/PreferencesCLI https://github.com/bxparks/AceButton https://github.com/bxparks/AceCommon https://github.com/bxparks/AceCRC https://github.com/bxparks/AceRoutine -https://github.com/bxparks/AceTime -https://github.com/bxparks/AceTimeClock -https://github.com/bxparks/AceUtils https://github.com/bxparks/AceSegment https://github.com/bxparks/AceSegmentWriter +https://github.com/bxparks/AceSorting https://github.com/bxparks/AceSPI +https://github.com/bxparks/AceTime +https://github.com/bxparks/AceTimeClock https://github.com/bxparks/AceTMI +https://github.com/bxparks/AceUtils https://github.com/bxparks/AceWire -https://github.com/bxparks/AceSorting https://github.com/bxparks/AUnit https://github.com/byronholldorf/uMulti https://github.com/byteAgenten/ArduinoArcherPanelClient +https://github.com/bytebeamio/bytebeam-arduino-sdk https://github.com/cafehaine/SimpleShell +https://github.com/cafeiot/CafeIOT_Arduino +https://github.com/cafeiot/CafeIOT_Esp32 +https://github.com/cafeiot/CafeIOT_Esp8266 https://github.com/CAFxX/gmp-ino https://github.com/caiofrota/cf-arduino-lib-pushbutton https://github.com/caiofrota/cf-arduino-lib-rotary-encoder +https://github.com/Call-for-Code/ClusterDuck-Protocol +https://github.com/CalvinBultz/LightningStepper +https://github.com/CamelCaseName/HUB75Enano +https://github.com/CamelCaseName/HUB75nano https://github.com/CanSatKit/CanSatKitLibrary +https://github.com/careyi3/MovingAverage https://github.com/carlosefr/magstripelib https://github.com/carlosefr/pcd8544 https://github.com/CasaJasmina/TelegramBot-Library @@ -1003,22 +1916,39 @@ https://github.com/casanovg/Nb_Micro https://github.com/casanovg/Nb_TimonelTwiM https://github.com/casanovg/Nb_TwiBus https://github.com/casanovg/nb-twi-cmd +https://github.com/casiez/OneEuroFilterArduino 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 +https://github.com/centaq/arduino-led-driver +https://github.com/centaq/arduino-modbus-slave-rtu-over-rs485 +https://github.com/centaq/arduino-simple-timers https://github.com/cerebro11101/CerebroBoards https://github.com/cesanta/elk https://github.com/cesanta/mDash https://github.com/cesanta/mjson https://github.com/cesarvandevelde/HerkulexServo https://github.com/CGrassin/M62429_Arduino_Library +https://github.com/chan1sook/SensesInnoma +https://github.com/chan1sook/SensesiotProtocolLib +https://github.com/chandrawi/ADE7753 +https://github.com/chandrawi/LoRaRF-Arduino +https://github.com/chandrawi/U8x_Laser_Distance https://github.com/charlesbaynham/OSFS https://github.com/chatelao/MiniPirate https://github.com/chayanforyou/WearLeveling +https://github.com/chcbaram/HS_JOY_ESP32 https://github.com/chegewara/EspTinyUSB https://github.com/Cheong2K/ble-sdk-arduino +https://github.com/chhorisberger/M5StackMenuSystem +https://github.com/chibiegg/esp-echonet-lite https://github.com/ChicagoRobotics/CRC_Simula_Library https://github.com/ChicagoRobotics/CRC_VCNL4200 https://github.com/chipKIT32-libraries/PICxel @@ -1026,6 +1956,10 @@ 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/EiMOS_U8X8 +https://github.com/ChitoKim/EiMOS +https://github.com/chochain/eForth1 +https://github.com/chochain/nanoFORTH https://github.com/Chris--A/ArdOSC https://github.com/Chris--A/BitBool https://github.com/Chris--A/EEWrap @@ -1035,19 +1969,49 @@ https://github.com/Chris--A/PrintEx https://github.com/Chris--A/SmallSetup https://github.com/ChrisDinhNZ/SMoS-cpp https://github.com/chrisjoyce911/esp32FOTA +https://github.com/chrisneukam/MidiDmxBridge https://github.com/christophjurczyk/AD7390_Arduino_Library https://github.com/christophjurczyk/LTC1392_Arduino_Library +https://github.com/chrmlinux/ArrayExt +https://github.com/chrmlinux/easyLiDAR +https://github.com/chrmlinux/ESPDisplay +https://github.com/chrmlinux/extendFor +https://github.com/chrmlinux/linaGFX +https://github.com/chrmlinux/rssRead +https://github.com/chrmlinux/ThreeD +https://github.com/chrmlinux/tinyCommand +https://github.com/chrmlinux/tinyCore +https://github.com/chrmlinux/tinyDC +https://github.com/chrmlinux/tinyESPNow +https://github.com/chrmlinux/tinyI2S +https://github.com/chrmlinux/tinyTimeR +https://github.com/chrmlinux/tinyUDP +https://github.com/chrmlinux/TrapeZoid +https://github.com/chrmlinux/WiFiWire +https://github.com/chuanstudyup/EasyGNSS.git https://github.com/ChuckBell/MySQL_Connector_Arduino https://github.com/chunkysteveo/FortniteAPI https://github.com/chunkysteveo/OctoPrintAPI https://github.com/ciband/avr_stl https://github.com/CieNTi/arduino-IoTesla-client +https://github.com/cike-567/arduino-ps2shebei +https://github.com/cike-567/arduino-ps2zhuji https://github.com/cima-qro/simple-box https://github.com/ciniml/ExtFlashLoader +https://github.com/ciniml/WireGuard-ESP32-Arduino https://github.com/CircuitMess/CircuitMess-Ringo https://github.com/CircuitsFun/CircuitsFunBasic-Library-for-Arduino https://github.com/CircuitsFun/CircuitsFunProjects-Library-for-Arduino +https://github.com/CIRCUITSTATE/CSE_ArduinoRS485 +https://github.com/CIRCUITSTATE/CSE_ModbusRTU +https://github.com/cjmccjmccjmc/ControlLoop +https://github.com/cjsgoncalves/ArduinoIDE-Utils +https://github.com/cjsgoncalves/ArduinoIDE-UtilsBoards https://github.com/claws/BH1750 +https://github.com/ClayXrex/Arduino-StepperMotor +https://github.com/ClemensAtElektor/Nano_Every_WS2812B +https://github.com/climateguard/CG-Anem +https://github.com/climateguard/RadSens https://github.com/closedcube/ClosedCube_BME680_Arduino https://github.com/closedcube/ClosedCube_HDC1010_Arduino https://github.com/closedcube/ClosedCube_HDC1080_Arduino @@ -1057,6 +2021,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 @@ -1073,6 +2038,8 @@ https://github.com/cloudchip-io/cloudchip-iot-arduino-sdk https://github.com/cmaglie/FlashStorage https://github.com/cmaglie/UselessLib https://github.com/CMakerA/ESP_LM35 +https://github.com/CMB27/ModbusRTUMaster +https://github.com/CMB27/ModbusRTUSlave https://github.com/cmmakerclub/CMMC_Interval https://github.com/cmmakerclub/CMMC_LED https://github.com/cmmakerclub/CMMC_NB-IoT @@ -1088,13 +2055,17 @@ https://github.com/coddingtonbear/arduino-async-duplex https://github.com/coddingtonbear/arduino-async-modem https://github.com/coddingtonbear/arduino-managed-serial-device https://github.com/codecodecodec/CCC_Lib +https://github.com/codeljo/AA_MCP2515 +https://github.com/Coder-X15/MCUOS.git https://github.com/coderfls/Arduino_MultiFunctionShield +https://github.com/codewithher/CC-Lantern https://github.com/codewrite/arduino-capacitor https://github.com/codinghusi/ArduinoKnockPatternDetector https://github.com/collin80/due_can https://github.com/combs/DLxx416_Arduino https://github.com/CommonWealthRobotics/BowlerCom https://github.com/connect-things/ConnectThings_ESP8266 +https://github.com/ConnorKirkpatrick/E220Lib https://github.com/connornishijima/AlertMe https://github.com/connornishijima/arduino-buzz https://github.com/connornishijima/arduino-volume @@ -1103,25 +2074,56 @@ https://github.com/connornishijima/arduino-volume3 https://github.com/connornishijima/Lixie_II https://github.com/connornishijima/Lixie-arduino 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/constiko/RV-3028_C7-Arduino_Library https://github.com/contrem/arduino-timer https://github.com/CONTROLLINO-PLC/CONTROLLINO_Library https://github.com/Controllino/ControllinoLibrary +https://github.com/CoreX-IoT/corex-firmware https://github.com/corneliusmunz/legoino -https://github.com/cotestatnt/YA_FSM +https://github.com/coryjfowler/MCP_CAN_lib +https://github.com/cotestatnt/Arduino-MySQL +https://github.com/cotestatnt/async-esp-fs-webserver +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 +https://github.com/creatingnull/null-packet-comms-arduino https://github.com/CreativeRobotics/Commander https://github.com/cristborges/IRRemoteControl +https://github.com/crmoratelli/SupmeaDO7016 +https://github.com/crunchysteve/EdgieD https://github.com/csash7/mbed-BLE-Mouse +https://github.com/cschorn01/2.4GHz_Lora_for_Arduino https://github.com/CsCrazy85/DatavisionLCD https://github.com/CsCrazy85/SCA100T +https://github.com/cubicleguy/su_arduino_spi +https://github.com/cubicleguy/su_arduino_uart https://github.com/cujomalainey/ant-arduino https://github.com/cujomalainey/antplus-arduino https://github.com/CuriosityGym/MotorDriver +https://github.com/CuriousScientist0/ADS1256 +https://github.com/cvmanjoo/AT24Cxx https://github.com/cvmanjoo/RTC +https://github.com/cwi-dis/iotsa +https://github.com/CyberonEBU/Cyberon_DSpotterSDK_Maker_33BLE +https://github.com/CyberonEBU/Cyberon_DSpotterSDK_Maker_NiclaVision +https://github.com/CyberonEBU/Cyberon_DSpotterSDK_Maker_PortentaH7 +https://github.com/CyberonEBU/Cyberon_DSpotterSDK_Maker_RP2040 +https://github.com/cygig/DailyStruggleButton +https://github.com/cygig/MCUVoltage +https://github.com/cygig/MonteCarloPi https://github.com/cygig/SDConfigCommand https://github.com/cygig/SerialConfigCommand https://github.com/cygig/TimerEvent +https://github.com/cyijun/ESP32MQTTClient +https://github.com/cyijun/HAMqttDiscoveryHandler https://github.com/CytronTechnologies/Cytron_MP3Shield https://github.com/CytronTechnologies/Cytron_Servo_Shield_Library https://github.com/CytronTechnologies/Cytron_Shield3AMotor @@ -1132,12 +2134,15 @@ https://github.com/CytronTechnologies/CytronWiFiShield https://github.com/d-a-v/ESPWebDAV https://github.com/d00616/arduino-NVM https://github.com/d03n3rfr1tz3/HC-SR04 +https://github.com/d10i/TFA433 https://github.com/DaAwesomeP/arduino-cardinal https://github.com/DaAwesomeP/dmxusb https://github.com/dabshield/DABShield +https://github.com/dacarson/WeatherFlowApi https://github.com/dadul96/Arduino-Servo-Hardware-PWM-Library https://github.com/Dafulai/DFL168A_Async https://github.com/Dafulai/DFL168A-Sync-Library +https://github.com/dai-eoh/ledrgb565 https://github.com/daitangio/sid-arduino-lib https://github.com/dajtxx/ZeroTC45 https://github.com/DaleGia/ESPFlash @@ -1145,20 +2150,36 @@ https://github.com/DaleGia/ESPStringTemplate https://github.com/DaleGia/Nano33BLESensor https://github.com/daliworks/arduino_library https://github.com/damellis/PCM +https://github.com/DanForever/DF-Print +https://github.com/dang-gun/Arduino_ButtonClickCheck +https://github.com/dang-gun/Arduino_StepperAsync5 +https://github.com/dani007200964/Commander-API +https://github.com/dani007200964/Shellminator https://github.com/danidask/MatrizLed https://github.com/daniel-centore/arduino-tone-library https://github.com/DanielSaromo/PyDuinoBridge https://github.com/DaniFoldi/Async_Operations +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 +https://github.com/danny270793/ArduinoShiftRegister https://github.com/dantler/GroveEncoder https://github.com/dantler/LircRemote101 https://github.com/dantudose/AT24C256 +https://github.com/dantudose/LTR308 https://github.com/dantudose/MAX44009 +https://github.com/danyev3/JAREL https://github.com/dariomas/DigitLed72xx +https://github.com/dariomas/Pictiva_OS288048 https://github.com/DarkDust/MHGroveBLE +https://github.com/DarkWizarD24/fmt-arduino https://github.com/darrenjcosborne/NextionSerialString https://github.com/datacentricdesign/dcd-sdk-arduino https://github.com/datacute/DoubleResetDetector @@ -1166,30 +2187,106 @@ https://github.com/datacute/Tiny4kOLED https://github.com/datacute/TinyNunchuk https://github.com/datacute/TinyOLED-Fonts https://github.com/DatavenueLiveObjects/LiveObjects_SDK_for_Arduino -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/dattasaurabh82/RV8803Tiny +https://github.com/dattasaurabh82/TinyMegaI2C +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 +https://github.com/DavidArmstrong/SiderealPlanets +https://github.com/DavidArmstrong/WMM_Tinier https://github.com/davidchatting/Approximate https://github.com/Davideddu/APDS9930 https://github.com/davidepalladino/AnalogIO-Arduino https://github.com/davidepalladino/Button-Arduino +https://github.com/DavidHurtadoBanda/Salesforce-Library https://github.com/davidwhitney/snakelights https://github.com/dawidchyrzynski/arduino-home-assistant https://github.com/DBS06/CERP_DF_Robot_Wireless_GamePad_V2 https://github.com/DBSStore/DBS_Lib +https://github.com/DCC-EX/DCCEXProtocol +https://github.com/dcondrey/MicrostepToLinear +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_blink +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_locale +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/dejwk/roo_time_ds3231 +https://github.com/dejwk/roo_transport +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 +https://github.com/deneyapkart/deneyap-6-eksen-ataletsel-olcum-birimi-arduino-library +https://github.com/deneyapkart/deneyap-9-eksen-ataletsel-olcum-birimi-arduino-library +https://github.com/deneyapkart/deneyap-arduino-projeleri +https://github.com/deneyapkart/deneyap-basinc-olcer-arduino-library +https://github.com/deneyapkart/deneyap-cift-kanalli-cizgi-algilayici-arduino-library +https://github.com/deneyapkart/deneyap-cift-kanalli-motor-surucu-arduino-library +https://github.com/deneyapkart/deneyap-derinlik-olcer-arduino-library +https://github.com/deneyapkart/deneyap-dokunmatik-tus-takimi-arduino-library +https://github.com/deneyapkart/deneyap-duman-dedektoru-arduino-library +https://github.com/deneyapkart/deneyap-gercek-zamanli-saat-arduino-library +https://github.com/deneyapkart/deneyap-gps-glonass-konum-belirleyici-arduino-library +https://github.com/deneyapkart/deneyap-hareket-algilama-arduino-library +https://github.com/deneyapkart/deneyap-hareket-isik-renk-algilayici-mesafe-olcer-arduino-library +https://github.com/deneyapkart/deneyap-hoparlor-arduino-library +https://github.com/deneyapkart/deneyap-kizilotesi-alici-verici-arduino-library +https://github.com/deneyapkart/deneyap-kumanda-kolu-arduino-library +https://github.com/deneyapkart/deneyap-mesafe-olcer-isik-algilayici-arduino-library +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 +https://github.com/deneyapkart/deneyap-sicaklik-nem-olcer-arduino-library +https://github.com/deneyapkart/deneyap-toprak-nemi-olcer-arduino-library +https://github.com/deneyapkart/deneyap-ultraviyole-isik-algilayici-arduino-library +https://github.com/deneyapkart/deneyap-yagmur-algilayici-arduino-library https://github.com/denkitronik/ADS1118 +https://github.com/dennis-ard/ArduCAM +https://github.com/Dennis-van-Gils/DvG_StreamCommand +https://github.com/Dennis-van-Gils/MIKROE_4_20mA_RT_Click https://github.com/Densaugeo/base64_arduino https://github.com/denxhun/ComputhermRF https://github.com/denxhun/TFA433 +https://github.com/DenysChuhlib/7Segment +https://github.com/DenysChuhlib/NTPtime +https://github.com/DenysChuhlib/PGMTools https://github.com/denyssene/SimpleKalmanFilter https://github.com/deploythefleet/arduino_esp32_update https://github.com/deploythefleet/arduino_esp8266_update @@ -1198,56 +2295,238 @@ https://github.com/dersimn/ArduinoThreadRunOnce https://github.com/dersimn/ArduinoUnifiedLog https://github.com/descampsa/A4963 https://github.com/descampsa/ardyno +https://github.com/desertgreg/PixelGrid https://github.com/designer2k2/EMUcan -https://github.com/designer2k2/EMUcanT4 https://github.com/desklab/desklab-arduino-lib +https://github.com/dev-board-tech/arduFPGA-app-common-arduino +https://github.com/dev-board-tech/lvglCpp +https://github.com/devinaconley/arduino-plotter https://github.com/devxplained/HTU21D-Sensor-Library https://github.com/devxplained/MAX3010x-Sensor-Library -https://github.com/devinaconley/arduino-plotter +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 +https://github.com/DFRobot/DFRobot_BC20_Gravity +https://github.com/DFRobot/DFRobot_BloodOxygen_S +https://github.com/DFRobot/DFRobot_BME280 +https://github.com/DFRobot/DFRobot_BME680 +https://github.com/DFRobot/DFRobot_BMI160 +https://github.com/DFRobot/DFRobot_BMM150 +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 +https://github.com/DFRobot/DFRobot_DF2301Q +https://github.com/DFRobot/DFRobot_DHT11 +https://github.com/DFRobot/DFRobot_DHT20 +https://github.com/DFRobot/DFRobot_DigitalPot +https://github.com/DFRobot/DFRobot_DS1307 +https://github.com/DFRobot/DFRobot_DS323X +https://github.com/DFRobot/DFRobot_EC10 +https://github.com/DFRobot/DFRobot_ENS160 +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 +https://github.com/DFRobot/DFRobot_Heartrate +https://github.com/DFRobot/DFRobot_HX711 +https://github.com/DFRobot/DFRobot_HX711_I2C +https://github.com/DFRobot/DFRobot_I2C_Multiplexer +https://github.com/DFRobot/DFRobot_ICG20660L +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 +https://github.com/DFRobot/DFRobot_LedDisplayModule +https://github.com/DFRobot/DFRobot_LIDAR07 +https://github.com/DFRobot/DFRobot_LIS +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 +https://github.com/DFRobot/DFRobot_MAX98357A +https://github.com/DFRobot/DFRobot_MCP23017 +https://github.com/DFRobot/DFRobot_MCP2515 +https://github.com/DFRobot/DFRobot_MCP4725 +https://github.com/DFRobot/DFRobot_MCP9808 +https://github.com/DFRobot/DFRobot_MGC3130 +https://github.com/DFRobot/DFRobot_MLX90614 +https://github.com/DFRobot/DFRobot_MotorStepper +https://github.com/DFRobot/DFRobot_MPX5700 +https://github.com/DFRobot/DFRobot_OLED12864 +https://github.com/DFRobot/DFRobot_OSD +https://github.com/DFRobot/DFRobot_OxygenSensor +https://github.com/DFRobot/DFRobot_PAJ7620U2 +https://github.com/DFRobot/DFRobot_PH +https://github.com/DFRobot/DFRobot_PN532 +https://github.com/DFRobot/DFRobot_QMC5883 +https://github.com/DFRobot/DFRobot_RainfallSensor +https://github.com/DFRobot/DFRobot_RGBButton +https://github.com/DFRobot/DFRobot_RGBLCD1602 +https://github.com/DFRobot/DFRobot_RGBMatrix +https://github.com/DFRobot/DFRobot_RP2040_SCI +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 +https://github.com/DFRobot/DFRobot_SIM +https://github.com/DFRobot/DFRobot_SIM7000 +https://github.com/DFRobot/DFRobot_SIM808 +https://github.com/DFRobot/DFRobot_SpeechSynthesis +https://github.com/DFRobot/DFRobot_ST7687S +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 +https://github.com/DFRobot/DFRobot_URM13 +https://github.com/DFRobot/DFRobot_VEML6075 +https://github.com/DFRobot/DFRobot_VEML7700 +https://github.com/DFRobot/DFRobot_VisualRotaryEncoder +https://github.com/DFRobot/DFRobot_VL53L0X +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/DFRobot/DFRobot_CT1780 https://github.com/dgduncan/Arduino-MCP4131 https://github.com/dgduncan/SevenSegment +https://github.com/Dhanabhon/TomIBT2 +https://github.com/Dhanabhon/TomStick +https://github.com/dhi-nikhil/indhi-lib-arduino-esp32 https://github.com/DhrBaksteen/ArduinoOPL2 https://github.com/DhrBaksteen/ArduinoPianoBoard +https://github.com/dhrubasaha08/DHT11 +https://github.com/dhrubasaha08/SimpleUltrasonic +https://github.com/Dhruvacube/7-Segment https://github.com/diegodorado/ObloqAdafruit +https://github.com/DIGI-EDGE/DPE-TRAM-GEN +https://github.com/DigitalCodesign/Escornabot-Library +https://github.com/dimag0g/PPM-reader https://github.com/DimensionEngineering/Kangaroo_Arduino_Library https://github.com/dimitre/DmtrPots https://github.com/DimitriGilbert/RGBProgress +https://github.com/dineshannayya/Riscduino_MCUFRIEND_kbv https://github.com/dingusdk/arduinoihc https://github.com/dingusdk/esp8266IHCSoapClient +https://github.com/Dino-MLC-Board/DINI-PLC-V2 +https://github.com/Dino-MLC-Board/DINO-PLC +https://github.com/DinuraPasan/DOC_CAT/ +https://github.com/diodeiot/DiodeIoT_SI-1104 +https://github.com/diodeiot/DiodeIoT_SI-1108 +https://github.com/diodeiot/DiodeIoT_SI-1116 +https://github.com/Dirk-/NanoBLEFlashPrefs +https://github.com/dirkhillbrecht/UiUiUi +https://github.com/dirkohme/Beeper +https://github.com/dirkohme/Clock +https://github.com/dirkohme/LED +https://github.com/dirkohme/MCP3421 +https://github.com/dirkx/Arduino-Base32-Decode +https://github.com/dirkx/Arduino-TOTP-RFC6238-generator https://github.com/dirkx/CurrentTransformerWithCallbacks https://github.com/dirkx/OptocouplerDebouncer https://github.com/distrakt/OmEspHelpers +https://github.com/divinofire/DatabaseOnSD +https://github.com/DIYables/DIYables_4Digit7Segment_74HC595 +https://github.com/DIYables/DIYables_IRcontroller +https://github.com/DIYODEmag/DIYsplay +https://github.com/dizcza/sdpsensor-esp-arduino https://github.com/DjamesSuhanko/bbPrinter https://github.com/DjamesSuhanko/EasyColor https://github.com/DjamesSuhanko/EasyPCF8574 +https://github.com/DjamesSuhanko/EasyPCF8575 https://github.com/djGrrr/Int64String https://github.com/djuseeq/Ch376msc -https://github.com/OttoDIY/OttoDIYLib +https://github.com/dl9sec/AioP13 https://github.com/DLE-Dev/OttoArduinoLib https://github.com/dleval/STLED316S https://github.com/dlkay0/TinyFontRenderer https://github.com/Dlloydev/ESP32-ESP32S2-AnalogWrite https://github.com/Dlloydev/QuickPID +https://github.com/Dlloydev/sTune +https://github.com/Dlloydev/Toggle +https://github.com/dlyckelid/HDC2010 +https://github.com/dlyckelid/IOExpander-TLA2518 https://github.com/dlyckelid/KX023-1025-IMU +https://github.com/dmadison/AnalogSelector-Arduino https://github.com/dmadison/ArduinoXInput https://github.com/dmadison/CtrlUtil https://github.com/dmadison/FastLED_NeoPixel https://github.com/dmadison/HID_Buttons https://github.com/dmadison/NintendoExtensionCtrl https://github.com/dmadison/ServoInput +https://github.com/dmadison/Sim-Racing-Arduino https://github.com/dmadison/Xbox360ControllerLEDs +https://github.com/dmdhrumilmistry/DeviceController 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 https://github.com/dniklaus/arduino-display-lcdkeypad https://github.com/dniklaus/spin-timer https://github.com/dniklaus/wiring-timer +https://github.com/dnzayan/ESP32_Pinoo https://github.com/dobotopensource/AIStarter +https://github.com/DocBohn/CowPi +https://github.com/DocBohn/CowPi_stdio +https://github.com/DoImant/Button_SL.git https://github.com/dojyorin/arduino_base64 +https://github.com/dojyorin/arduino_m0_tweak https://github.com/dojyorin/arduino_percent +https://github.com/dok-net/ad5243.git https://github.com/dok-net/CoopTask https://github.com/dok-net/esp_sds011 +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 https://github.com/douglaslyon/AudioShieldDTMF https://github.com/dparson55/NRFLite https://github.com/dpnebert/TLC5916_Lite @@ -1255,51 +2534,84 @@ https://github.com/dreed47/WifiMQTTManager https://github.com/drewfish/arduino-FourRegs https://github.com/drewfish/arduino-TrimWright https://github.com/drewfish/arduino-ZeroRegs -https://github.com/DrGamerGuy/GLCD +https://github.com/drf5n/Arduino-PID-Library 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 https://github.com/dualB/Melody https://github.com/dualB/Musician +https://github.com/Duckle29/HUSB238 +https://github.com/DuinoDNS/ddns-arduino-nightly-releases +https://github.com/duinolibs/Sbutton https://github.com/duinoWitchery/hd44780 https://github.com/durydevelop/arduino-lib-oled https://github.com/dushyantahuja/IPGeolocation https://github.com/dushyantahuja/TFL-Status -https://github.com/fjebaker/MQ7 -https://github.com/dvernier/GDXLib -https://github.com/dvernier/VernierLib +https://github.com/dvarrel/AHT20 +https://github.com/dvarrel/AsyncTCP.git +https://github.com/dvarrel/BMP280 +https://github.com/dvarrel/DHT22 +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/VernierST/GDXLib +https://github.com/dwinhmi/DWIN_DGUS_HMI https://github.com/dwrobel/TrivialKalmanFilter https://github.com/dxinteractive/AnalogMultiButton https://github.com/dxinteractive/ResponsiveAnalogRead https://github.com/dycodex/ESPectro32 https://github.com/dycodex/MakestroCloudClient +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 https://github.com/EasyIoT-BR/Easyiot-Esp8266 +https://github.com/eb1992/ShiftLcd https://github.com/ecal-mid/ESP32Servo360 +https://github.com/eccentricOrange/DDBot https://github.com/eccnil/ESPNow2Mqtt https://github.com/EdanPotter/end-device-radioenge +https://github.com/edge-ml/edge-fel-lib +https://github.com/edge-ml/EdgeML-Arduino https://github.com/EdgeiLAB/libedge https://github.com/Edinburgh-College-of-Art/DesignInformaticsPCB https://github.com/eduardomarcos/arduino-esp32-restclient https://github.com/edumardo/DifferentialSteering +https://github.com/eebothobby/ADS7828 +https://github.com/eebothobby/DAC7574 https://github.com/eecharlie/MatrixMath +https://github.com/EFWob/ESPPubSubClientWrapper https://github.com/ehajo/LM75B https://github.com/ehajo/WSEN-PADS +https://github.com/eigen-value/Transform https://github.com/EinarArnason/ArduinoQueue +https://github.com/ejri/Cohere_Client_Arduino +https://github.com/ekkai/Aicococam_Ardu/ +https://github.com/ekkai/kocoafabLib https://github.com/ekkai/PMD4 https://github.com/ekkai/PMsensor +https://github.com/ekkai/WizFi360 https://github.com/elC0mpa/EnergyMeter https://github.com/elC0mpa/OLED_SSD1306_Chart https://github.com/electric-sheep-co/arduino-redis +https://github.com/electricui/electricui-embedded https://github.com/electro-smith/DaisyDuino https://github.com/Electro707/Simple-LED-Matrix-Library +https://github.com/ElectroMagus/ESP32MX1508 https://github.com/ElectronicCats/AqualaboSensorsLibrary +https://github.com/ElectronicCats/Beelan-LoRaWAN https://github.com/ElectronicCats/CayenneLPP https://github.com/ElectronicCats/ElectronicCats_InternalTemperatureZero https://github.com/ElectronicCats/ElectronicCats-PN7150 @@ -1308,17 +2620,31 @@ https://github.com/elhayra/MilliStopper https://github.com/elhayra/SandTimer https://github.com/elhayra/Strober https://github.com/elkrem/koyn +https://github.com/eloquentarduino/eloquent_edgeimpulse +https://github.com/eloquentarduino/eloquent_esp32cam_remote +https://github.com/eloquentarduino/eloquent_rtls https://github.com/eloquentarduino/EloquentArduino +https://github.com/eloquentarduino/EloquentEsp32cam +https://github.com/eloquentarduino/EloquentSurveillance +https://github.com/eloquentarduino/EloquentTensorFlow32 +https://github.com/eloquentarduino/EloquentTensorFlowCortexM https://github.com/eloquentarduino/EloquentTinyML https://github.com/eloquentarduino/EloquentVision +https://github.com/eloquentarduino/tflm_cortexm +https://github.com/eloquentarduino/tflm_esp32 https://github.com/elpassion/Babelduino https://github.com/elpinjo/CumulocityClient https://github.com/elyons/pinduino https://github.com/embeddedartistry/arduino-printf https://github.com/EmbedUI/EmbedUI-Library +https://github.com/EmberGL-org/EmberGL.git https://github.com/emctague/Tasks https://github.com/emelianov/modbus-esp8266 https://github.com/EmotiBit/BMI160-Arduino +https://github.com/EmotiBit/EmotiBit_ADS1X15 +https://github.com/EmotiBit/EmotiBit_ArduinoFilters +https://github.com/EmotiBit/EmotiBit_EmojiLib +https://github.com/EmotiBit/EmotiBit_External_EEPROM https://github.com/EmotiBit/EmotiBit_FW_FeatherWing https://github.com/EmotiBit/EmotiBit_FW_Si7013 https://github.com/EmotiBit/EmotiBit_MAX30101 @@ -1330,25 +2656,64 @@ https://github.com/end2endzone/AnyRtttl https://github.com/end2endzone/BitReader https://github.com/end2endzone/NonBlockingRTTTL https://github.com/end2endzone/SoftTimers +https://github.com/EndlessParadox7/GFX_Thaana +https://github.com/Energesis-Ingenieria/Energesis_LM35 +https://github.com/Energesis-Ingenieria/Energesis_Sensor +https://github.com/engin100/950 +https://github.com/engin100/980 +https://github.com/EngineeringRoom/Engineer_EasyEEPROM https://github.com/EngineeringRoom/Engineer_Regulator https://github.com/EnhancedRadioDevices/DDS -https://github.com/EnhancedRadioDevices/HamShield_KISS https://github.com/EnhancedRadioDevices/HamShield +https://github.com/EnhancedRadioDevices/HamShield_KISS https://github.com/EnviroDIY/Arduino-SDI-12 +https://github.com/EnviroDIY/GroPointModbus 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 +https://github.com/epsilonrt/eFlexPwm +https://github.com/epsilonrt/Hmi4DinBox +https://github.com/epsilonrt/modbus-arduino +https://github.com/epsilonrt/modbus-esp8266at +https://github.com/epsilonrt/modbus-ethercard +https://github.com/epsilonrt/modbus-ethernet +https://github.com/epsilonrt/modbus-radio +https://github.com/epsilonrt/modbus-serial +https://github.com/epsilonrt/pImpl +https://github.com/epsilonrt/RadioHead.git#mikem +https://github.com/epsilonrt/spaiot-lib https://github.com/erdemarslan/GSMSim https://github.com/erdnaxe/Arduino_BrushlessServo https://github.com/Erhan-MADE/StepperControl +https://github.com/EricAndrechek/TinyGPSMinus https://github.com/ErickSimoes/Ultrasonic +https://github.com/eringee/BioData https://github.com/ERNICommunity/dbg-trace https://github.com/ERNICommunity/debug-cli https://github.com/erow/Task https://github.com/ERROPiX/ESP32_AnalogWrite +https://github.com/ES-factory/DigiCombo +https://github.com/EscapeAutomate/ArduinoLib https://github.com/EscaVic/ROKduino +https://github.com/ESDeveloperBR/AnalogKeyboard.git +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/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 +https://github.com/esp-arduino-libs/ESP32_Knob +https://github.com/esp-arduino-libs/ESP32_USB_Stream +https://github.com/ethanhjennings/MQTTSerialPrinter https://github.com/ethanjli/linear-position-control https://github.com/ethanjli/liquid-handling-robotics https://github.com/etherkit/JTEncode @@ -1356,22 +2721,34 @@ https://github.com/etherkit/MorseArduino https://github.com/etherkit/Si5351Arduino https://github.com/ETLCPP/etl-arduino https://github.com/ettoreleandrotognoli/ArcPID +https://github.com/Eugeniusz-Gienek/CSWBattery.git +https://github.com/Eugeniusz-Gienek/CSWButtons.git +https://github.com/Ev-13/StopLoop-Library https://github.com/evert-arias/EasyButton 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 https://github.com/ewpa/MAX3100Serial +https://github.com/Excelsior-Robotics/Excelsior +https://github.com/Excelsior-Robotics/Excelsior_Ambassador +https://github.com/Excelsior-Robotics/Excelsior_Light https://github.com/exosite-garage/arduino_exosite_library +https://github.com/ExperimentalCyborg/PicoStep https://github.com/F4GOJ/AD9850SPI https://github.com/fabianofranca/ESP8266RestClient -https://github.com/fabiopjve/ULWOS2 -https://github.com/fabiuz7/Dimmable-Light-Arduino -https://github.com/fabiuz7/esp-logger-lib -https://github.com/fabiuz7/melody-player-arduino +https://github.com/fabianoriccardi/dimmable-light +https://github.com/fabianoriccardi/ESPLogger +https://github.com/fabianoriccardi/melody-player https://github.com/fabianoriccardi/rtcmemory +https://github.com/FabioNMI/fancyTerminal +https://github.com/fabiopjve/ULWOS2 https://github.com/fablab-bayreuth/WTV020SD16P +https://github.com/fablabbh/Arduino-L298-Motor-Library https://github.com/FaBoPlatform/FaBo3Axis-ADXL345-Library https://github.com/FaBoPlatform/FaBo7Seg-TLC59208-Library https://github.com/FaBoPlatform/FaBo9AXIS-MPU9250-Library @@ -1398,52 +2775,96 @@ https://github.com/FaBoPlatform/FaBoTemperature-ADT7410-Library https://github.com/FaBoPlatform/FaBoUV-Si1132-Library https://github.com/fabriziop/aTalkArduino https://github.com/fabriziop/EEWL +https://github.com/fabriziop/FIFOEE.git https://github.com/fabriziop/TalkingButton https://github.com/fabriziop/TalkingLED +https://github.com/facts-engineering/AT24MAC_EEPROM https://github.com/facts-engineering/P1AM +https://github.com/facts-engineering/P1AM_Serial +https://github.com/facts-engineering/PCF8563_RTC https://github.com/facts-engineering/ViewMarq +https://github.com/FacundoPumilla/MQ137 https://github.com/Falcons21/Custom_PID https://github.com/Falcons21/FSerial https://github.com/Falven/ad-oprintstream 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 https://github.com/fatihaslamaci/TimerFa +https://github.com/fatkhrus/TeslaCloud +https://github.com/fatlab101/FixedString https://github.com/fatpat/arduino-dra818 -https://github.com/franalvarez21/Arduboy-BistercianNumbers +https://github.com/fbiego/chronos-esp32 +https://github.com/fbiego/CST816S https://github.com/fbiego/ESP32Time +https://github.com/fbiego/MpesaSTK +https://github.com/fbiego/Timber +https://github.com/Fbisinger/HeidelbergInterface +https://github.com/FCrins1/WeatherCall https://github.com/fdivitto/FabGL +https://github.com/feanor-anglin/PCF8575-lib https://github.com/feilipu/Arduino_FreeRTOS_Library https://github.com/feilipu/Arduino_RTC_Library +https://github.com/feilipu/Gadget_Shield https://github.com/feilipu/Goldilocks_Analogue_DAC_Library https://github.com/feilipu/Goldilocks_Analogue_SPIRAM_Library +https://github.com/feilipu/ReGIS 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 https://github.com/felias-fogg/Vcc https://github.com/felis/USB_Host_Shield_2.0 +https://github.com/fellipecouto/ButtonControl +https://github.com/fellipecouto/CipherCode +https://github.com/fellipecouto/MemoryLib.h +https://github.com/fellipecouto/MillisTimerLib +https://github.com/fellipecouto/PWMOutESP32 +https://github.com/fellipecouto/ShiftOutMega https://github.com/fenichelar/Pin +https://github.com/FeralAI/MPG/ https://github.com/ferkoyanagi/AppFernandok https://github.com/ferkoyanagi/SevenSegmentsK +https://github.com/ferrerosteve/WiFiManagerDesign https://github.com/fesselk/everytime -https://github.com/fhessel/esp32_https_server_compat https://github.com/fhessel/esp32_https_server +https://github.com/fhessel/esp32_https_server_compat +https://github.com/filoconnesso/Tweakly https://github.com/finani/ICM20689 +https://github.com/finani/ICM42688 https://github.com/finani/TriSonica_Mini https://github.com/finitespace/BME280 +https://github.com/Finndersen/LEDuino https://github.com/finson-release/FirmataWithDeviceFeature https://github.com/finson-release/Luni https://github.com/fire0shadow/SevSegSPI https://github.com/fire1/PulseCom +https://github.com/firechip/Firechip_Analog_Devices_MAX14521E_Arduino_Library +https://github.com/firechip/Firechip_Quectel_EG25-G_Arduino_Library +https://github.com/firechip/Firechip_RV-8263_Arduino_Library +https://github.com/firefly-cpp/TCXWriter https://github.com/firmata/arduino https://github.com/firmata/ConfigurableFirmata https://github.com/FirstBuild/Relay +https://github.com/fish-five/BGWiFiConfig https://github.com/fitzterra/ServoOsc +https://github.com/fjebaker/MQ7 +https://github.com/flash62au/WiThrottleProtocol https://github.com/flav1972/ArduinoINA219 +https://github.com/Flinduino/Flinders_ENGR2781 +https://github.com/Flinduino/Flinduino_SensorKit https://github.com/floe/BTLE https://github.com/Floessie/frt +https://github.com/Flowduino/LithiumPowered https://github.com/flyingeinstein/Restfully https://github.com/fmgrafikdesign/simplewebserial-arduino-library https://github.com/foothillscommunityworkshop/Robot-Model-2 @@ -1452,14 +2873,28 @@ https://github.com/forkineye/ESPAsyncE131 https://github.com/forntoh/LcdMenu https://github.com/FortySevenEffects/arduino_midi_library https://github.com/FortySevenEffects/serde +https://github.com/Foxdogface/arduino-VEML6070 https://github.com/foxel/arduino-noolite-tx https://github.com/fp64lib/fp64lib +https://github.com/FPGAArcade/replay_mkrvidor4000 +https://github.com/Frai13/EasIno +https://github.com/franalvarez21/Arduboy-BistercianNumbers https://github.com/francibm97/UM3750 +https://github.com/Francis-Magallanes/CircularQueue +https://github.com/francobasaglia/MagicPot +https://github.com/franeum/MicroMidiDevices +https://github.com/franeum/MicroMidiEnc +https://github.com/franeum/MicroMidiPot +https://github.com/franeum/TI_SN76489 +https://github.com/FrankBoesing/FastCRC https://github.com/frankjoshua/rosserial_arduino_lib -https://github.com/frason5566/MatrixMini +https://github.com/Franzininho/Franzininho_LiquidCrystal +https://github.com/Matrix-Robotics/MatrixMini +https://github.com/Fraunhofer-IMS/AIfES_for_Arduino https://github.com/freaklabs/cmdArduino https://github.com/Fredi/ArduinoIRC https://github.com/fredilarsen/ModuleInterface +https://github.com/fredlarochelle/RunningStats https://github.com/Freenove/Freenove_VK16K33_Lib https://github.com/Freenove/Freenove_WS2812_Lib_for_ESP32 https://github.com/Freenove/Freenove_WS2812B_RGBLED_Controller @@ -1467,20 +2902,36 @@ https://github.com/freetronics/BaroSensor https://github.com/freetronics/DMD2 https://github.com/freetronics/FTOLED https://github.com/freetronics/FTRGBLED +https://github.com/fsender/readguy https://github.com/fterrier/dwarf433 +https://github.com/ftjuh/I2Cwrapper +https://github.com/ftjuh/RCWL_1X05 +https://github.com/FTTechBrasil/AqualaboSensor https://github.com/FTTechBrasil/FTTech_SAMD51_Clicks https://github.com/FTTechBrasil/FTTech_Swarm +https://github.com/FTTechBrasil/FTTech_XBee +https://github.com/FTTechBrasil/FTTech-LoRaWAN https://github.com/fu-hsi/FuGPS https://github.com/fu-hsi/PMS https://github.com/full-stack-ex/tiny-template-engine-arduino https://github.com/funkyfisch/arduino-knock-detector https://github.com/Fuzzer11/SDconfig https://github.com/FuzzyNoodle/Fuzzy-Spooder +https://github.com/fxprime/ModuleMoreSumoV2 +https://github.com/fyrus7/RTC3231 https://github.com/gabriel-milan/Arduino-MAX30100 https://github.com/gabriel-milan/TinyMPU6050 https://github.com/GabrielNotman/cryptoauthlib https://github.com/GabrielNotman/RTCCounter +https://github.com/GabyGold67/FourBitLedDigitalTube +https://github.com/GabyGold67/MomentaryPushButtonsAsSwitches +https://github.com/GabyGold67/SevenSegDisplaysRTOSLib https://github.com/GadgetFactory/Gadget-Box +https://github.com/galarb/ButtonIRQ.git +https://github.com/galarb/clicli.git +https://github.com/galarb/gyroturn.git +https://github.com/galarb/PenYX.git +https://github.com/galjonsfigur/PD243x-DotMatrixDisplay https://github.com/Gamadril/DD-Booster-Library https://github.com/Gamebuino/Gamebuino-Classic https://github.com/Gamebuino/Gamebuino-Meta @@ -1489,38 +2940,70 @@ https://github.com/garmin/LIDARLite_Arduino_Library https://github.com/gavinlyonsrepo/ER_OLEDM1_CH1115 https://github.com/gavinlyonsrepo/ERM19264_UC1609 https://github.com/gavinlyonsrepo/FourteenSegDisplay +https://github.com/gavinlyonsrepo/HD44780_LCD_PCF8574 +https://github.com/gavinlyonsrepo/MAX471 https://github.com/gavinlyonsrepo/NOKIA5110_TEXT https://github.com/gavinlyonsrepo/TM1638plus +https://github.com/Gbertaz/JDI_MIP_Display +https://github.com/Gbertaz/NonBlockingDallas +https://github.com/gbr1/rp2040-encoder-library +https://github.com/gbr1/ucPack https://github.com/gbrd/arduino-teleinfo https://github.com/Geabong/ModbusRTUSlaveArduino +https://github.com/Geekble-Maker/Geekble_Basics +https://github.com/Geekble-Maker/Geekble_Orgel +https://github.com/Geekble-Maker/Geekble_MotorOrgel +https://github.com/Geekble-Maker/Geekble_Note2Freq +https://github.com/Geekble-Maker/Geekble_LieDetector https://github.com/geekbleofficial/Geekble_Oscillator -https://github.com/geekbleofficial/Geekble_LieDetector -https://github.com/gelraen/Arduino-PID-Library +https://github.com/geeny/geenymodem https://github.com/Gemelon/Pushbutton +https://github.com/gemi254/ConfigAssist-ESP32-ESP8266 +https://github.com/gemi254/ControlAssist-ESP32-ESP8266 +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 https://github.com/GewoonGijs/VID28 +https://github.com/Gfy63/NE555 +https://github.com/Gfy63/ParseCommands.git +https://github.com/ggerganov/ggwave-arduino https://github.com/GGorAA/MorsDuino https://github.com/ggzucco/LM35 https://github.com/ghaemshop/ghaemShopSmSim +https://github.com/GhassanYusuf/NewServo https://github.com/ghlawrence2000/UTFT_SdRaw +https://github.com/gianni-carbone/STM32ad9833 +https://github.com/gianni-carbone/STM32encoder +https://github.com/gianni-carbone/STM32mcp4151 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 +https://github.com/gillham/logic_analyzer https://github.com/gilmaimon/Arduino-CloudStorage https://github.com/gilmaimon/ArduinoComponents https://github.com/gilmaimon/ArduinoWebsockets +https://github.com/gilman88/xmodem-lib https://github.com/gin66/FastAccelStepper https://github.com/gioblu/PJON https://github.com/GiorgioAresu/FanController https://github.com/GiorgosXou/NeuralNetworks +https://github.com/gism/ESP32_AD7190 +https://github.com/Gjorgjevikj/SmoothProgress +https://github.com/GLEE2023/Beelan-LoRaWAN +https://github.com/GLEE2023/GLEE2023 https://github.com/Glinnes/NMEAParser +https://github.com/glutio/Eventfun +https://github.com/glutio/Taskfun https://github.com/gmag11/CayenneLPPdec https://github.com/gmag11/NtpClient https://github.com/gmag11/WifiLocation @@ -1531,17 +3014,32 @@ https://github.com/gmarty2000-ARDUINO/arduino-ULTRASONIC_SENSOR https://github.com/gmarty2000/arduino-LED https://github.com/gmazzamuto/MAX1464-Arduino-library https://github.com/GO01260/uMT +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 https://github.com/GordonRudman/ExampleArduinoLibrary https://github.com/gordonthree/pca9633 +https://github.com/govorox/SSLClient +https://github.com/GoWired/GoWired-lib https://github.com/gpb01/NVSRAM https://github.com/gpb01/SerialCmd https://github.com/gpb01/wdt_samd21 -https://github.com/gq97a6/IoT_Modules-Buttons +https://github.com/gpoolb/ads1148 +https://github.com/gq97a6/arduino_buttons +https://github.com/grafana/arduino-prom-loki-transport +https://github.com/grafana/arduino-snappy-proto +https://github.com/grafana/loki-arduino +https://github.com/grafana/prometheus-arduino https://github.com/gramedek/pio8255 https://github.com/grandeurtech/arduino-sdk +https://github.com/gravitech-engineer/AIS_IoT_4G https://github.com/graybiel-laboratory/GeneralPurposeMotionDetector +https://github.com/GreenLeafLocal/HydroinoJobMgr https://github.com/GreenPonik/DFRobot_ESP_EC_BY_GREENPONIK https://github.com/GreenPonik/DFRobot_ESP_PH_WITH_ADC_BY_GREENPONIK https://github.com/gregington/BigCrystal @@ -1551,35 +3049,80 @@ https://github.com/greiman/DigitalIO https://github.com/greiman/SdFat https://github.com/greiman/SSD1306Ascii https://github.com/GreyGnome/EnableInterrupt +https://github.com/Grovety/grc_arduino +https://github.com/Grrtzm/MicrobitV2-HHS https://github.com/Gruppio/Throttle https://github.com/grzesl/ESPMail +https://github.com/gspsp/Series https://github.com/GTO2013/EMUSerial https://github.com/guglicap/arduino-pv https://github.com/guglielmino/arduino-pushetta-lib https://github.com/GurtDotCom/GKScroll https://github.com/guru-florida/PWMFreak +https://github.com/GuruSR/SmallRTC +https://github.com/Guswib/Potentiostat_Shield/ https://github.com/gutierrezps/ESP32_I2C_Slave https://github.com/gutierrezps/gwiot7941e +https://github.com/guttih/DisplayMenu +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 https://github.com/GyverLibs/AccelMotor https://github.com/GyverLibs/AnalogKey +https://github.com/GyverLibs/Approxy https://github.com/GyverLibs/AsyncStream https://github.com/GyverLibs/BitPack https://github.com/GyverLibs/buildTime +https://github.com/GyverLibs/CharDisplay https://github.com/GyverLibs/Clap https://github.com/GyverLibs/CRT https://github.com/GyverLibs/directADC https://github.com/GyverLibs/directTimers +https://github.com/GyverLibs/EEManager https://github.com/GyverLibs/EncButton https://github.com/GyverLibs/FastBot https://github.com/GyverLibs/FFT_C +https://github.com/GyverLibs/FileData https://github.com/GyverLibs/fixed https://github.com/GyverLibs/Forecaster https://github.com/GyverLibs/GParser https://github.com/GyverLibs/GRGB +https://github.com/GyverLibs/GSON https://github.com/GyverLibs/Gyver433 +https://github.com/GyverLibs/GyverBeeper +https://github.com/GyverLibs/GyverBlinker https://github.com/GyverLibs/GyverBME280 https://github.com/GyverLibs/GyverBus https://github.com/GyverLibs/GyverButton @@ -1588,43 +3131,66 @@ https://github.com/GyverLibs/GyverEncoder https://github.com/GyverLibs/GyverFIFO https://github.com/GyverLibs/GyverFilters https://github.com/GyverLibs/GyverGFX +https://github.com/GyverLibs/GyverHC595 +https://github.com/GyverLibs/GyverHTU21D https://github.com/GyverLibs/GyverHX711 +https://github.com/GyverLibs/GyverINA +https://github.com/GyverLibs/GyverIO +https://github.com/GyverLibs/GyverJoy +https://github.com/GyverLibs/GyverLBUF +https://github.com/GyverLibs/GyverMAX6675 https://github.com/GyverLibs/GyverMAX7219 https://github.com/GyverLibs/GyverMotor https://github.com/GyverLibs/GyverNTC +https://github.com/GyverLibs/GyverNTP https://github.com/GyverLibs/GyverOLED https://github.com/GyverLibs/GyverOS https://github.com/GyverLibs/GyverPID +https://github.com/GyverLibs/GyverPortal https://github.com/GyverLibs/GyverPower https://github.com/GyverLibs/GyverPWM https://github.com/GyverLibs/GyverRelay +https://github.com/GyverLibs/GyverSegment +https://github.com/GyverLibs/GyverShift https://github.com/GyverLibs/GyverStepper https://github.com/GyverLibs/GyverTimer https://github.com/GyverLibs/GyverTimers https://github.com/GyverLibs/GyverTM1637 +https://github.com/GyverLibs/GyverTransfer https://github.com/GyverLibs/GyverUART https://github.com/GyverLibs/GyverWDT https://github.com/GyverLibs/Hamming https://github.com/GyverLibs/microDS18B20 https://github.com/GyverLibs/microDS3231 https://github.com/GyverLibs/microLED +https://github.com/GyverLibs/MicroUART https://github.com/GyverLibs/microWire https://github.com/GyverLibs/mString https://github.com/GyverLibs/NecDecoder +https://github.com/GyverLibs/OVS +https://github.com/GyverLibs/Pairs https://github.com/GyverLibs/Psychrometer https://github.com/GyverLibs/PWMrelay +https://github.com/GyverLibs/QuickCharge https://github.com/GyverLibs/Random16 https://github.com/GyverLibs/ServoSmooth https://github.com/GyverLibs/SevenSegmentsDisp +https://github.com/GyverLibs/SimplePortal https://github.com/GyverLibs/SoftServo +https://github.com/GyverLibs/Stamp +https://github.com/GyverLibs/StringUtils +https://github.com/GyverLibs/SunPosition https://github.com/GyverLibs/Tachometer https://github.com/GyverLibs/TimeRandom https://github.com/GyverLibs/TimerMs https://github.com/GyverLibs/UnixTime +https://github.com/GyverLibs/VirtualButton https://github.com/GyverLibs/VolAnalyzer +https://github.com/ErlingSigurdson/SegMap595 https://github.com/h-c-c/Seven_Segment_Pixel -https://github.com/H-Kurosaki/UARDECS_MEGA https://github.com/H-Kurosaki/UARDECS +https://github.com/H-Kurosaki/UARDECS_MEGA +https://github.com/H1Jam/Bind https://github.com/h2zero/NimBLE-Arduino https://github.com/haakonnessjoen/TCA6416A https://github.com/hackair-project/hackAir-Arduino @@ -1632,29 +3198,57 @@ https://github.com/HackerInside0/Arduino_sevenSegmentDisplay https://github.com/HackerInside0/Arduino_SoftwareReset https://github.com/HackerInside0/L293 https://github.com/HackerInside0/SharpIR +https://github.com/hafidhh/Callmebot-ESP32 +https://github.com/hafidhh/Callmebot-ESP8266 +https://github.com/hafidhh/FlowSensor-Arduino https://github.com/haimoz/SoftFilters +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 https://github.com/haratta27/M5Stack_SimpleBeep 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 +https://github.com/hasenradball/Bosch_BME280_Arduino +https://github.com/hasenradball/DS3231-RTC +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 +https://github.com/heliosproj/HeliOS https://github.com/helium/helium-arduino https://github.com/helium/longfi-arduino https://github.com/HelTecAutomation/Heltec_ESP32 https://github.com/HelTecAutomation/Heltec_ESP8266 +https://github.com/hen1227/bluetooth-serial https://github.com/HendrikVE/Arduino-DFR0554 https://github.com/HendrikVE/Arduino-LiquidCrystalWired https://github.com/HendrikVE/Arduino-PCA9633 +https://github.com/henriksod/Arduino_CANOverSerial https://github.com/henriksod/Fabrik2DArduino +https://github.com/HerrNamenlos123/JTAG_Interface +https://github.com/hexaedron/PostNeoSWSerial https://github.com/HexFab/HexFabQuadroMotorShield https://github.com/hideakitai/ADS1x1x +https://github.com/hideakitai/ADS1220 +https://github.com/hideakitai/ArduinoEigen https://github.com/hideakitai/ArduinoOSC https://github.com/hideakitai/ArtNet https://github.com/hideakitai/ArxContainer -https://github.com/hideakitai/ArduinoEigen https://github.com/hideakitai/ArxSmartPtr https://github.com/hideakitai/ArxStringUtils https://github.com/hideakitai/ArxTypeTraits @@ -1673,7 +3267,9 @@ 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 https://github.com/hideakitai/MPU9250 https://github.com/hideakitai/MQTTPubSubClient @@ -1684,6 +3280,7 @@ https://github.com/hideakitai/MTCParser https://github.com/hideakitai/Packetizer https://github.com/hideakitai/PCA9536 https://github.com/hideakitai/PCA9547 +https://github.com/hideakitai/PCA95x5 https://github.com/hideakitai/PCA9624 https://github.com/hideakitai/PCF2129 https://github.com/hideakitai/PollingTimer @@ -1708,18 +3305,34 @@ https://github.com/hippymulehead/FastDigitalPin https://github.com/hippymulehead/RARGBLED https://github.com/Hiroshi-Sugimura/EL_dev_arduino https://github.com/hirotakaster/CoAP-simple-library +https://github.com/HITISoftware/HITIComm +https://github.com/HITISoftware/HITICommSupport +https://github.com/hmz06967/OZGPS_NMEA +https://github.com/hmz06967/SPI-FlashMem https://github.com/HNRobotica/LineTracker5 https://github.com/Hobietime/RF24G +https://github.com/hoeken/PsychicHttp +https://github.com/holgerlembke/ESPFMfGK +https://github.com/holgerlembke/st7567sfGK https://github.com/HomeControlAS/homecontrol-mqtt https://github.com/HomeDing/HomeDing https://github.com/HomeSpan/HomeSpan +https://github.com/honvl/Seeed-Xiao-NRF52840-Battery https://github.com/horihiro/esp8266-google-home-notifier https://github.com/horihiro/esp8266-google-tts https://github.com/hotchpotch/Arduino-HDC1000 https://github.com/housewithinahouse/TwoWheelRobotLibrary +https://github.com/hpsaturn/esp32s3-cam +https://github.com/hpsaturn/espnow-joystick +https://github.com/hpsaturn/MultiFuncShield-Library https://github.com/hpssjellis/portenta-pro-community-solutions https://github.com/hpwit/SID6581 +https://github.com/hsaturn/TinyConsole 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 @@ -1727,31 +3340,47 @@ 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/hznupeter/blynk-library-for-chinese +https://github.com/hydra/arduino-ICM42605 +https://github.com/hzkincony/kc868-arduino-library https://github.com/i3water/Blinker_PMSX003ST https://github.com/iagows/arduino_io https://github.com/Iainmon/altino https://github.com/iamthechad/parallax_lcd +https://github.com/ianhattwick/controlVoltage https://github.com/ichigo663/NDNOverUDP +https://github.com/ichirowo/FLINT_E220_900T22S_JP_Library +https://github.com/icomedit/Arduino-KIMlib +https://github.com/ICRS/ICRS-101-Devkit +https://github.com/iddi/oocsi-esp +https://github.com/ifpa-pgm/reciclabot +https://github.com/IFRN-robotica-CM/CosmosNV2 https://github.com/IGB-Germany/ComDriverSpi https://github.com/IGB-Germany/IGB-FlashSst26 https://github.com/IGB-Germany/IGB-Tactile-Switch +https://github.com/igor-krechetov/hsmcpp-arduinoide https://github.com/igorantolic/ai-esp32-rotary-encoder https://github.com/igvina/ArdBitmap https://github.com/igvina/ArdVoice https://github.com/IharYakimush/arduino-temperature-control-events https://github.com/ihormelnyk/opentherm_library https://github.com/iitaka1142/NullSerial -https://github.com/iliaslamprou/virtuino_stm32 https://github.com/iliaslamprou/virtuino +https://github.com/iliaslamprou/virtuino_stm32 https://github.com/iliaslamprou/virtuinoCM https://github.com/iliaslamprou/virtuinoESP +https://github.com/ILoveMemes/SoftwareTimer +https://github.com/iMakeOfficial/iMakeBeta +https://github.com/imax9000/Arduino-PID-Library https://github.com/imfrancisd/MorseCodeMachine +https://github.com/imiconsystem/MicromationDevboardV3 https://github.com/ImpulseAdventure/GUIslice https://github.com/ImpulseAdventure/Waveshare_ILI9486 https://github.com/imrehorvath/BridgeHttpClient +https://github.com/IncroyablePix/DigiKeyboardBe +https://github.com/Incuvers/macro-logger https://github.com/IndustrialShields/arduino-IndustrialShields https://github.com/Industruino/EthernetIndustruino https://github.com/Industruino/FRAM @@ -1759,37 +3388,49 @@ https://github.com/Industruino/Indio https://github.com/Industruino/UC1701 https://github.com/INFICON-Spot/inficon-spot-lib https://github.com/Infineon/arduino-high-side-switch +https://github.com/Infineon/arduino-motix-btn99x0 +https://github.com/Infineon/arduino-multi-half-bridge https://github.com/Infineon/arduino-optiga-trust-m https://github.com/Infineon/arduino-optiga-trust-x -https://github.com/Infineon/arduino-rgb-led-lighting-shield +https://github.com/Infineon/arduino-pas-co2-sensor https://github.com/Infineon/arduino-radar-bgt60 -https://github.com/Infineon/DC-Motor-Control-TLE94112EL -https://github.com/Infineon/DPS310-Pressure-Sensor +https://github.com/Infineon/arduino-rgb-led-lighting-shield +https://github.com/Infineon/arduino-xensiv-dps3xx https://github.com/Infineon/hall-switch -https://github.com/Infineon/high-side-switch https://github.com/Infineon/IFX007T-Motor-Control -https://github.com/Infineon/OPTIGA-Trust-E-Security-Controller -https://github.com/Infineon/arduino-pas-co2-sensor +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 https://github.com/IngeniaMC/Ingenia-Serial-Servo-Drive-Library https://github.com/inovatic-ict/emoro-2560-library +https://github.com/InqOnThat/InqPortal +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 https://github.com/Invzblio/SerialToWifi https://github.com/iobeam/iobeam-client-embedded https://github.com/iondbproject/iondb +https://github.com/iory/i2c-for-esp32 +https://github.com/IoT-ThingsCloud/thingscloud-esp-sdk https://github.com/iotappstory/ESP-Library +https://github.com/iotdevicesdev/GGreg20_V3 https://github.com/iotec-gmbh/iotec_MAX7319 https://github.com/iotec-gmbh/M5_RTC_Module +https://github.com/iotexproject/arduino-sdk https://github.com/IoTGuruLive/theiotguru-arduino-library https://github.com/iotize-sas/Arduino-Tap +https://github.com/iotkaran/Arduino https://github.com/iotpipe/esp8266-arduino-iotpipe https://github.com/IoTWay/IoTWay-Arduino https://github.com/IowaScaledEngineering/arduino-irsense @@ -1804,23 +3445,34 @@ https://github.com/Isaranu/IoTtweetSIEMENS_SIMATIC https://github.com/Isaranu/pm25senses https://github.com/Isaranu/PointzNet https://github.com/Isaranu/Senses_NBIoT -https://github.com/Isaranu/Senses_wifi_esp32 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 https://github.com/ivanseidel/DueTimer https://github.com/ivanseidel/Gaussian https://github.com/ivanseidel/LinkedList +https://github.com/ijiki16/LiquidCrystal_I2C_STEM +https://github.com/J-Rios/minbasecli +https://github.com/J-Rios/mqtt_fuota_duino https://github.com/J-Rios/uTLGBotLib-arduino https://github.com/Jaapdedood/ArxRobot-Library +https://github.com/Jackal28/LMT87 https://github.com/Jackal28/MCP3304 https://github.com/jackrobotics/HONEYLemon -https://github.com/jackrobotics/iSYNC_BC95_Arduino https://github.com/jackrobotics/iSYNC +https://github.com/jackrobotics/iSYNC_BC95_Arduino https://github.com/Jacobllc/SDU_AGS https://github.com/jacobrosenthal/MergedStreams https://github.com/jaean123/DeadReckoning-library https://github.com/jaean123/SnappyXO-PreciseMovement-library +https://github.com/jaggzh/mini-ppm-info https://github.com/JAICHANGPARK/Arduino-Watch https://github.com/jakalada/Arduino-ADXL345 https://github.com/jakalada/Arduino-AM50288H @@ -1828,13 +3480,20 @@ https://github.com/jakalada/Arduino-S11059 https://github.com/jakalada/Arduino-S5851A https://github.com/jakalada/Arduino-S9706 https://github.com/jakerabid/WiFiManager +https://github.com/jakeread/osap-arduino +https://github.com/jakeread/mudlink +https://github.com/Jakkapan-a/TcBUTTON https://github.com/jalr/EE895 https://github.com/Jan-NiklasB/MH-Z14A-Library https://github.com/jancoow/BH1730-Library 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/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 @@ -1854,8 +3513,15 @@ 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 https://github.com/jaredpetersen/ghostlab42reboot https://github.com/jasiek/arduino-statsdclient https://github.com/jason-rietzke/SensorPlot_WebInterface @@ -1867,26 +3533,33 @@ https://github.com/javisank/LibLucesCiudad https://github.com/javisank/LibMiniSys https://github.com/javisank/LibSemaforo https://github.com/javisank/LibSemaforosCiudad +https://github.com/JayasinghePasan/Honeywell_SPI_FMA https://github.com/jbliesener/FlightSimOutputs https://github.com/jbliesener/FlightSimSwitches +https://github.com/jbtronics/ESP32Console https://github.com/JCardoen/ATmega32U4-Grove-Air-quality-sensor https://github.com/JChristensen/CurrentTransformer https://github.com/JChristensen/DS3232RTC https://github.com/JChristensen/JC_Button +https://github.com/JChristensen/JC_EEPROM +https://github.com/JChristensen/JC_Sunrise https://github.com/JChristensen/MCP79412RTC https://github.com/JChristensen/MCP9800 https://github.com/JChristensen/MCP9808 https://github.com/JChristensen/movingAvg https://github.com/JChristensen/Timezone https://github.com/JChristensen/tinySPI +https://github.com/jcomas/S8_UART https://github.com/jcubuntu/iBit_Arduino https://github.com/jcubuntu/IKB1_Arduino +https://github.com/jcubuntu/us82 https://github.com/JCWentzel/PolymorphicButtons https://github.com/jedp/PMSensor-HPMA115 https://github.com/jefersonla/ArduinoLang https://github.com/JeffShapiro/ArduinoLearningBoard-Lib https://github.com/JemRF/max7219 https://github.com/JenertsA/VCNL3040_Proximity_Sensor_Library +https://github.com/Jenifen/SerialSendBuffer https://github.com/jenscski/DoubleResetDetect https://github.com/jensh/CopyThreads https://github.com/jeremycole/AllSensors_DLHR @@ -1894,29 +3567,39 @@ https://github.com/jeremycole/AllSensors_DLV https://github.com/jeremycole/Temperature_LM75_Derived https://github.com/jeremycole/TI_TCA9548A https://github.com/jeremylindsayni/Bifrost.Arduino.Sensors.HCSR04 +https://github.com/Jeroen88/EasyOpenTherm https://github.com/jeroenvermeulen/JeVe_EasyOTA https://github.com/jfitter/MLX90614 +https://github.com/jfjlaros/array-helpers +https://github.com/jfjlaros/serialMux https://github.com/jfjlaros/simpleRPC +https://github.com/jfjlaros/textparser https://github.com/jgOhYeah/LCDGraph https://github.com/jgOhYeah/TunePlayer https://github.com/jgromes/RadioLib +https://github.com/jgvmonteiro/SerialBus https://github.com/JHershey69/DarkSkySevenDay https://github.com/jhershey69/MoonStruck https://github.com/JHershey69/OpenWeatherOneCall -https://github.com/JHershey69/weatherLocation-Library https://github.com/jhershey69/WiFiTri +https://github.com/JhoselinRam/gButton +https://github.com/jihoonkimtech/ClockForSeg_Lib https://github.com/jihoonkimtech/UltraSonic_Lib https://github.com/JimmySoftware/ESPert https://github.com/JiriBilek/WiFiSpi +https://github.com/jkingsman/Z80Mega https://github.com/jlusPrivat/SimpleHOTP https://github.com/jmderomedi/SavitzkyGolayFilter +https://github.com/jmerc77/Fast4ier https://github.com/jmparatte/jm_CPPM +https://github.com/jmparatte/jm_crc-ccitt https://github.com/jmparatte/jm_LCM2004A_I2C https://github.com/jmparatte/jm_LiquidCrystal_I2C https://github.com/jmparatte/jm_PCF8574 https://github.com/jmparatte/jm_Pin https://github.com/jmparatte/jm_Scheduler https://github.com/jmparatte/jm_Wire +https://github.com/jnthas/Improv-WiFi-Library https://github.com/jo-seph/SDS011_vers https://github.com/JoaoLopesF/ESP32MotorControl https://github.com/JoaoLopesF/RemoteDebug @@ -1928,8 +3611,25 @@ https://github.com/JoaquimFlavio/GuaraTeca_Menu https://github.com/JoaquimFlavio/GuaraTeca_OBR https://github.com/joba-1/Joba_Tsl2561 https://github.com/JobNoorman/PmodClsArduino +https://github.com/JoelJojoP/TempReader +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 https://github.com/Jomelo/LCDMenuLib @@ -1943,6 +3643,8 @@ https://github.com/jonnieZG/DFPlayerMini https://github.com/jonnieZG/EButton https://github.com/jonnieZG/EWMA https://github.com/jonnieZG/LinkedPointerList +https://github.com/jonnybergdahl/Arduino_JBLogger_Library +https://github.com/jonnybergdahl/Arduino_JBWopr_Library https://github.com/joonazan/nina-fast-bluetooth https://github.com/jordancrubin/ballvalve https://github.com/jordancrubin/sprinkler-system @@ -1950,26 +3652,39 @@ https://github.com/jordancrubin/watermeter https://github.com/jorgemvc/MotoMamaLib https://github.com/jorgemvc/S4ALib https://github.com/Jorropo/ds3231 +https://github.com/joseguerra3000/AD74xx https://github.com/josejuansanchez/NanoPlayBoard-Arduino-Library https://github.com/joshnishikawa/Flicker https://github.com/joshnishikawa/MIDIcontroller https://github.com/joshua-8/Derivs_Limiter https://github.com/joshua-8/ESP32_easy_wifi_data https://github.com/joshua-8/JMotor +https://github.com/joshua-8/TMC5072 +https://github.com/joshua-8/TMC7300 https://github.com/jostlowe/Pico-DMX +https://github.com/JoulePhi/Escon-Library https://github.com/joysfera/arduino-tasker https://github.com/jpb10/SolarCalculator/ +https://github.com/jpconstantineau/BlueMicro_Engine_Arduino_Library +https://github.com/jpconstantineau/BlueMicro_Examples_Arduino_Library +https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library +https://github.com/jpconstantineau/BlueMicro_nRF52_Arduino_Library +https://github.com/jpconstantineau/BlueMicro_RP2040_Arduino_Library.git +https://github.com/jpconstantineau/BlueMicro_SAMD_Arduino_Library +https://github.com/jpiat/PIOSpi https://github.com/jpraus/arduino-opentherm https://github.com/jrcape/ADSWeather https://github.com/jrullan/neotimer https://github.com/jrullan/StateMachine https://github.com/JRVeale/function-fsm +https://github.com/JSC-electronics/acdu-support-library https://github.com/JSC-electronics/Adeon https://github.com/JSC-electronics/ObjectButton 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 @@ -1977,10 +3692,21 @@ https://github.com/jspark311/Arduino-SX8634 https://github.com/jspark311/CppPotpourri https://github.com/jspark311/ManuvrDrivers https://github.com/jspayneco/Debugger +https://github.com/jsware/able-buttons +https://github.com/Judiviga/ROBLEX +https://github.com/Jueff/FireplaceMLX +https://github.com/Jueff/InfraredMLX +https://github.com/Jueff/SoftwareSerialTX https://github.com/Juerd/ESP-WiFiSettings +https://github.com/juliusbaechle/MicroQt https://github.com/JulStrat/LibYxml +https://github.com/JulStrat/uCDB +https://github.com/junior-robotics-club/JRCCARLIB https://github.com/junwha0511/LiquidCrystal_I2C_Hangul https://github.com/just-oblivious/arduino-ibustrx +https://github.com/justcallmekoko/SwitchLib +https://github.com/Justin-Pl/PCA9685_LED_DRIVER +https://github.com/Justin-Pl/PCA9698 https://github.com/justplaysoftware/EduShield2 https://github.com/JVKran/Forced-BME280 https://github.com/JVKran/OneTime-BH1750 @@ -1990,8 +3716,16 @@ https://github.com/jwhiddon/EDB https://github.com/jwrw/ESP_EEPROM https://github.com/jwrw/Executive https://github.com/kaaproject/kaa-arduino-sdk +https://github.com/kaiaai/arduino_pid_timed +https://github.com/kaiaai/LDS +https://github.com/kaiaai/micro_ros_arduino_kaiaai +https://github.com/Kaist-ICLab/KAIST_IoTDataScience +https://github.com/kamilpajak/VirtualTherm +https://github.com/karol-brejna-i/RemoteDebug +https://github.com/Kastara-Digital-Technology/Kadita https://github.com/kbernario/PaunaStepper https://github.com/kchemorion/MBEDSpeech +https://github.com/kcl93/fusb302_arduino https://github.com/kcl93/muCom https://github.com/kcl93/Tasks https://github.com/kcl93/VT100 @@ -1999,14 +3733,77 @@ https://github.com/kd8bxp/micro-Maqueen-Arduino-Library https://github.com/kd8bxp/TheTroll https://github.com/kd8bxp/Word100 https://github.com/kdhooper/arduino-CheapLCD +https://github.com/Kei0208/SUSHI-IO-EXP https://github.com/keigan-motor/Arduino-I2C-KM1 https://github.com/keimochizuki/cgnuino +https://github.com/kermite-org/KermiteCore_Arduino +https://github.com/kermite-org/keyboard_peripheral_modules +https://github.com/kevinlutzer/Arduino-PM1006K/ +https://github.com/KevinMiller77/TwoWayESP https://github.com/kevinstadler/TCS34725AutoGain https://github.com/keyro90/AFArray +https://github.com/khoih-prog/AsyncDNSServer_ESP32_ENC +https://github.com/khoih-prog/AsyncDNSServer_ESP32_Ethernet +https://github.com/khoih-prog/AsyncDNSServer_ESP32_W5500 +https://github.com/khoih-prog/AsyncDNSServer_ESP32_W6100 +https://github.com/khoih-prog/AsyncDNSServer_RP2040W https://github.com/khoih-prog/AsyncDNSServer_STM32 +https://github.com/khoih-prog/AsyncDNSServer_Teensy41 +https://github.com/khoih-prog/AsyncDNSServer_WT32_ETH01 +https://github.com/khoih-prog/AsyncESP32_ENC_Manager +https://github.com/khoih-prog/AsyncESP32_Ethernet_Manager +https://github.com/khoih-prog/AsyncESP32_SC_ENC_Manager +https://github.com/khoih-prog/AsyncESP32_SC_Ethernet_Manager +https://github.com/khoih-prog/AsyncESP32_SC_W5500_Manager +https://github.com/khoih-prog/AsyncESP32_SC_W6100_Manager +https://github.com/khoih-prog/AsyncESP32_W5500_Manager +https://github.com/khoih-prog/AsyncESP32_W6100_Manager +https://github.com/khoih-prog/AsyncESP8266_ENC_Manager +https://github.com/khoih-prog/AsyncESP8266_Ethernet_Manager +https://github.com/khoih-prog/AsyncESP8266_W5100_Manager +https://github.com/khoih-prog/AsyncESP8266_W5500_Manager +https://github.com/khoih-prog/AsyncHTTPRequest_ESP32_Ethernet https://github.com/khoih-prog/AsyncHTTPRequest_Generic +https://github.com/khoih-prog/AsyncHTTPRequest_RP2040W +https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41 +https://github.com/khoih-prog/AsyncHTTPSRequest_ESP32_Ethernet +https://github.com/khoih-prog/AsyncHTTPSRequest_Generic +https://github.com/khoih-prog/AsyncMQTT_ESP32 +https://github.com/khoih-prog/AsyncMQTT_Generic +https://github.com/khoih-prog/AsyncTCP_RP2040W +https://github.com/khoih-prog/AsyncTCP_SSL +https://github.com/khoih-prog/AsyncUdp_ESP32_ENC +https://github.com/khoih-prog/AsyncUDP_ESP32_Ethernet +https://github.com/khoih-prog/AsyncUDP_ESP32_SC_ENC +https://github.com/khoih-prog/AsyncUDP_ESP32_SC_Ethernet +https://github.com/khoih-prog/AsyncUDP_ESP32_SC_W5500 +https://github.com/khoih-prog/AsyncUDP_ESP32_SC_W6100 +https://github.com/khoih-prog/AsyncUDP_ESP32_W5500 +https://github.com/khoih-prog/AsyncUDP_ESP32_W6100 +https://github.com/khoih-prog/AsyncUDP_Ethernet +https://github.com/khoih-prog/AsyncUDP_RP2040W https://github.com/khoih-prog/AsyncUDP_STM32 +https://github.com/khoih-prog/AsyncUDP_Teensy41 +https://github.com/khoih-prog/AsyncUDP_WT32_ETH01 +https://github.com/khoih-prog/AsyncWebServer_ESP32_ENC +https://github.com/khoih-prog/AsyncWebServer_ESP32_SC_ENC +https://github.com/khoih-prog/AsyncWebServer_ESP32_SC_W5500 +https://github.com/khoih-prog/AsyncWebServer_ESP32_SC_W6100 +https://github.com/khoih-prog/AsyncWebServer_ESP32_W5500 +https://github.com/khoih-prog/AsyncWebServer_ESP32_W6100 +https://github.com/khoih-prog/AsyncWebServer_Ethernet +https://github.com/khoih-prog/AsyncWebServer_RP2040W https://github.com/khoih-prog/AsyncWebServer_STM32 +https://github.com/khoih-prog/AsyncWebServer_Teensy41 +https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01 +https://github.com/khoih-prog/AsyncWT32_ETH01_Manager +https://github.com/khoih-prog/ATmega_Slow_PWM +https://github.com/khoih-prog/ATmega_TimerInterrupt +https://github.com/khoih-prog/ATtiny_PWM +https://github.com/khoih-prog/ATtiny_Slow_PWM +https://github.com/khoih-prog/ATtiny_TimerInterrupt +https://github.com/khoih-prog/AVR_PWM +https://github.com/khoih-prog/AVR_Slow_PWM https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF https://github.com/khoih-prog/Blynk_Async_GSM_Manager https://github.com/khoih-prog/Blynk_Async_WM @@ -2018,82 +3815,186 @@ https://github.com/khoih-prog/BlynkESP32_BT_WF https://github.com/khoih-prog/BlynkEthernet_STM32_WM https://github.com/khoih-prog/BlynkEthernet_WM https://github.com/khoih-prog/BlynkGSM_Manager +https://github.com/khoih-prog/ContinuousStepper_Generic https://github.com/khoih-prog/DDNS_Generic https://github.com/khoih-prog/DoubleResetDetector_Generic https://github.com/khoih-prog/DS323x_Generic +https://github.com/khoih-prog/Dx_PWM +https://github.com/khoih-prog/Dx_Slow_PWM +https://github.com/khoih-prog/Dx_TimerInterrupt https://github.com/khoih-prog/ESP_AT_Lib https://github.com/khoih-prog/ESP_AT_WiFiManager https://github.com/khoih-prog/ESP_AT_WM_Lite https://github.com/khoih-prog/ESP_DoubleResetDetector https://github.com/khoih-prog/ESP_MultiResetDetector -https://github.com/khoih-prog/ESP_WiFiManager_Lite https://github.com/khoih-prog/ESP_WiFiManager +https://github.com/khoih-prog/ESP_WiFiManager_Lite +https://github.com/khoih-prog/ESP32_C3_ISR_Servo +https://github.com/khoih-prog/ESP32_C3_TimerInterrupt +https://github.com/khoih-prog/ESP32_ENC_Manager +https://github.com/khoih-prog/ESP32_Ethernet_Manager +https://github.com/khoih-prog/ESP32_FastPWM https://github.com/khoih-prog/ESP32_ISR_Servo +https://github.com/khoih-prog/ESP32_New_ISR_Servo +https://github.com/khoih-prog/ESP32_New_TimerInterrupt +https://github.com/khoih-prog/ESP32_PWM +https://github.com/khoih-prog/ESP32_S2_ISR_Servo https://github.com/khoih-prog/ESP32_S2_TimerInterrupt +https://github.com/khoih-prog/ESP32_SC_ENC_Manager +https://github.com/khoih-prog/ESP32_SC_Ethernet_Manager +https://github.com/khoih-prog/ESP32_SC_W5500_Manager +https://github.com/khoih-prog/ESP32_SC_W6100_Manager +https://github.com/khoih-prog/ESP32_W5500_Manager +https://github.com/khoih-prog/ESP32_W6100_Manager https://github.com/khoih-prog/ESP32TimerInterrupt https://github.com/khoih-prog/ESP8266_AT_WebServer +https://github.com/khoih-prog/ESP8266_ENC_Manager +https://github.com/khoih-prog/ESP8266_Ethernet_Manager https://github.com/khoih-prog/ESP8266_ISR_Servo +https://github.com/khoih-prog/ESP8266_PWM +https://github.com/khoih-prog/ESP8266_W5100_Manager +https://github.com/khoih-prog/ESP8266_W5500_Manager https://github.com/khoih-prog/ESP8266TimerInterrupt -https://github.com/khoih-prog/ESPAsync_WiFiManager_Lite https://github.com/khoih-prog/ESPAsync_WiFiManager -https://github.com/khoih-prog/Ethernet_Manager_STM32 +https://github.com/khoih-prog/ESPAsync_WiFiManager_Lite +https://github.com/khoih-prog/Ethernet_Generic https://github.com/khoih-prog/Ethernet_Manager -https://github.com/khoih-prog/EthernetWebServer_SSL_STM32 +https://github.com/khoih-prog/Ethernet_Manager_Portenta_H7 +https://github.com/khoih-prog/Ethernet_Manager_STM32 +https://github.com/khoih-prog/EthernetWebServer https://github.com/khoih-prog/EthernetWebServer_SSL +https://github.com/khoih-prog/EthernetWebServer_SSL_STM32 https://github.com/khoih-prog/EthernetWebServer_STM32 -https://github.com/khoih-prog/EthernetWebServer +https://github.com/khoih-prog/FlashStorage_RTL8720 https://github.com/khoih-prog/FlashStorage_SAMD https://github.com/khoih-prog/FlashStorage_STM32 +https://github.com/khoih-prog/FlashStorage_STM32F1 +https://github.com/khoih-prog/FS_Nano33BLE +https://github.com/khoih-prog/FTP_Server_Teensy41 +https://github.com/khoih-prog/FTPClient_Generic https://github.com/khoih-prog/functional-vlpp https://github.com/khoih-prog/GSM_Generic +https://github.com/khoih-prog/HTTPS_Server_Generic +https://github.com/khoih-prog/LittleFS_Mbed_RP2040 +https://github.com/khoih-prog/LittleFS_Portenta_H7 +https://github.com/khoih-prog/MBED_RP2040_PWM +https://github.com/khoih-prog/MBED_RP2040_Slow_PWM +https://github.com/khoih-prog/MBED_RPI_PICO_TimerInterrupt https://github.com/khoih-prog/MDNS_Generic +https://github.com/khoih-prog/megaAVR_PWM +https://github.com/khoih-prog/megaAVR_Slow_PWM https://github.com/khoih-prog/megaAVR_TimerInterrupt +https://github.com/khoih-prog/MQTTPubSubClient_Generic https://github.com/khoih-prog/MultiResetDetector_Generic https://github.com/khoih-prog/MySQL_MariaDB_Generic https://github.com/khoih-prog/NB_Generic +https://github.com/khoih-prog/NRF52_ISR_Servo +https://github.com/khoih-prog/nRF52_MBED_PWM +https://github.com/khoih-prog/nRF52_MBED_Slow_PWM https://github.com/khoih-prog/NRF52_MBED_TimerInterrupt +https://github.com/khoih-prog/nRF52_PWM +https://github.com/khoih-prog/nRF52_Slow_PWM https://github.com/khoih-prog/NRF52_TimerInterrupt https://github.com/khoih-prog/NTPClient_Generic +https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest +https://github.com/khoih-prog/Portenta_H7_AsyncTCP +https://github.com/khoih-prog/Portenta_H7_AsyncUDP +https://github.com/khoih-prog/Portenta_H7_AsyncWebServer +https://github.com/khoih-prog/Portenta_H7_ISR_Servo +https://github.com/khoih-prog/Portenta_H7_PWM +https://github.com/khoih-prog/Portenta_H7_Slow_PWM +https://github.com/khoih-prog/Portenta_H7_TimerInterrupt +https://github.com/khoih-prog/React_Generic +https://github.com/khoih-prog/RP2040_ISR_Servo +https://github.com/khoih-prog/RP2040_PWM +https://github.com/khoih-prog/RP2040_RTC +https://github.com/khoih-prog/RP2040_SD +https://github.com/khoih-prog/RP2040_Slow_PWM https://github.com/khoih-prog/RPI_PICO_TimerInterrupt +https://github.com/khoih-prog/RTL8720_RTC +https://github.com/khoih-prog/RTL8720_TimerInterrupt +https://github.com/khoih-prog/SAMD_ISR_Servo +https://github.com/khoih-prog/SAMD_PWM +https://github.com/khoih-prog/SAMD_Slow_PWM https://github.com/khoih-prog/SAMD_TimerInterrupt +https://github.com/khoih-prog/SAMDUE_PWM +https://github.com/khoih-prog/SAMDUE_Slow_PWM https://github.com/khoih-prog/SAMDUE_TimerInterrupt https://github.com/khoih-prog/SinricPro_Generic https://github.com/khoih-prog/SmallProjects +https://github.com/khoih-prog/STM32_ISR_Servo +https://github.com/khoih-prog/STM32_PWM +https://github.com/khoih-prog/STM32_Slow_PWM https://github.com/khoih-prog/STM32_TimerInterrupt +https://github.com/khoih-prog/Teensy_PWM +https://github.com/khoih-prog/Teensy_Slow_PWM https://github.com/khoih-prog/Teensy_TimerInterrupt -https://github.com/khoih-prog/TimerInterrupt_Generic +https://github.com/khoih-prog/Teensy41_AsyncTCP https://github.com/khoih-prog/TimerInterrupt +https://github.com/khoih-prog/TimerInterrupt_Generic https://github.com/khoih-prog/Timezone_Generic https://github.com/khoih-prog/UPnP_Generic +https://github.com/khoih-prog/WebServer_ESP32_ENC +https://github.com/khoih-prog/WebServer_ESP32_SC_ENC +https://github.com/khoih-prog/WebServer_ESP32_SC_W5500 +https://github.com/khoih-prog/WebServer_ESP32_SC_W6100 +https://github.com/khoih-prog/WebServer_ESP32_W5500 +https://github.com/khoih-prog/WebServer_ESP32_W6100 +https://github.com/khoih-prog/WebServer_WT32_ETH01 https://github.com/khoih-prog/WebSockets_Generic https://github.com/khoih-prog/WebSockets2_Generic +https://github.com/khoih-prog/WiFi101_Generic https://github.com/khoih-prog/WiFiManager_Generic_Lite https://github.com/khoih-prog/WiFiManager_NINA_Lite +https://github.com/khoih-prog/WiFiManager_Portenta_H7_Lite +https://github.com/khoih-prog/WiFiManager_RP2040W +https://github.com/khoih-prog/WiFiManager_RP2040W_Lite +https://github.com/khoih-prog/WiFiManager_RTL8720 +https://github.com/khoih-prog/WiFiMulti_Generic https://github.com/khoih-prog/WiFiNINA_Generic https://github.com/khoih-prog/WiFiWebServer +https://github.com/khoih-prog/WiFiWebServer_RTL8720 https://github.com/khoih-prog/WIOTerminal_WiFiManager +https://github.com/Khuuxuanngoc/DHT-sensor-library https://github.com/kigster/back-seat-driver https://github.com/kike-canaries/canairio_sensorlib +https://github.com/kikuchan/pngle https://github.com/killer0071234/esp_abus +https://github.com/kimballa/button-debounce +https://github.com/kimballa/PyArduinoDebug +https://github.com/kimballa/tiny-collections +https://github.com/kimballa/uiwidgets +https://github.com/kimble4/CrossMgrLapCounter https://github.com/Kineis/ArduinoKim +https://github.com/Kineis/KIM_Arduino_Library https://github.com/kingmathers313/FHEM_Arduino https://github.com/kiryanenko/SimpleTimer https://github.com/kiryanenko/TTP229 https://github.com/kitesurfer1404/WS2812FX +https://github.com/kj7rrv/Telegraph https://github.com/kk4das/IC746CAT https://github.com/kk6axq/BraccioV2 https://github.com/kkloesener/MFRC522_I2C https://github.com/klenov/advancedSerial https://github.com/klenov/keyboardButton https://github.com/kmackay/micro-ecc +https://github.com/kmilo17pet/qlibs-cpp +https://github.com/kmilo17pet/QuarkTS-cpp https://github.com/kmpelectronics/KMP_MCP23S08 +https://github.com/kmpelectronics/KMP_RS485 https://github.com/kniwwelino/KniwwelinoLib https://github.com/knolleary/pubsubclient +https://github.com/KOEGlike/AsyncButton +https://github.com/koendv/Arduino-RTTStream +https://github.com/koendv/CheckDS18B20 +https://github.com/koendv/cst816t +https://github.com/koendv/FloatToAscii +https://github.com/koendv/RTTStream https://github.com/koendv/SerialWireOutput https://github.com/koendv/STM32duino-Semihosting -https://github.com/koendv/Arduino-RTTStream +https://github.com/kolabse/KolabseCarsCan https://github.com/Kongduino/LoRandom -https://github.com/KONNEKTING/KonnektingDeviceLibrary +https://github.com/konikoni428/BM64_arduino https://github.com/kontakt/MAX30100 https://github.com/KorneliusThomas/PIDcontrollersModularProfessional https://github.com/kosme/arduinoFFT @@ -2101,24 +4002,38 @@ https://github.com/kosme/fix_fft 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 https://github.com/KravitzLabDevices/FED3_library https://github.com/KravitzLabDevices/FORCE_library +https://github.com/KravitzLabDevices/FORCE2 https://github.com/kremio/DLPacket +https://github.com/krishna-v/Pulser 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/morse-encoder +https://github.com/ktsai69/Vishay_VCNL4200 https://github.com/KuangLei/fDigitsSegtPin https://github.com/kulbhushanchand/MCP4251 +https://github.com/KurtE/ILI9341_t3n.git +https://github.com/KurtE/MemoryHexDump.git +https://github.com/KurtE/UNOR4WMatrixGFX.git https://github.com/KwangryeolPark/GLCD_QY_12864BG https://github.com/kyuseok-oh/ArduinoThingsOfValueSDK https://github.com/LabAixBidouille/RobotDuLAB-arduino-library https://github.com/labfruits/mcp3208 +https://github.com/lacamera/ESPAsyncWebServer https://github.com/LaCocoRoco/DataVisualizer +https://github.com/lansium-dev/lansium-arduino +https://github.com/laserir/NL2Client https://github.com/Laserlicht/MaerklinMotorola https://github.com/lasselukkari/aWOT +https://github.com/latchdevel/RemoteSensor https://github.com/lathoub/Arduino-AppleMidi-Library https://github.com/lathoub/Arduino-BLE-MIDI https://github.com/lathoub/Arduino-ipMIDI @@ -2130,27 +4045,35 @@ https://github.com/layadcircuits/Saleng-GSM https://github.com/lbernstone/plotutils https://github.com/lbernstone/rrdtool_ESP32 https://github.com/lbernstone/UncleRus-drivers +https://github.com/lbirkert/asyncino https://github.com/lbussy/LCBUrl https://github.com/lbussy/mDNSResolver https://github.com/ldab/ESP32_FTPClient https://github.com/ldab/KXTJ3-1057 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 https://github.com/lebuni/ZACwire-Library https://github.com/lecsDragos/Arduino_SegmentDisplay_CD4511B https://github.com/lectrobox/KeypadShield https://github.com/lectrobox/PCJoy +https://github.com/LeeLeahy2/SdCardServer https://github.com/LeemanGeophysicalLLC/FIR_Filter_Arduino_Library https://github.com/LeemanGeophysicalLLC/LGLearningShieldLibrary +https://github.com/lefmarna/NintendoSwitchControlLibrary https://github.com/leftCoast/LC_baseTools https://github.com/leftCoast/LC_lilParser https://github.com/leftCoast/LC_neoPixel +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 @@ -2161,6 +4084,7 @@ https://github.com/LennartHennigs/ESPRotary https://github.com/LennartHennigs/ESPTelnet https://github.com/LennartHennigs/M5FacesEncoder https://github.com/LennartHennigs/OTAWrapper +https://github.com/LennartHennigs/SimpleFSM https://github.com/lenvm/SercomSPISlave https://github.com/leomil72/analogComp https://github.com/leomil72/leOS @@ -2169,11 +4093,26 @@ https://github.com/leomil72/looper https://github.com/leomil72/pRNG https://github.com/leomil72/secTimer https://github.com/leomil72/swRTC +https://github.com/leonlucc/arduino-tencent-cloud-iot-sdk +https://github.com/leonlucc/WZ +https://github.com/lequan81/vn_lunar https://github.com/leresteux/BOF +https://github.com/leresteux/DunogeonENG +https://github.com/leresteux/DunogeonFR https://github.com/lesterlo/Notched-Shaft-Encoder +https://github.com/levkovigor/ADF7023 +https://github.com/levkovigor/DDSM115 +https://github.com/levkovigor/FastInterruptEncoder +https://github.com/levkovigor/GT811 +https://github.com/levkovigor/LTR390 +https://github.com/levkovigor/MMC34160PJ +https://github.com/levkovigor/ppposclient https://github.com/levosos/Controlino https://github.com/levosos/Midier https://github.com/lewapek/sds-dust-sensors-arduino-library +https://github.com/lewisxhe/AXP202X_Library +https://github.com/lewisxhe/SensorLib +https://github.com/lewisxhe/XPowersLib https://github.com/lexus2k/lcdgfx https://github.com/lexus2k/ssd1306 https://github.com/lexus2k/tinyhal @@ -2182,6 +4121,7 @@ https://github.com/leyap/LispIO https://github.com/leyap/LispMotor https://github.com/lfhohmann/MMA8653 https://github.com/libEmGUI/emGUI-arduino +https://github.com/libnapc/libnapc-arduino-releases https://github.com/lifely-cc/agruminoLemon-libraries https://github.com/Liksu/7SegmentsSnake https://github.com/LILCMU/GoGoBoard-Arduino @@ -2199,8 +4139,17 @@ https://github.com/LinnesLab/LMP91000 https://github.com/LinnesLab/MAX541X https://github.com/LinnesLab/TrigDef https://github.com/LinnesLab/tTestTable +https://github.com/LionBit-STEM-Board/lionBit-STEM-library https://github.com/lionrocker/better-joystick +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 +https://github.com/lnbits/arduino-nostr/ https://github.com/lnlp/EasyLed https://github.com/Locoduino/Accessories https://github.com/Locoduino/Commanders @@ -2217,7 +4166,12 @@ 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 +https://github.com/loopj/open-rts https://github.com/LoRaFi/LoRaFi https://github.com/lorol/LITTLEFS https://github.com/Losant/losant-mqtt-arduino @@ -2227,14 +4181,23 @@ https://github.com/lovyan03/M5Stack_TreeView https://github.com/LowPowerLab/LowPower https://github.com/LowPowerLab/RFM69 https://github.com/LowPowerLab/SPIFlash +https://github.com/lozziboy/arduino-serial-variable-table +https://github.com/lpaseen/ht16k33 https://github.com/lpasqualis/TimedBlink https://github.com/lperez31/youmadeit-arduino https://github.com/LSatan/SmartRC-CC1101-Driver-Lib +https://github.com/lu1aat/hellschreiberlib +https://github.com/lualtek/cubecell-device-lib +https://github.com/lualtek/ttn-device-lib +https://github.com/lualtek/wisblock-io-extension-mini https://github.com/lucadentella/ArduinoLib_CEClient https://github.com/lucadentella/SPIFFS_ImageReader https://github.com/lucadentella/TOTP-Arduino https://github.com/lucadentella/WiThrottle https://github.com/lucalas/StreamlabsArduinoAlerts +https://github.com/lucas-inacio/DS1624 +https://github.com/lucas-inacio/TinyLiquidCrystal_I2C +https://github.com/lucasdietrich/AVRTOS https://github.com/lucasromeiro/DropboxManager https://github.com/lucasso/ModbusRTUSlaveArduino https://github.com/luciansabo/GP2YDustSensor @@ -2283,44 +4246,147 @@ https://github.com/luisllamasbinaburo/Arduino-TimeoutTask https://github.com/luisllamasbinaburo/Arduino-TriangleSolver https://github.com/luisllamasbinaburo/ArduinoLinq https://github.com/LuisMiCa/IRsmallDecoder +https://github.com/luni64/AttachInterruptEx +https://github.com/luni64/CallbackHelper +https://github.com/luni64/EncoderTool +https://github.com/luni64/IntervalTimerEx +https://github.com/luni64/staticFunctional https://github.com/luni64/TeensyStep https://github.com/luni64/TeensyTimerTool +https://github.com/luoluomeng/HUSB238Driver +https://github.com/luoluomeng/NST1001Driver +https://github.com/LuSeKa/HX711_light https://github.com/LUXROBO/MODI-Arduino https://github.com/lvgl/lv_arduino https://github.com/lvgl/lv_examples https://github.com/lvgl/lvgl https://github.com/Lynxmotion/AlternativeLSS +https://github.com/Lynxmotion/Arduino-PPM 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 https://github.com/M-Reimer/USBStatus +https://github.com/m-shintaro/RTC_RX8025NB https://github.com/M-tech-Creations/NoDelay +https://github.com/m1cr0lab-espboy/ESPboy https://github.com/m2m-solutions/M2M_Boards https://github.com/m2m-solutions/M2M_LM75A https://github.com/m2m-solutions/M2M_Logger https://github.com/m2m-solutions/M2M_MiraOne https://github.com/m2m-solutions/M2M_Quectel https://github.com/m2m-solutions/M2M_TLV -https://github.com/m5stack/M5-CoreInk +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 +https://github.com/m5stack/M5Capsule +https://github.com/m5stack/M5Cardputer +https://github.com/m5stack/M5Core-Ink https://github.com/m5stack/M5Core2 +https://github.com/m5stack/M5CoreS3 +https://github.com/m5stack/M5Dial https://github.com/m5stack/M5EPD +https://github.com/m5stack/M5Family https://github.com/m5stack/M5GFX +https://github.com/m5stack/M5Hat-8Servos +https://github.com/m5stack/M5Hat-JoyC +https://github.com/m5stack/M5Module-2Relay-13.2 +https://github.com/m5stack/M5Module-4IN8OUT +https://github.com/m5stack/M5Module-4Relay +https://github.com/m5stack/M5Module-GNSS +https://github.com/m5stack/M5Module-GRBL-13.2 +https://github.com/m5stack/M5Module-LAN-13.2 +https://github.com/m5stack/M5Module-Stepmotor https://github.com/m5stack/M5Stack -https://github.com/m5stack/M5StickC-Plus +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 +https://github.com/m5stack/M5Unit-CatM +https://github.com/m5stack/M5Unit-DDS +https://github.com/m5stack/M5Unit-DigiClock +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 +https://github.com/m5stack/M5Unit-Thermal2 +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 https://github.com/MacroYau/RV-1805-C3-Arduino-Library https://github.com/MacroYau/RV-3028-C7-Arduino-Library https://github.com/madhephaestus/BNO055SimplePacketComs +https://github.com/madhephaestus/EasyBNO055_ESP https://github.com/madhephaestus/ESP32AnalogRead https://github.com/madhephaestus/ESP32Encoder https://github.com/madhephaestus/ESP32Servo https://github.com/madhephaestus/Esp32SimplePacketComs +https://github.com/madhephaestus/ESP32WebRemoteControl https://github.com/madhephaestus/Esp32WifiManager https://github.com/madhephaestus/EspWii https://github.com/madhephaestus/lx16a-servo @@ -2332,15 +4398,20 @@ https://github.com/madhephaestus/WiiChuck https://github.com/madleech/Button https://github.com/madleech/TurnoutPulser https://github.com/MadTooler/Gobbit_Line_Commander +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 https://github.com/MajicDesigns/MD_AD9833 https://github.com/MajicDesigns/MD_CirQueue https://github.com/MajicDesigns/MD_Cubo https://github.com/MajicDesigns/MD_DS1307 https://github.com/MajicDesigns/MD_DS3231 +https://github.com/MajicDesigns/MD_HX711 https://github.com/MajicDesigns/MD_KeySwitch https://github.com/MajicDesigns/MD_LM335A https://github.com/MajicDesigns/MD_MAX72XX @@ -2348,18 +4419,27 @@ https://github.com/MajicDesigns/MD_MAXPanel https://github.com/MajicDesigns/MD_Menu https://github.com/MajicDesigns/MD_MIDIFile https://github.com/MajicDesigns/MD_MSGEQ7 +https://github.com/MajicDesigns/MD_OnePin https://github.com/MajicDesigns/MD_Parola https://github.com/MajicDesigns/MD_PWM https://github.com/MajicDesigns/MD_REncoder https://github.com/MajicDesigns/MD_SmartCar +https://github.com/MajicDesigns/MD_SmartCar2 https://github.com/MajicDesigns/MD_SN76489 +https://github.com/MajicDesigns/MD_Stepper https://github.com/MajicDesigns/MD_TCS230 https://github.com/MajicDesigns/MD_TicTacToe https://github.com/MajicDesigns/MD_UISwitch https://github.com/MajicDesigns/MD_YM2413 https://github.com/MajicDesigns/MD_YX5300 +https://github.com/Makeblock-official/Makeblock-Libraries +https://github.com/MakerLabCRI/Max86141 +https://github.com/makerlabvn/Makerlabvn_I2C_Motor_Driver +https://github.com/makerlabvn/Makerlabvn_SimpleMotor +https://github.com/makerlabvn/Waterproof_Ultrasonic https://github.com/makers-upv/ORC https://github.com/MakerSpaceLeiden/rfid +https://github.com/makerspaceleiden/tee-log https://github.com/MakerVision/ArduinoLibrary https://github.com/Makuna/AnalogKeypad https://github.com/Makuna/DFMiniMp3 @@ -2367,29 +4447,44 @@ https://github.com/Makuna/NeoPixelBus https://github.com/Makuna/Rfid134 https://github.com/Makuna/Rtc https://github.com/Makuna/Task +https://github.com/malisipi/joystick_5pin +https://github.com/malokhvii-eduard/arduino-bme280 +https://github.com/malokhvii-eduard/arduino-mhz19 https://github.com/maly/edushield -https://github.com/MannyPeterson/HeliOS +https://github.com/Mancheron/TFT_eSPI_Widgets +https://github.com/mandulaj/PZEM-004T-v30/ +https://github.com/manuelbl/usb-pd-arduino https://github.com/maquinitas/MaquinitasParams https://github.com/maquinitas/MaquinitasRitmos +https://github.com/marbalon/Eccel-C1 https://github.com/marccolemont/CRMX_TimoTwo +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 https://github.com/marcmerlin/FastLED_NeoMatrix https://github.com/marcmerlin/FastLED_RPIRGBPanel_GFX https://github.com/marcmerlin/FastLED_SPITFT_GFX https://github.com/marcmerlin/FastLED_TFTWrapper_GFX https://github.com/marcmerlin/Framebuffer_GFX https://github.com/marcmerlin/SmartMatrix_GFX -https://github.com/marcoschwartz/aREST_UI +https://github.com/marcobrianza/ClickButton https://github.com/marcoschwartz/aREST -https://github.com/marcoschwartz/LiquidCrystal_I2C +https://github.com/marcoschwartz/aREST_UI +https://github.com/johnrickman/LiquidCrystal_I2C https://github.com/marecl/HPDL1414 https://github.com/marecl/settingsManager https://github.com/marhar/ArrbotMonitor https://github.com/markszabo/IRremoteESP8266 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 @@ -2397,10 +4492,13 @@ https://github.com/MartinL1/BMP280_DEV https://github.com/MartinL1/BMP388_DEV https://github.com/MartinL1/I2C_DMAC https://github.com/Martinsos/arduino-lib-hc-sr04 +https://github.com/martinvichnal/AntiDelay https://github.com/MartinXBcn/ESP32Logger https://github.com/MartyMacGyver/ESP32-Digital-RGB-LED-Drivers https://github.com/marvinroger/arduino-shutters https://github.com/Marzogh/SPIMemory +https://github.com/masaad01/SPIFFS_Shell +https://github.com/masadaruma/TB67H450-arduino-library https://github.com/Master811129/MicroTone https://github.com/Master811129/PF https://github.com/matafonoff/J1850-VPW-Arduino-Transceiver-Library @@ -2408,14 +4506,45 @@ 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/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 +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/MycilaPZEM +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 +https://github.com/Matrix-Robotics/MatrixColorSensor +https://github.com/Matrix-Robotics/MatrixController +https://github.com/Matrix-Robotics/MatrixLaserSensor +https://github.com/Matrix-Robotics/MatrixMotionSensor +https://github.com/Matrix-Robotics/MatrixMotorExtension +https://github.com/Matrix-Robotics/MatrixServoExtension +https://github.com/Matrix-Robotics/MatrixUltrasonicSensor +https://github.com/Matrixchung/SFM-V1.7 https://github.com/MatrixOrbital/MatrixOrbitalGTTClientLibrary https://github.com/matsujirushi/MjGrove https://github.com/mattairtech/EEPROM_CAT25 @@ -2424,18 +4553,30 @@ https://github.com/MattFryer/Board_Identify https://github.com/MattFryer/Smoothed https://github.com/matthew-dickson-epic/TimeInterrupt https://github.com/matthewg42/Mutila +https://github.com/matthewturner/Eventually +https://github.com/matthewturner/EventuallyCommand +https://github.com/matthewturner/EventuallyStateMachine +https://github.com/matthias-bs/ATC_MiThermometer +https://github.com/matthias-bs/BresserWeatherSensorReceiver +https://github.com/matthieuvigne/RMDX-Arduino +https://github.com/matthieuvigne/STS_servos https://github.com/matthijskooijman/arduino-lmic https://github.com/mattshepcar/SmoothLed https://github.com/matusm/Arduino-DataSeriesPod https://github.com/matusm/Arduino-E2 https://github.com/max22-/ESP32-BLE-MIDI https://github.com/maximebohrer/SimpleKeypad +https://github.com/MaximeLBG/CV7OEMFR +https://github.com/maximemoreillon/iot-kernel +https://github.com/MaximIntegrated/AnalogRTCLibrary https://github.com/MaximIntegrated/MAX31328-Arduino-Driver https://github.com/MaximIntegrated/MaxEssentialToolkit +https://github.com/maxint-rd/TM16xx +https://github.com/maxmacstn/ESP32-Canon-BLE-Remote https://github.com/maxpautsch/mPower https://github.com/maxpautsch/SvgParser +https://github.com/maxpromer/PCA9557-arduino https://github.com/maykon/ButtonDebounce -https://github.com/masadaruma/TB67H450-arduino-library https://github.com/mbratch/TaskJockey https://github.com/mcauser/i2cdetect https://github.com/mcci-catena/arduino-lmic @@ -2445,26 +4586,44 @@ https://github.com/mcci-catena/Catena-mcciadk https://github.com/mcci-catena/MCCI_Catena_SCD30 https://github.com/mcci-catena/MCCI_Catena_SDP https://github.com/mcci-catena/MCCI_FRAM_I2C +https://github.com/mcci-catena/mcci_ltr_329als +https://github.com/mcci-catena/MCCI-Catena-PMS7003 +https://github.com/mcci-catena/MCCI-Catena-SHT3x +https://github.com/mcci-catena/SoftwareSerial 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 https://github.com/mcxiaoke/ESPDateTime -https://github.com/mdxmase/asip-additional-services +https://github.com/MdelgadoL83/TapatioElectronics +https://github.com/mdkendall/ThingpingsLib https://github.com/mdxmase/asip +https://github.com/mdxmase/asip-additional-services +https://github.com/MeArm/MeArm-Arduino +https://github.com/mechasolution/Mecha_VoiceRecognitionModule +https://github.com/mechasolution/Mecha_Rfinder10D https://github.com/MeelonUsk/tb9051ftg-motor-carrier-arduino https://github.com/meeo/meeo-arduino https://github.com/meganetaaan/m5stack-avatar +https://github.com/Megunolink/FileManager https://github.com/Megunolink/MLP https://github.com/mehtajainam/VCNL36687 https://github.com/mehyaa/esp8266-iot-helper https://github.com/melopero/Melopero_AMG8833_Arduino_Library https://github.com/melopero/Melopero_APDS-9960_Arduino_Library https://github.com/melopero/Melopero_BME280_Arduino_Library +https://github.com/melopero/Melopero_Cookie_RP2040_Arduino_Library https://github.com/melopero/Melopero_LSM9DS1_Arduino_Library https://github.com/melopero/Melopero_RV-3028_Arduino_Library https://github.com/melopero/Melopero_SAM-M8Q_Arduino_Library https://github.com/melopero/Melopero_UBX https://github.com/melopero/Melopero_VL53L1X_Arduino_Library +https://github.com/men100/MJScore +https://github.com/mentalfl0w/DLLN3X_zigbee_mesh_module_library https://github.com/MERG-DEV/CBUS https://github.com/MERG-DEV/CBUS2515 https://github.com/MERG-DEV/CBUSBUZZER @@ -2473,35 +4632,57 @@ https://github.com/MERG-DEV/CBUSLED https://github.com/MERG-DEV/CBUSswitch https://github.com/merlinschumacher/Basecamp 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 https://github.com/mhorimoto/ELT_S300_HOLLY +https://github.com/mhorimoto/M304-lib https://github.com/mhoseini967/AdvancedSevenSegment https://github.com/MHotchin/BalBoaSpa https://github.com/MHotchin/RLEBitmap https://github.com/MHotchin/Waveshare4InchTftShield https://github.com/MHotchin/YAAWS +https://github.com/miathedev/KomootBLEConnect https://github.com/michaelgranz/UniversalTimer https://github.com/MichaelJonker/HardwareSerialRS485 https://github.com/michaelkamprath/ShiftRegisterLEDMatrixLib https://github.com/michaelkrzyzaniak/Dynamixel_Servo +https://github.com/michaellee8/TimedState https://github.com/MichaelUray/muTimer https://github.com/michalmonday/CSV-Parser-for-Arduino +https://github.com/michpro/XTEA-Cipher https://github.com/Mickaelh51/Arduino-Oregon-Library https://github.com/mickey9801/BlinkControl https://github.com/mickey9801/ButtonFever https://github.com/mickey9801/MultiButtons https://github.com/micro-bitcoin/uBitcoin https://github.com/MicroBahner/MobaTools +https://github.com/MicroBeaut/ADebouncer +https://github.com/MicroBeaut/Finite-State +https://github.com/MicroBeaut/Generic-Queue +https://github.com/MicroBeaut/MAX6816 +https://github.com/MicroBeaut/MicroBeaut +https://github.com/MicroBeaut/MicroBeaut-TCone +https://github.com/MicroBeaut/RepeatButton https://github.com/Microbot-it/Microbot-Motor-Shield +https://github.com/microchip-pic-avr-solutions/avr-iot-cellular-arduino-library +https://github.com/microchip-pic-avr-solutions/mcp9808_arduino_driver +https://github.com/microchip-pic-avr-solutions/veml3328_arduino_driver +https://github.com/MicrochipTech/RNBD451_BLE_ARDUINO_LIBRARY https://github.com/MicroGamerConsole/MicroGamer-Arduino +https://github.com/micromouseonline/BasicEncoder +https://github.com/microsoft/ArduinoHidForWindows +https://github.com/midilab/uClock https://github.com/miguel5612/Arduino-ThermistorLibrary https://github.com/miguel5612/MQSensorsLib https://github.com/miguelbalboa/rfid -https://github.com/OSSLibraries/Arduino_MFRC522v2 https://github.com/MiguelPynto/ShiftDisplay https://github.com/mihai-dinculescu/arduino-gravity-soil-moisture-sensor +https://github.com/mikalhart/ESP32-OTA-Pull https://github.com/mikalhart/IridiumSBD https://github.com/mikalhart/TinyGPSPlus https://github.com/mike-matera/ArduinoSTL @@ -2513,13 +4694,34 @@ https://github.com/milador/EasyMorse 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-Common https://github.com/MINDS-i/MINDS-i-Drone -https://github.com/MINDS-i/MINDS-i +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/GD3300 +https://github.com/misaproyectil/Sprite_Serial_Control +https://github.com/mission-mangal/PositionControl +https://github.com/mission-mangal/SpeedControl https://github.com/Mixiaoxiao/Arduino-HomeKit-ESP8266 +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 +https://github.com/mkogax/GG_for_Arduino +https://github.com/ML-VPN/OtD_Library +https://github.com/mlesniew/PicoMQTT https://github.com/MLXXXp/Arduboy2 https://github.com/MLXXXp/ArduboyTones +https://github.com/Mm1KEE/SimpleFilter +https://github.com/Mm1KEE/SmoothTouch https://github.com/mmmarinho/umirobot-arduino https://github.com/mmojana/pca9634-arduino-library https://github.com/mmuratyilmaz/KAI-Pro @@ -2527,6 +4729,10 @@ https://github.com/mmurdoch/arduinounit https://github.com/mobergmann/Simple_HCSR04 https://github.com/mobinrg/JMAFoundation https://github.com/mobinrg/JMASPComm +https://github.com/mobizt/ESP_SSLClient +https://github.com/mobizt/ESP-Google-Forms-Client +https://github.com/mobizt/ESP-Google-Sheet-Client +https://github.com/mobizt/ESP-Line-Notify https://github.com/mobizt/ESP-Mail-Client https://github.com/mobizt/ESP32-Mail-Client https://github.com/mobizt/Firebase-Arduino-WiFi101 @@ -2535,10 +4741,16 @@ 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 https://github.com/Mokolea/InputDebounce +https://github.com/MOMIZICH/Shift_Register_Controller +https://github.com/monkcs/devuino https://github.com/monolithicpower/MagAlpha-Arduino-Library +https://github.com/monolithicpower/MagVector-Arduino-Library +https://github.com/monowireless/mwings_arduino https://github.com/monoxit/RTC4543lib https://github.com/MonsieurV/ArduinoPocketGeiger https://github.com/monstrenyatko/ArduinoMqtt @@ -2550,50 +4762,72 @@ https://github.com/morcibacsi/esp32_rmt_midea_ir_tx https://github.com/morcibacsi/esp32_rmt_van_rx https://github.com/moretticb/Neurona https://github.com/morsisko/EasyStringStream +https://github.com/Mosiwi/Mosiwi-basic-learning-kit +https://github.com/movetones/Gravitone_ArduinoLibrary https://github.com/mozilla-iot/webthing-arduino https://github.com/mpflaga/Arduino_Library-vs1053_for_SdFat https://github.com/mprograms/QMC5883LCompass 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 https://github.com/mrmx/AW9523B +https://github.com/MRROBO28/GSheet32 https://github.com/mrrwa/LocoNet https://github.com/mrrwa/NceCabBus https://github.com/mrrwa/NmraDcc https://github.com/MrYsLab/FirmataExpress +https://github.com/MrYsLab/NanoConnectHcSr04 +https://github.com/MrYsLab/NeoPixelConnect https://github.com/MrYsLab/Telemetrix4Arduino +https://github.com/MrYsLab/Telemetrix4Connect2040 +https://github.com/MrYsLab/Telemetrix4Esp32 https://github.com/MrYsLab/Telemetrix4Esp8266 +https://github.com/MrYsLab/Telemetrix4RpiPicoW +https://github.com/MrYsLab/Telemetrix4UnoR4 https://github.com/ms-iot/virtual-shields-arduino +https://github.com/MSZ98/CallMyFunction +https://github.com/MSZ98/pcf8574 +https://github.com/MSZ98/serial-readline https://github.com/mt-elektrik/MteCore +https://github.com/mtsurumaki/PwmSin https://github.com/mudmin/ESPCanary +https://github.com/musicplayer0/solar2lunar https://github.com/muwerk/mufonts https://github.com/muwerk/munet https://github.com/muwerk/mupplet-core https://github.com/muwerk/mupplet-display +https://github.com/muwerk/mupplet-sensor https://github.com/muwerk/muwerk https://github.com/muwerk/ustd +https://github.com/MYBOTIC/DurianBlynkESP8266 https://github.com/myconstellation/constellation-arduino https://github.com/myDevicesIoT/Cayenne-MQTT-Arduino https://github.com/mysensors/MySensors +https://github.com/Mysues/ERO https://github.com/N-Magi/CliTerminal +https://github.com/n-wach/camino https://github.com/n0m1/Comp6DOF_n0m1 https://github.com/n0m1/MMA8453_n0m1 https://github.com/n0m1/Sleep_n0m1 +https://github.com/N4rcissist/OtaHelper +https://github.com/nacademyth/RoboFi https://github.com/NachtRaveVL/BY8X01-16P-Arduino https://github.com/NachtRaveVL/Lepton-FLiR-Arduino https://github.com/NachtRaveVL/PCA9685-Arduino +https://github.com/NachtRaveVL/Simple-Hydroponics-Arduino +https://github.com/NachtRaveVL/Simple-SolarTracker-Arduino https://github.com/NADA-ELECTRONICS/AS-289R2 https://github.com/nadavmatalon/ADS1110 https://github.com/nadavmatalon/MCP3221 https://github.com/nadavmatalon/MCP9802 -https://github.com/nadavmatalon/PCA9536_RGB https://github.com/nadavmatalon/PCA9536 +https://github.com/nadavmatalon/PCA9536_RGB https://github.com/nadavmatalon/WatchDog https://github.com/Naguissa/uCRC16BPBLib https://github.com/Naguissa/uCRC16Lib @@ -2605,44 +4839,98 @@ 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 +https://github.com/NanitRobot/NanitLib https://github.com/Nargott/birdhouse_sdk https://github.com/narinaviation/iBotX +https://github.com/Narwhalsss360/NColor +https://github.com/Narwhalsss360/NDefs +https://github.com/Narwhalsss360/NEvents +https://github.com/Narwhalsss360/NFuncs +https://github.com/Narwhalsss360/NHC-SR04 +https://github.com/Narwhalsss360/NPush +https://github.com/Narwhalsss360/NRotary +https://github.com/Narwhalsss360/NTimer +https://github.com/naszly/Arduino-StaticSerialCommands https://github.com/NatanBiesmans/Arduino-POST-HTTP-Parser https://github.com/natchaipon/SnailwalkPromptpay https://github.com/NathanBak/astra_esp8266 https://github.com/nathanRamaNoodles/MusicWithoutDelay-LIbrary https://github.com/nathanRamaNoodles/SensorToButton https://github.com/nathanRamaNoodles/TinkerController-Library +https://github.com/natnqweb/EventOS +https://github.com/natnqweb/EventSystem +https://github.com/natnqweb/Functional_button +https://github.com/natnqweb/Mapf +https://github.com/natnqweb/Motor_PID +https://github.com/natnqweb/SD_card_logger +https://github.com/natnqweb/Simpletimer +https://github.com/natnqweb/SkyMap +https://github.com/nbourre/Makeblock-Libraries +https://github.com/ncmreynolds/ld2410 +https://github.com/ncmreynolds/pimoroniTrackball https://github.com/ncmreynolds/retroTerm +https://github.com/ncmreynolds/TapCode +https://github.com/ncmreynolds/wordwrap +https://github.com/ndomx/MCP23017-Arduino-Library +https://github.com/ndroid/HC06_AT_CommandCenter https://github.com/NeiroNx/RTCLib +https://github.com/neittien0110/siotcore_sdk_v2 +https://github.com/neittien0110/Soict_IoT_Labs +https://github.com/NeMaksym/Arduino-EasySevenSeg https://github.com/neman-io/Bleeper https://github.com/NeoCat/Arduno-Twitter-library https://github.com/neonode-inc/zforce-arduino +https://github.com/neosarchizo/am1002-uart +https://github.com/neosarchizo/am1008w_k_i2c +https://github.com/neosarchizo/cb-hcho-v4 https://github.com/neosarchizo/cm1106_i2c https://github.com/neosarchizo/pm2008_i2c +https://github.com/neosarchizo/ps_33d_i2c https://github.com/neosarchizo/TinyGPS https://github.com/Neosegment/Arduino https://github.com/neptune2/simpleDSTadjust https://github.com/neroroxxx/BMC https://github.com/neroroxxx/RoxMux https://github.com/netguy204/OakOLED +https://github.com/netnspace/CanSatNeXT_GNSS +https://github.com/netnspace/CanSatNeXT_library/ https://github.com/netpieio/microgear-esp8266-arduino https://github.com/netpieio/microgear-nbiot-arduino https://github.com/neu-rah/ArduinoMenu https://github.com/neu-rah/Dump -https://github.com/newdigate/teensy-variable-playback -https://github.com/newdigate/teensy-sample-flashloader -https://github.com/newdigate/teensy-polyphony +https://github.com/NeuraiProject/uNeurai https://github.com/newdigate/teensy-audio-launch-ctrl -https://github.com/NHBSystems/NHB_AD7794 +https://github.com/newdigate/teensy-polyphony +https://github.com/newdigate/teensy-sample-flashloader +https://github.com/newdigate/teensy-variable-playback +https://github.com/NewhavenDisplay/NHD-Character-LCD-Library +https://github.com/nfc-rfid-reader-sdk/MFRC522_PN512 +https://github.com/nfhktwrbq/LedMatrix8x8.git +https://github.com/nguyenmanhthao996tn/Kionix_KX023 https://github.com/NHBSystems/NHB_AD7124 +https://github.com/NHBSystems/NHB_AD7794 +https://github.com/nhluan37/SerialMP3 +https://github.com/nhz2/XYZgeomag https://github.com/niccokunzmann/UC121902-TNARX-A https://github.com/NicholasBerryman/GenericMotorDriver https://github.com/NicholasBerryman/USBControllerLib https://github.com/nickgammon/Regexp +https://github.com/Nickjgniklu/em4095 +https://github.com/Nickjgniklu/ESP_TF +https://github.com/Nickjgniklu/ESPMagicHome https://github.com/nickkoza/animately https://github.com/NickvanTholen/pca9634-lib https://github.com/NickvanTholen/Youless-Arduino-lib +https://github.com/nicogou/IoT-Surf-Checker https://github.com/NicoHood/AnalogTouch https://github.com/NicoHood/HID https://github.com/NicoHood/IRLremote @@ -2650,43 +4938,85 @@ https://github.com/NicoHood/MSGEQ7 https://github.com/NicoHood/Nintendo https://github.com/NicoHood/PinChangeInterrupt https://github.com/NicoHood/RCLSwitch +https://github.com/NicolasNewman/ArgParse +https://github.com/nihinihikun/E220-900T22S-JP_Arduino +https://github.com/Nilon123456789/Firmetix-Library +https://github.com/Nilon123456789/Receiver https://github.com/NilsMinor/TMP117-Arduino +https://github.com/Ninagawa123/Meridian https://github.com/nitins11/Nokia5110LCD https://github.com/NitrofMtl/ACI_10K_an https://github.com/NitrofMtl/ADC_Sampler https://github.com/NitrofMtl/ADC_SEQR https://github.com/NitrofMtl/CurrentSwitch +https://github.com/NitrofMtl/DUE_ADC_Oversampler https://github.com/NitrofMtl/DUE_Schmitt https://github.com/NitrofMtl/MicroTuple https://github.com/NitrofMtl/RTD10k-temp-sensor https://github.com/NitrofMtl/TimeOut https://github.com/NitrofMtl/weeklyAlarm +https://github.com/nitz/Cie1931 https://github.com/njh/EtherCard https://github.com/njh/EtherSia https://github.com/nkaaf/Arduino-List +https://github.com/nkaaf/Arduino-Regression +https://github.com/nkaaf/Arduino-Signature https://github.com/Nkawu/TFT_22_ILI9225 https://github.com/nkolban/ESP32_BLE_Arduino +https://github.com/noah1510/generic-Arduino https://github.com/noah1510/LedController +https://github.com/NodeppOficial/nodepp-arduino +https://github.com/Nolven/ftp32 +https://github.com/noranraskin/MT6701 https://github.com/NordicAlliance/arduino-tgui https://github.com/NorthernWidget/DS3231 https://github.com/NorthernWidget/Logger https://github.com/Nospampls/SchedTask https://github.com/Nouryas-Tech/Nouryas-Advanced-Line-Follower-Array +https://github.com/npuckett/arduinoAnimation https://github.com/Nredor/ESPNexUpload 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 +https://github.com/nthnn/SIM900 +https://github.com/nthnn/TCS3200 +https://github.com/NuclearPhoenixx/Arduino-Pico-Analog-Correction/ +https://github.com/NuclearPhoenixx/MQ135 +https://github.com/NuclearPhoenixx/SimpleShell https://github.com/nullboundary/AtTouch https://github.com/nullboundary/SST25VF +https://github.com/nullptr-deref/ms5540c-library https://github.com/nuMectro/nuMROBO +https://github.com/nusabot-iot/dashboard-arduino +https://github.com/nusabot-iot/NusabotSimpleTimer https://github.com/NVSL/gadgetron-software-libraries +https://github.com/nw2s/nw2s_portenta_SSD1322 +https://github.com/nwb99/MCP4151 https://github.com/nyampass/ArduinoESPAT-Library https://github.com/nyampass/HaLake-M5Stack-Library https://github.com/nyampass/HaLakeKit-Library https://github.com/nyampass/HaLakeKitFirst-Library +https://github.com/nyannkov/Psgino https://github.com/Nyanyan/FastCapacitiveSensor +https://github.com/obdevel/ACAN2040 +https://github.com/obdevel/CBUSACAN2040 https://github.com/oberonspace/krypton +https://github.com/Obsttube/AES_CMAC +https://github.com/Obsttube/CryptoAES_CBC +https://github.com/Obsttube/MFRC522_NTAG424DNA +https://github.com/ochiengotieno304/africastalking-esp8266 https://github.com/ocrdu/Arduino_SAMD21_Audio_Player https://github.com/ocrdu/Arduino_SAMD21_turbo_PWM +https://github.com/odriverobotics/ODriveArduino https://github.com/ofekp/TinyUPnP https://github.com/offcircuit/Batflow https://github.com/offcircuit/Charset @@ -2698,6 +5028,16 @@ https://github.com/offcircuit/Nextion https://github.com/offcircuit/RTCDS1307 https://github.com/offcircuit/SDHT https://github.com/offcircuit/SHCSR04 +https://github.com/oggysaud245/haversine +https://github.com/ogneyar/RussianText_u8g +https://github.com/oguzkaganyaglioglu/PLCustomDevicesLibrary +https://github.com/ohad32/FireBase32 +https://github.com/ojx/GigaAudio +https://github.com/ojx/HTTPed +https://github.com/okalachev/mavlink-arduino +https://github.com/okalachev/flixperiph +https://github.com/OkbaO/KS0108_LCD +https://github.com/OkbaO/ST7565_LCD https://github.com/OladapoAjala/Drive https://github.com/OladapoAjala/Robot https://github.com/olikraus/U8g2_Arduino @@ -2706,22 +5046,26 @@ https://github.com/olikraus/U8glib_Arduino https://github.com/olikraus/Ucglib_Arduino https://github.com/olkal/HX711_ADC https://github.com/olkal/LCD_ST7032 +https://github.com/ollprogram/SimpleShiftRegisterController https://github.com/OM222O/ADS1219 https://github.com/onelife/Arduino_RT-Thread -https://github.com/onelife/Arduino_wolfssl https://github.com/onelife/RTT-CMSIS-OS https://github.com/onelife/RTT-Ethernet https://github.com/onelife/RTT-GUI https://github.com/onelife/RTT-QRCode https://github.com/OnionIoT/Onion-Arduino-Library +https://github.com/Open-Acidification/TankController +https://github.com/Open-Agriculture/AgIsoStack-Arduino https://github.com/Open-Bionics/FingerLib https://github.com/OpenBCI/OpenBCI_32bit_Library https://github.com/OpenBCI/OpenBCI_32bit_SD https://github.com/OpenBCI/OpenBCI_Ganglion_Library https://github.com/OpenBCI/OpenBCI_Radios -https://github.com/OpenBCI/OpenBCI_Wifi_Master_Library 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 @@ -2737,18 +5081,29 @@ https://github.com/orbitalair/Rtc_Pcf8563 https://github.com/orgua/iLib https://github.com/orgua/OneWireHub https://github.com/oroca/OROCA-EduBot-Library +https://github.com/OSSLibraries/Arduino_MFRC522v2 https://github.com/ostaquet/Arduino-MQ131-driver https://github.com/ostaquet/Arduino-SIM800L-driver +https://github.com/osteele/Arduino_SerialRecord https://github.com/OtacilioN/Brasilino +https://github.com/otadrive/OTAdriveESP +https://github.com/OttoDIY/OttoDIYLib https://github.com/outofambit/easy-neopixels https://github.com/oxullo/Arduino-MAX30100 https://github.com/oxullo/Arduino-TCM2 https://github.com/ozhantr/DigitLedDisplay https://github.com/pa-pa/AskSinPP +https://github.com/pablo-sampaio/easy_mfrc522/ +https://github.com/pablomarquez76/AnalogWrite_ESP32 +https://github.com/pablomarquez76/ESP8266SAM_ES +https://github.com/pablomarquez76/PS4_Controller_Host +https://github.com/pacav69/NGFlasherLED https://github.com/pachonk/Sensor https://github.com/pacocatech/LedUtil +https://github.com/PaddyCo/StackmatTimer https://github.com/pagongamedev/PagonGameDev_GameLoop https://github.com/PalladinoMarco/AlignedJoystick +https://github.com/pangodream/ESP2SOTA https://github.com/Panjkrc/TCS3200_library https://github.com/panStamp/mma8652 https://github.com/panStamp/sram @@ -2757,14 +5112,17 @@ https://github.com/panStamp/thermistor https://github.com/Pantastisch/FixedPoint_LUT https://github.com/PaoloP74/extEEPROM https://github.com/Papabyte/Byteduino +https://github.com/paperdink/PaperdInk-Library https://github.com/Paraphraser/NodeRedTime https://github.com/ParsePlatform/Parse-SDK-Arduino https://github.com/pasko-zh/brzo_i2c https://github.com/patou01/HC-SR04 https://github.com/Patrick-Thomas/SixAxisRing https://github.com/Patrick-Thomas/Sparkpad-Arduino +https://github.com/patricklaf/SNMP https://github.com/PatternAgents/Haptic_DA7280 https://github.com/PatternAgents/Haptic_DRV2605 +https://github.com/PaulNTU/Wizibot_VescMotorController https://github.com/paulo-raca/Arduino_AsyncLiquidCrystal https://github.com/paulo-raca/ArduinoBufferedStreams https://github.com/paulo-raca/ArduinoLedDithering @@ -2798,17 +5156,32 @@ https://github.com/PaulStoffregen/TimerThree https://github.com/PaulStoffregen/Tlc5940 https://github.com/PaulStoffregen/XPT2046_Touchscreen https://github.com/pavelmc/FT857d +https://github.com/pazi88/STM32_CAN +https://github.com/PBernalPolo/HX710 +https://github.com/pchwalek/AirCommanderEntireControl +https://github.com/peanut-king-solution/PeanutKing_ArduinoShield https://github.com/peanut-king-solution/PeanutKing_Soccer +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 https://github.com/peterus/INA226Lib https://github.com/petruspierre/EasyHTTP https://github.com/pfeerick/elapsedMillis +https://github.com/pg-goose/MKRWiFiLed +https://github.com/Phambili-Tech/Newt_Display https://github.com/Pharap/FixedPointsArduino https://github.com/philbowles/esparto https://github.com/philippG777/HP03S https://github.com/philj404/SimpleSerialShell +https://github.com/philsilvers/mergCBUS https://github.com/phlpjo/MkrGsm1400IoT https://github.com/pholmes2012/Simple_FRAM_FileSystem https://github.com/photodude/DualVNH5019MotorShieldMod3 @@ -2816,13 +5189,52 @@ https://github.com/phpoc/arduino-Phpoc https://github.com/phpoc/arduino-PhpocExpansion https://github.com/PhracturedBlue/ESP8266MQTTMesh https://github.com/picodebr/PlugPiBlack +https://github.com/Picovoice/picovoice-arduino-ar +https://github.com/Picovoice/picovoice-arduino-de +https://github.com/Picovoice/picovoice-arduino-en +https://github.com/Picovoice/picovoice-arduino-es +https://github.com/Picovoice/picovoice-arduino-fa +https://github.com/Picovoice/picovoice-arduino-fr +https://github.com/Picovoice/picovoice-arduino-hi +https://github.com/Picovoice/picovoice-arduino-it +https://github.com/Picovoice/picovoice-arduino-ja +https://github.com/Picovoice/picovoice-arduino-ko +https://github.com/Picovoice/picovoice-arduino-nl +https://github.com/Picovoice/picovoice-arduino-pl +https://github.com/Picovoice/picovoice-arduino-pt +https://github.com/Picovoice/picovoice-arduino-ru +https://github.com/Picovoice/picovoice-arduino-sv +https://github.com/Picovoice/picovoice-arduino-vn +https://github.com/Picovoice/picovoice-arduino-zh +https://github.com/Picovoice/porcupine-arduino-ar +https://github.com/Picovoice/porcupine-arduino-de +https://github.com/Picovoice/porcupine-arduino-en +https://github.com/Picovoice/porcupine-arduino-es +https://github.com/Picovoice/porcupine-arduino-fa +https://github.com/Picovoice/porcupine-arduino-fr +https://github.com/Picovoice/porcupine-arduino-hi +https://github.com/Picovoice/porcupine-arduino-it +https://github.com/Picovoice/porcupine-arduino-ja +https://github.com/Picovoice/porcupine-arduino-ko +https://github.com/Picovoice/porcupine-arduino-nl +https://github.com/Picovoice/porcupine-arduino-pl +https://github.com/Picovoice/porcupine-arduino-pt +https://github.com/Picovoice/porcupine-arduino-ru +https://github.com/Picovoice/porcupine-arduino-sv +https://github.com/Picovoice/porcupine-arduino-vn +https://github.com/Picovoice/porcupine-arduino-zh +https://github.com/pierremolinaro/acan https://github.com/pierremolinaro/acan-esp32 +https://github.com/pierremolinaro/acan-stm32 https://github.com/pierremolinaro/acan-t4 -https://github.com/pierremolinaro/acan https://github.com/pierremolinaro/acan2515 https://github.com/pierremolinaro/acan2515Tiny https://github.com/pierremolinaro/acan2517 https://github.com/pierremolinaro/acan2517FD +https://github.com/pierremolinaro/acanfd-feather-m4-can +https://github.com/pierremolinaro/acanfd-stm32 +https://github.com/pierremolinaro/rp2040-charlieplexing +https://github.com/pikido-edutainment/CleanRTOS https://github.com/pilotak/Hysteresis https://github.com/pilotak/LPS35HW https://github.com/pilotak/MCP3X21 @@ -2831,37 +5243,65 @@ 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 https://github.com/pixetto/Pixetto +https://github.com/pixetto/PixettoLite +https://github.com/pk17r/PushButtonTaps https://github.com/pkerspe/ESP-FlexyStepper https://github.com/pkerspe/ESP-StepperMotor-Server https://github.com/pkoerber/SMA-SunnyBoy-Reader +https://github.com/pkyanam/ArduRoomba +https://github.com/plageoj/request-builder +https://github.com/plageoj/urlencode https://github.com/planetk/ArduinoFritzApi https://github.com/plapointe6/EspHtmlTemplateProcessor https://github.com/plapointe6/EspMQTTClient -https://github.com/plapointe6/HAMqttDevice https://github.com/plapointe6/EspSimpleRemoteUpdate https://github.com/plapointe6/EspSimpleWifiHandler +https://github.com/plapointe6/HAMqttDevice +https://github.com/plasmapper/adxl355-arduino https://github.com/plasticrake/OpcServer https://github.com/platisd/nokia-5110-lcd-library https://github.com/platisd/smartcar_shield +https://github.com/PlayingWithFusion/PwFusion_Data_Transfer +https://github.com/PlayingWithFusion/PwFusion_I2C_Buttons_Arduino_Library +https://github.com/PlayingWithFusion/PwFusion_I2C_Encoder_Arduino_Library +https://github.com/PlayingWithFusion/PwFusion_I2C_Joystick_Arduino_Library +https://github.com/PlayingWithFusion/PwFusion_I2C_Toggle_Arduino_Library +https://github.com/PlayingWithFusion/PWFusion_MAX31856 https://github.com/PlayingWithFusion/PWFusion_MAX31865 +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_Mcp2515 -https://github.com/PlayingWithFusion/PWFusion_MAX31856 +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 +https://github.com/pololu/drv8434s-arduino https://github.com/pololu/drv8835-motor-shield https://github.com/pololu/dual-g2-high-power-motor-shield https://github.com/pololu/dual-max14870-motor-shield @@ -2877,6 +5317,7 @@ https://github.com/pololu/lps-arduino https://github.com/pololu/lsm303-arduino https://github.com/pololu/lsm6-arduino https://github.com/pololu/maestro-arduino +https://github.com/pololu/motoron-arduino https://github.com/pololu/opt3101-arduino https://github.com/pololu/pololu-3pi-plus-32u4-arduino-library https://github.com/pololu/pololu-buzzer-arduino @@ -2898,26 +5339,36 @@ https://github.com/pololu/xyzrobot-servo-arduino https://github.com/pololu/zumo-32u4-arduino-library https://github.com/pololu/zumo-shield-arduino-library https://github.com/polygondoor/Pablo +https://github.com/ponoor/PI4IOE5V6416 https://github.com/ponoor/Ponoor_L6470_Library https://github.com/ponoor/Ponoor_PowerSTEP01_Library +https://github.com/PontusO/EspATMQTT https://github.com/porrey/EEPROM-Storage https://github.com/porrey/max1704x 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/Autopilot +https://github.com/PowerBroker2/ArduPID https://github.com/PowerBroker2/DFPlayerMini_Fast https://github.com/PowerBroker2/ELMduino https://github.com/PowerBroker2/FireTimer -https://github.com/PowerBroker2/NEO-6M_GPS +https://github.com/PowerBroker2/MotorController +https://github.com/PowerBroker2/MultivariateNormal 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/UniversalTransmitter https://github.com/pozyxLabs/Pozyx-Arduino-library https://github.com/ppedro74/Arduino-SerialCommands +https://github.com/PR-DC/PRDC_AD7193 +https://github.com/PR-DC/PRDC_AD7194 +https://github.com/PR-DC/PRDC_AD7797 +https://github.com/PR-DC/PRDC_FreePort +https://github.com/PR-DC/PRDC_RS485HD_STM32 +https://github.com/PR-DC/PRDC_ServoHT +https://github.com/PR-DC/PRDC_TMAESC https://github.com/prampec/arduino-pcimanager https://github.com/prampec/arduino-softtimer https://github.com/prampec/IotWebConf @@ -2941,6 +5392,7 @@ https://github.com/PribaNosati/mrm-ir-finder2 https://github.com/PribaNosati/mrm-ir-finder3 https://github.com/PribaNosati/mrm-lid-can-b https://github.com/PribaNosati/mrm-lid-can-b2 +https://github.com/PribaNosati/mrm-lid-d https://github.com/PribaNosati/mrm-lid1 https://github.com/PribaNosati/mrm-lid2 https://github.com/PribaNosati/mrm-mot2x50 @@ -2956,11 +5408,16 @@ https://github.com/PribaNosati/mrm-therm-b-can 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 +https://github.com/ProgrammingElectronicsAcademy/chatGPT-Arduino-library https://github.com/project-sparthan/sparthan-gforce https://github.com/project-sparthan/sparthan-module https://github.com/project-sparthan/sparthan-myo +https://github.com/ProjectoOfficial/Oscup https://github.com/PRosenb/DeepSleepScheduler https://github.com/PRosenb/EEPROMWearLevel https://github.com/PRosenb/SPIFFS_FilePrint @@ -2968,10 +5425,12 @@ https://github.com/Protocentral/Protocentral_ADS1220 https://github.com/Protocentral/ProtoCentral_ads1262 https://github.com/Protocentral/ProtoCentral_fdc1004_breakout https://github.com/Protocentral/protocentral_healthypi4_arduino +https://github.com/Protocentral/protocentral_max30001_arduino_library https://github.com/Protocentral/protocentral_max30003 https://github.com/Protocentral/Protocentral_MAX30205 https://github.com/Protocentral/protocentral_max86150_ecg_ppg https://github.com/Protocentral/protocentral_mlx90632_arduino +https://github.com/Protocentral/protocentral_tla20XX_arduino https://github.com/Protocentral/protocentral-ads1292r-arduino https://github.com/Protocentral/protocentral-ads1293-arduino https://github.com/Protocentral/protocentral-afe4490-arduino @@ -2983,6 +5442,9 @@ https://github.com/pstolarz/OneWireNg https://github.com/psychogenic/Chronos https://github.com/psychogenic/SerialUI https://github.com/PTS93/Stator +https://github.com/PTSolns/PTSolns_I2CBackpack +https://github.com/PTSolns/PTSolns_InterfaceShield +https://github.com/PTSolns/PTSolns_microWatt https://github.com/pu2clr/AKC695X https://github.com/pu2clr/bk108x https://github.com/pu2clr/KT0915 @@ -2992,6 +5454,9 @@ https://github.com/pu2clr/RDA5807 https://github.com/pu2clr/SI470X https://github.com/pu2clr/SI4735 https://github.com/pu2clr/SI4844 +https://github.com/PU2REO/PU2REO_AD9851 +https://github.com/PU2REO/PU2REO_Si570 +https://github.com/PU2REO/Si5351ArduinoLite https://github.com/pubnub/arduino https://github.com/PulseRain/M10ADC https://github.com/PulseRain/M10CODEC @@ -3018,7 +5483,19 @@ https://github.com/puuu/ESPiLight https://github.com/puuu/USIWire 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.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 @@ -3032,74 +5509,205 @@ https://github.com/r-downing/AutoPID https://github.com/r-downing/EasySSDP https://github.com/r-downing/PersWiFiManager https://github.com/r-downing/SPIFFSReadServer +https://github.com/r3mko/ZMPT101B https://github.com/r89m/Button https://github.com/r89m/CapacitiveButton https://github.com/r89m/MPR121Button https://github.com/r89m/PushButton +https://github.com/Rad-hi/MacroDebugger +https://github.com/Rad-hi/MyButton_Arduino +https://github.com/radariq/arduino-library https://github.com/rafaelnsantos/Relay https://github.com/rahulstva/Motor_RS -https://github.com/RAKWireless/RAK14001-NCP5623-Library -https://github.com/RAKWireless/RAK14002-CAP1293-Library +https://github.com/RAKWireless/RAK-ADS7830-Library https://github.com/RAKWireless/RAK-MQx-Library -https://github.com/RAKWireless/RAK13005-TLE7259-Library https://github.com/RAKWireless/RAK12010-VEML7700-Library -https://github.com/RAKWireless/RAK-ADS7830-Library -https://github.com/RAKWireless/RAKwireless_Storage -https://github.com/RAKWireless/RAK12035_SoilMoisture -https://github.com/RAKWireless/RAK13600-PN532 https://github.com/RAKWireless/RAK12019_LTR390 -https://github.com/RAKWireless/RAK14012-LED-Matrix https://github.com/RAKWireless/RAK12021-TCS37725 +https://github.com/RAKWireless/RAK12022-MAX31865 https://github.com/RAKWireless/RAK12025-I3G4250D +https://github.com/RAKWireless/RAK12027-D7S +https://github.com/RAKWireless/RAK12029-LDC1614 +https://github.com/RAKWireless/RAK12033-IIM42652 +https://github.com/RAKWireless/RAK12034-BMX160 +https://github.com/RAKWireless/RAK12035_SoilMoisture +https://github.com/RAKWireless/RAK12039-PMSA003I +https://github.com/RAKWireless/RAK12052-MLX90640 +https://github.com/RAKWireless/RAK13005-TLE7259-Library +https://github.com/RAKWireless/RAK13006-MCP2518 +https://github.com/RAKWireless/RAK13010-SDI12 +https://github.com/RAKWireless/RAK13600-PN532 +https://github.com/RAKWireless/RAK13800-W5100S +https://github.com/RAKWireless/RAK13801_UWB +https://github.com/RAKWireless/RAK14001-NCP5623-Library +https://github.com/RAKWireless/RAK14002-CAP1293-Library +https://github.com/RAKWireless/RAK14012-LED-Matrix +https://github.com/RAKWireless/RAK14014-FT6336U +https://github.com/RAKWireless/RAK15007-CY15B108QN +https://github.com/RAKWireless/RAK1500x-MB85RC +https://github.com/RAKWireless/RAK5814-ATECC608A +https://github.com/RAKWireless/RAKwireless_ADC_SGM58031_library +https://github.com/RAKWireless/RAKwireless_Storage +https://github.com/RAKWireless/RAKwireless-Audio-library https://github.com/ramonheras/Pixel-and-Play-Arduino-Library +https://github.com/randomouscrap98/arduboy_raycast +https://github.com/RaphaelStorch/Libraray-for-LTS01A---MAX31725 https://github.com/rapifireio/rapifire-arduino-mqtt -https://github.com/sdutek/sducar https://github.com/ravelab/JsonLogger +https://github.com/razvan-mocanu/LC709204F https://github.com/RB-ENantel/RC_ESC +https://github.com/RCmags/ADNS3080 +https://github.com/RCmags/basicCalculus +https://github.com/RCmags/basicMPU6050 +https://github.com/RCmags/imuFilter +https://github.com/RCmags/pulseInput +https://github.com/RCmags/ServoMotor +https://github.com/RCmags/vector_datatype https://github.com/RealTadango/FrSky +https://github.com/RecursiveError/omnicrystal https://github.com/red-scorp/LiquidCrystal_AIP31068 https://github.com/red-scorp/SoftSPIB https://github.com/RedBearLab/nRF8001 https://github.com/redkea/arduino-library +https://github.com/redPanther/CQRobotTDS https://github.com/ReefPOM/OSPOM +https://github.com/Reefwing-Software/MPU6x00 +https://github.com/Reefwing-Software/reefwing_timer.git +https://github.com/Reefwing-Software/Reefwing-AHRS.git +https://github.com/Reefwing-Software/Reefwing-Filter.git +https://github.com/Reefwing-Software/Reefwing-imuTypes +https://github.com/Reefwing-Software/Reefwing-LPS22HB.git +https://github.com/Reefwing-Software/Reefwing-LSM9DS1 +https://github.com/Reefwing-Software/Reefwing-Motorshield.git +https://github.com/Reefwing-Software/Reefwing-MPU6050 +https://github.com/Reefwing-Software/Reefwing-MSP.git +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_Fast +https://github.com/rei-vilo/PDLS_EXT3_Basic_Global +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_Large +https://github.com/PervasiveDisplays/Pervasive_BWRY_Medium +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 +https://github.com/remocons/iosignal-arduino +https://github.com/remocons/remocon-arduino +https://github.com/remocons/remote-signal-arduino https://github.com/remoteme/esp8266-OLED https://github.com/remoteme/RemoteMeArduinoLibrary https://github.com/remoteme/RemoteMeArduinoLibraryUtils https://github.com/RemoteXY/RemoteXY-Arduino-library +https://github.com/ReneRichterDE/ButtonMatrix +https://github.com/ress997/TinyGPSPlusPlus +https://github.com/retrospy/OPT4048 https://github.com/reven/Unistep2 +https://github.com/ReWire-LLC/rewire_max32664 https://github.com/RexMORE/MOREbot_Games https://github.com/RexMORE/MOREbot_Library 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/TTN_M5Stack +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/rui-huang-opt/MPC_ruih +https://github.com/ricardoquesada/bluepad32-arduino https://github.com/ricaun/ArduinoUniqueID https://github.com/ricaun/LoRaNow +https://github.com/richard26a/LED_Controls +https://github.com/richardsibanda/nonblockingtimer https://github.com/ricki-z/MMA7455 https://github.com/ricki-z/SDS011 https://github.com/ricmoo/QRCode https://github.com/ridencww/cww_MorseTx https://github.com/rileyjshaw/Seg16 +https://github.com/ripred/Bang +https://github.com/ripred/ButtonGestures +https://github.com/ripred/CompileTime +https://github.com/ripred/CPUTemp +https://github.com/ripred/CPUVolt +https://github.com/ripred/fANSI +https://github.com/ripred/MyKeywords +https://github.com/ripred/Profiler +https://github.com/ripred/Smooth +https://github.com/ripred/TomServo +https://github.com/riraosan/ESP32MSGraph +https://github.com/gpb01/R4SwRTC https://github.com/RiversEngineering/RiversEngineering https://github.com/rleddy/tinycmdtable +https://github.com/RLL-Blue-Dragon/OSS-EC_ABLIC_S-5813A_5814A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_ABLIC_S-58LM20A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_ABLIC_S-8110C_8120C_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_ADI_AD22100A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_ADI_AD22100K_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_ADI_AD22100S_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_ADI_AD22103K_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_MAXIM_MAX6605MXK_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_MAXIM_MAX6605MXKV_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_MAXIM_MAX6607IXK_MAX6608IUK_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_MAXIM_MAX6613MXK_MAX6613MXKV_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_MICROCHIP_MCP9700_MCP9700A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_MICROCHIP_MCP9701_MCP9701A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_MICROCHIP_TC1046_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_MICROCHIP_TC1047_TC1047A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_NXP_MPX5999D_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_NXP_MPXA4250A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_NXP_MPXH6115A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_NXP_MPXH6400A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_NXP_MPXHZ6250A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_ROHM_BD1020HFV_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_STM_STLM20DD9F_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_STM_STLM20W87F_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TDK_CHS-MSS_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TDK_CHS-UPS_UPR_UGS_UGR_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TI_LM35_LM35A_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TI_LM35C_LM35CA_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TI_LM35D_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TI_LM45B_LM45C_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TI_LM50B_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TI_LM50C_LM50-Q1_00000057 +https://github.com/RLL-Blue-Dragon/OSS-EC_TI_TMP9A00_00000057 https://github.com/rlogiacco/AnalogButtons https://github.com/rlogiacco/BatterySense https://github.com/rlogiacco/CircularBuffer https://github.com/rlogiacco/MicroDebug https://github.com/rlogiacco/PlotPlus https://github.com/rlogiacco/VoltageReference +https://github.com/rm5248/liblcc-arduino +https://github.com/rm5248/m95-eeprom-arduino +https://github.com/rneurink/LP50XX/ +https://github.com/rneurink/PCA9622 +https://github.com/rneurink/VL53L1X_ULD +https://github.com/rnrobles/esc-thermal-printer-ble +https://github.com/road-t/DM8BA10/ https://github.com/RoanBrand/ArduinoSerialToTCPBridgeClient https://github.com/robbie-remote/RESTClient +https://github.com/RobertByrnes/Emulation https://github.com/robertgallup/BobaBlox 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 https://github.com/RoboCore/SerialRelay https://github.com/robojay/_2020Bot_Library https://github.com/Robokishan/Arduino-Scheduler @@ -3111,42 +5719,94 @@ https://github.com/Robopoly/Robopoly_Linear_Camera https://github.com/Robopoly/Robopoly_PRismino https://github.com/RobotCing/Atmega328_IO https://github.com/RobotCing/Atmega32u4_IO -https://github.com/RobotCing/Atmega8_IO_basic https://github.com/RobotCing/Atmega8_IO -https://github.com/RobotCing/Attiny84_IO_basic +https://github.com/RobotCing/Atmega8_IO_basic https://github.com/RobotCing/Attiny84_IO -https://github.com/RobotCing/Attiny85_IO_basic +https://github.com/RobotCing/Attiny84_IO_basic https://github.com/RobotCing/Attiny85_IO +https://github.com/RobotCing/Attiny85_IO_basic +https://github.com/roboteach-es/escornabot-lib https://github.com/RoboTech-srl/EasyVR-Arduino https://github.com/Robotechnic/DigiKeyboardFr +https://github.com/RobotGrrl/PolylineArduino +https://github.com/Robotics-Competence-Center-Illertal-e-V/RocciBoard-Library https://github.com/RoboticsBrno/ArduinoLearningKitStarter-library https://github.com/RoboticsBrno/ServoESP32 https://github.com/ROBOTIS-GIT/Dynamixel2Arduino https://github.com/ROBOTIS-GIT/DynamixelShield https://github.com/ROBOTIS-GIT/ros2arduino +https://github.com/robotman2412/pax-graphics +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 https://github.com/RobTillaart/avrheap https://github.com/RobTillaart/BH1750FVI_RT https://github.com/RobTillaart/BitArray 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 @@ -3157,96 +5817,196 @@ 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/DAMM +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 https://github.com/RobTillaart/DHT12 https://github.com/RobTillaart/DHT20 https://github.com/RobTillaart/DHT2pin +https://github.com/RobTillaart/DHTINT https://github.com/RobTillaart/DHTlib https://github.com/RobTillaart/DHTNew 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_INT https://github.com/RobTillaart/DS18B20 +https://github.com/RobTillaart/DS18B20_INT +https://github.com/RobTillaart/DS2401 +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 +https://github.com/RobTillaart/FastShiftInOut https://github.com/RobTillaart/FastShiftOut https://github.com/RobTillaart/FastTrig https://github.com/RobTillaart/FLE +https://github.com/RobTillaart/Fletcher https://github.com/RobTillaart/float16 +https://github.com/RobTillaart/float16ext https://github.com/RobTillaart/Fraction https://github.com/RobTillaart/FRAM_I2C https://github.com/RobTillaart/FunctionGenerator https://github.com/RobTillaart/GAMMA +https://github.com/RobTillaart/Gauss +https://github.com/RobTillaart/geomath +https://github.com/RobTillaart/GST https://github.com/RobTillaart/GY521 +https://github.com/RobTillaart/HC4051 +https://github.com/RobTillaart/HC4052 +https://github.com/RobTillaart/HC4053 +https://github.com/RobTillaart/HC4067 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/Logic +https://github.com/RobTillaart/logicAnalyzer +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 +https://github.com/RobTillaart/LUHN +https://github.com/RobTillaart/M5ANGLE8 +https://github.com/RobTillaart/M5ROTATE8 https://github.com/RobTillaart/M62429 +https://github.com/RobTillaart/map2bits https://github.com/RobTillaart/map2colour +https://github.com/RobTillaart/MATRIX7219 +https://github.com/RobTillaart/MAX520 +https://github.com/RobTillaart/MAX14661 +https://github.com/RobTillaart/MAX31850 https://github.com/RobTillaart/MAX31855_RT https://github.com/RobTillaart/Max44007 https://github.com/RobTillaart/Max44009 +https://github.com/RobTillaart/MAX471_RT https://github.com/RobTillaart/MAX6675 https://github.com/RobTillaart/MCP_ADC https://github.com/RobTillaart/MCP_DAC +https://github.com/RobTillaart/MCP_POT 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 +https://github.com/RobTillaart/moduloMap https://github.com/RobTillaart/MS5611 https://github.com/RobTillaart/MS5611_SPI +https://github.com/RobTillaart/MS5837 +https://github.com/RobTillaart/MSP300 https://github.com/RobTillaart/MT8870 https://github.com/RobTillaart/MTP40C +https://github.com/RobTillaart/MTP40F https://github.com/RobTillaart/MultiMap 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 +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 https://github.com/RobTillaart/printHelpers https://github.com/RobTillaart/PrintSize https://github.com/RobTillaart/PrintString +https://github.com/RobTillaart/PT2314 +https://github.com/RobTillaart/PulseDivider https://github.com/RobTillaart/PulsePattern https://github.com/RobTillaart/RADAR +https://github.com/RobTillaart/RAIN https://github.com/RobTillaart/randomHelpers +https://github.com/RobTillaart/relativity +https://github.com/RobTillaart/RLCBuffer 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 @@ -3254,35 +6014,71 @@ https://github.com/RobTillaart/ShiftInSlow https://github.com/RobTillaart/ShiftOutSlow 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 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 +https://github.com/RobTillaart/TLC5917 +https://github.com/RobTillaart/TLC5947 +https://github.com/RobTillaart/TLCBuffer https://github.com/RobTillaart/TM1637_RT +https://github.com/RobTillaart/TOPMAX +https://github.com/RobTillaart/TOPMIN 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 https://github.com/RobTillaart/weight +https://github.com/RobTillaart/X9C10X https://github.com/RobTillaart/XMLWriter +https://github.com/RocketLauncherCDMX/RocketLauncher_RobbusKidsy https://github.com/rocketscream/Low-Power https://github.com/rocketscream/RocketScream_LowPowerAVRZero https://github.com/rocketscream/RocketScream_RTCAVRZero https://github.com/RockoonTechnologies/PadComLib https://github.com/RoCorbera/BlueVGA +https://github.com/RodolfoPrieto/MCP3208 https://github.com/rodrigodornelles/3bc-lang https://github.com/rodrigodornelles/arduino-tone-pitch +https://github.com/roelandkluit/Free-ESPatHome https://github.com/Roger-random/ESP_8_BIT_composite +https://github.com/rogerjames99/json2asw-arduino https://github.com/RogueRobotics/RogueMP3 https://github.com/RogueRobotics/RogueSD https://github.com/RogueRobotics/SmartDial +https://github.com/rohirto/ultimate_esp_mqtt_ubidots https://github.com/Rokenbok/ROKduino https://github.com/Rom3oDelta7/LED3 https://github.com/Rom3oDelta7/MCP320X https://github.com/romkey/IFTTTWebhook +https://github.com/ronbentley1/eazy-Shift-Registers +https://github.com/ronbentley1/eazy-switch-library https://github.com/roncapat/MultiLcd https://github.com/rootfrogs/Arduino-GetInTouch-library https://github.com/ropg/ezTime @@ -3290,30 +6086,58 @@ https://github.com/ropg/M5ez https://github.com/Rotario/arduinoCurveFitting https://github.com/Rotario/noveltyDetection https://github.com/roverwing/RoverWingLibrary +https://github.com/rppicomidi/EZ_USB_MIDI_HOST +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/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 +https://github.com/ryraki/FXPS7xxx_Arduino +https://github.com/ryraki/MPL3115A2_Arduino +https://github.com/ryraki/NMH1000_Arduino https://github.com/s-light/slight_ButtonInput https://github.com/s-light/slight_DebugMenu +https://github.com/s-light/slight_easing https://github.com/s-light/slight_Fade https://github.com/s-light/slight_FDC1004 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 +https://github.com/sachinmunasinghe/FirebaseRealtime https://github.com/sadika9/TFTLCD-SPFD5408 https://github.com/sadr0b0t/arduino-timer-api https://github.com/Saeterncj/MX1508 https://github.com/Saeterncj/QuadratureEncoder https://github.com/saghonfly/SimpleEspNowConnection +https://github.com/sakabug/Bugtton +https://github.com/sakura-internet/sipf-arduino-client https://github.com/sakuraio/SakuraIOArduino +https://github.com/SALITIBI/WMS7202DigitalPotentiometer https://github.com/Salterm27/Watch https://github.com/salvadorrueda/SerialMP3Player +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 https://github.com/samverstraete/TimerFour https://github.com/Samyz/CESmartCamp @@ -3322,26 +6146,51 @@ https://github.com/sandeepmistry/arduino-BLEPeripheral https://github.com/sandeepmistry/arduino-CAN https://github.com/sandeepmistry/arduino-LoRa https://github.com/sandeepmistry/arduino-OBD2 +https://github.com/SanteriLindfors/WiFiProvisioner 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/sblantipodi/arduino_bootstrapper +https://github.com/sbouhoun/smoother/ +https://github.com/scheffield/sic45x-driver https://github.com/schinken/Flash https://github.com/schinken/PPMEncoder +https://github.com/schlarmann/esp8266channel3lib https://github.com/schlingensiepen/TelegramBotClient https://github.com/Schm1tz1/arduino-ms5xxx https://github.com/Schm1tz1/arduino-tsic https://github.com/Schm1tz1/aws-sdk-arduino-esp8266 +https://github.com/schnoog/Joystick_ESP32S2 +https://github.com/schnoog/vl53l0x-arduino-mod +https://github.com/SchooMyDevelopment/SchooMyUtilities +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/sciosense/as60xx-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 +https://github.com/seanboe/SimpleFusion https://github.com/sebaJoSt/BlaeckSerial +https://github.com/sebaJoSt/BlaeckTCP +https://github.com/sebmillet/DelayExec +https://github.com/sebmillet/RF433any +https://github.com/sebmillet/RF433recv +https://github.com/sebmillet/rf433send https://github.com/sebnil/DueFlashStorage https://github.com/Seeed-Studio/Accelerometer_ADXL335 https://github.com/Seeed-Studio/Accelerometer_ADXL345 -https://github.com/Seeed-Studio/Seeed_Arduino_LSM6DS3 https://github.com/Seeed-Studio/Accelerometer_H3LIS331DL https://github.com/Seeed-Studio/Accelerometer_MMA7660 -https://github.com/Seeed-Studio/CAN_BUS_Shield https://github.com/Seeed-Studio/Digital_Infrared_Temperature_Sensor_MLX90615 https://github.com/Seeed-Studio/Ethernet_Shield_W5200 https://github.com/Seeed-Studio/Gesture_PAJ7620 @@ -3369,13 +6218,13 @@ 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 https://github.com/Seeed-Studio/Grove_Temperature_And_Humidity_Sensor https://github.com/Seeed-Studio/Grove_touch_sensor_CY8C40XX https://github.com/Seeed-Studio/Grove_Ultrasonic_Ranger +https://github.com/Seeed-Studio/Grove-Ranging-sensor-VL53L0X https://github.com/Seeed-Studio/HDC1000 https://github.com/Seeed-Studio/Hercules_Motor_Driver https://github.com/Seeed-Studio/IRSendRev @@ -3388,15 +6237,26 @@ https://github.com/Seeed-Studio/OLED_Display_96X96 https://github.com/Seeed-Studio/RFID_Library https://github.com/Seeed-Studio/RTC_DS1307 https://github.com/Seeed-Studio/Seeed_ADIS16470 +https://github.com/Seeed-Studio/Seeed_Arduino_24GHz_Radar_Sensor +https://github.com/Seeed-Studio/Seeed_Arduino_8Channel_I2C_Hub +https://github.com/Seeed-Studio/Seeed_Arduino_AHT20 +https://github.com/Seeed-Studio/Seeed_Arduino_Audio +https://github.com/Seeed-Studio/Seeed_Arduino_CAN https://github.com/Seeed-Studio/Seeed_Arduino_FS https://github.com/Seeed-Studio/Seeed_Arduino_IR https://github.com/Seeed-Studio/Seeed_Arduino_LIS3DHTR +https://github.com/Seeed-Studio/Seeed_Arduino_LSM6DS3 https://github.com/Seeed-Studio/Seeed_Arduino_mbedtls +https://github.com/Seeed-Studio/Seeed_Arduino_Mic https://github.com/Seeed-Studio/Seeed_Arduino_rpcBLE 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 https://github.com/Seeed-Studio/Seeed_LTC2941 https://github.com/Seeed-Studio/Seeed_MCP9600 @@ -3406,6 +6266,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 @@ -3418,48 +6279,120 @@ https://github.com/SeeedJP/Wio_3G_for_Arduino https://github.com/SeeedJP/Wio_cell_lib_for_Arduino https://github.com/SeeedJP/WioLTEforArduino https://github.com/sefisher/fishyDIYdevices +https://github.com/segertonGH/Creative-Robotix-Educational-Platform-Arduino +https://github.com/SEGGERMicro/emWin-Arduino-Library +https://github.com/Segilmez06/DistanceSensor https://github.com/Seithan/EasyNextionLibrary +https://github.com/sekigon-gonnoc/Pico-PIO-USB +https://github.com/SemBeacon/arduino-esp32 +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 +https://github.com/sensirion/arduino-gas-index-algorithm +https://github.com/Sensirion/arduino-i2c-scd30 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-svm40 +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-i2c-sfm3505 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-svm40 +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-ble-server +https://github.com/Sensirion/arduino-upt-display +https://github.com/sensorium/Mozzi https://github.com/sensslen/LibLanc https://github.com/septillion-git/FadeLed https://github.com/septillion-git/QC2Control +https://github.com/SequentMicrosystems/Sequent-4rel4in-Library +https://github.com/SequentMicrosystems/Sequent-Building-Automation-Library +https://github.com/SequentMicrosystems/Sequent-ESP32-PI-Library +https://github.com/SequentMicrosystems/Sequent-Home-Automation-Library +https://github.com/SequentMicrosystems/Sequent-LCD-Adapter-Library +https://github.com/SequentMicrosystems/Sequent-RTD-Library +https://github.com/SequentMicrosystems/Sequent-Thermocouples-Library https://github.com/seralo/ZzzButton https://github.com/seralo/ZzzMovingAvg +https://github.com/serenewaffles/Dorpac-timer +https://github.com/serenewaffles/OctoPrinter +https://github.com/SergeSkor/SSVAnySensor +https://github.com/SergeSkor/SSVLongTime +https://github.com/SergeSkor/SSVNTPCoreClass +https://github.com/SergeSkor/SSVQueueStackArray +https://github.com/SergeSkor/SSVRGBGradientCalc +https://github.com/SergeSkor/SSVTimer +https://github.com/SergeSkor/SSVWaitForStringInStream +https://github.com/SergeSkor/SSVXYMatrix +https://github.com/SergeSkor/SSVXYMatrixText https://github.com/SergiuToporjinschi/espmanager https://github.com/SergiuToporjinschi/settingsmanager https://github.com/SethSenpai/singleLEDLibrary +https://github.com/SF433/ILIB +https://github.com/sfeister/scpi-parser-arduino https://github.com/sfekilou/M5STACK_4RELAY +https://github.com/sh123/esp32_codec2_arduino +https://github.com/sh123/esp32_opus_arduino https://github.com/shaduzlabs/arduino-rastr https://github.com/shaduzlabs/synapse +https://github.com/shah253kt/SimpleStack https://github.com/shashank3199/Cytron_PS2_Shield https://github.com/shashank3199/LSA08 https://github.com/shashank3199/RazorIMU_9DOF https://github.com/shashank3199/RhinoServo https://github.com/shashikg/PixhawkArduinoMAVLink +https://github.com/sheminasalam/Esp8266-Mqtt-Canary https://github.com/shielddx/oatmeal-protocol +https://github.com/shigobu/CH9329_Keyboard +https://github.com/shiliu-yang/SimpleLed +https://github.com/shkoo/MeshGnome +https://github.com/shnam7/ardukit https://github.com/shortbloke/Arduino_SNMP_Manager +https://github.com/shraiwi/mini-qoi https://github.com/ShubhamAnnigeri/tinyECC-ArduinoIDE +https://github.com/shubhamtrivedi95/UltraDistSensor +https://github.com/shufflebits/GU140X32F-7703A +https://github.com/shurik179/pov-library +https://github.com/shurillu/Cdrv8833 https://github.com/shurillu/CTBot +https://github.com/shutch42/modmata https://github.com/shuvangkar/RingEEPROM +https://github.com/shyd/Arduino-SerialCommand https://github.com/siara-cc/esp_arduino_sqlite3_lib https://github.com/siara-cc/esp32_arduino_sqlite3_lib +https://github.com/siara-cc/marisa-esp32 https://github.com/siara-cc/Shox96_Arduino_Progmem_lib https://github.com/siara-cc/sqlite_micro_logger_arduino https://github.com/siara-cc/Unishox_Arduino_Progmem_lib +https://github.com/sichel94/GUVB-C31SM +https://github.com/sichel94/pseudospectrum https://github.com/SiddheshNan/ThingESP-Arduino-Library https://github.com/SiddheshNan/Things-IoT-Arduino-Library https://github.com/sidoh/path_variable_handlers @@ -3469,11 +6402,29 @@ https://github.com/signetica/MoonRise https://github.com/signetica/SunRise https://github.com/sigvaldm/SevenSeg https://github.com/siktec-lab/SIK-Rotary-Encoder +https://github.com/siktec-lab/SIKTEC-AVR-Controller +https://github.com/siktec-lab/SIKTEC-EPD +https://github.com/siktec-lab/SIKTEC-Keys +https://github.com/siktec-lab/SIKTEC-MDSwitch 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/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 +https://github.com/simonlmn/gpiobj +https://github.com/simonlmn/jsons +https://github.com/simonlmn/serial-transport +https://github.com/simonlmn/toolbox +https://github.com/simonlmn/yatest https://github.com/simonmonk/arduino_TEA5767 +https://github.com/Simpit-team/KerbalSimpitRevamped-Arduino +https://github.com/simplefoc/Arduino-FOC-dcmotor +https://github.com/simplefoc/Arduino-FOC-drivers https://github.com/SimpleHacks/EzDmaHelper https://github.com/SimpleHacks/hw_rng https://github.com/SimpleHacks/QDEC @@ -3482,14 +6433,31 @@ https://github.com/Simsso/ShiftRegister74HC595 https://github.com/SindormirNet/ArduinoFacil https://github.com/SindormirNet/SindormirSevenSegments https://github.com/sinricpro/esp8266-esp32-sdk +https://github.com/sinricpro/teleport-arduino-esp32-library +https://github.com/siroshy/MovingPlatform https://github.com/SirSundays/LDC1312-Arduino https://github.com/siteswapjuggler/RAMP +https://github.com/sitronlabs/SitronLabs_Enedis_TIC_Arduino_Library +https://github.com/sitronlabs/SitronLabs_OPT3001_Arduino_Library +https://github.com/sitronlabs/SitronLabs_SinoWealth_SH1106_Arduino_Library +https://github.com/sitronlabs/SitronLabs_Sitronix_ST75256_Arduino_Library +https://github.com/sitronlabs/SitronLabs_Weikai_WK2132_Arduino_Library +https://github.com/sivaadchu/SmartCard +https://github.com/sivar2311/WebMonitor https://github.com/sixfab/Sixfab_Arduino_CellularIoT_Library https://github.com/sixfab/Sixfab_Arduino_NBIoT_Shield https://github.com/skaarj1989/mWebSockets +https://github.com/skabrits/SpeedMeasurer +https://github.com/skabrits/StringAction https://github.com/skaldek/STools https://github.com/Skallwar/GSL1680 +https://github.com/skathir38/ArduinoSplash +https://github.com/skathir38/Rotary +https://github.com/SkHCrusher/TinyButton https://github.com/skx/Z80RetroShield +https://github.com/skyfroger/RLab +https://github.com/skyfroger/RPlatform +https://github.com/SkyIsTheLimit/arduino-array-utils https://github.com/SlashDevin/NeoBufferedPrint https://github.com/SlashDevin/NeoGPS https://github.com/SlashDevin/NeoSWSerial @@ -3497,6 +6465,7 @@ https://github.com/slavaza/SuperButton https://github.com/slavaza/Thread https://github.com/sleepdefic1t/bcl https://github.com/sleepdefic1t/BIP66 +https://github.com/sleepnow2/ArdRTOS/ https://github.com/SloCompTech/ByteConvert_arduino https://github.com/SloCompTech/QList https://github.com/smaffer/espvgax @@ -3504,9 +6473,11 @@ https://github.com/smaffer/espvgax2 https://github.com/smaffer/vgax https://github.com/smaffer/vgaxua https://github.com/SmartElecRu/AlphaSE_BasicUnit +https://github.com/SmartElecRu/ArduinoIDE_SE_Button https://github.com/SmartElecRu/ArduinoIDE_SE_EEPROM https://github.com/smartmeio/arancino-library https://github.com/smartmeio/microcontroller-id-library +https://github.com/smartpanle/PanelLan_esp32_arduino https://github.com/Smartphone-Companions/ESP32-ANCS-Notifications https://github.com/SMFSW/CaptureTimer https://github.com/SMFSW/cI2C @@ -3518,12 +6489,17 @@ https://github.com/SMFSW/SeqTimer https://github.com/SMFSW/SerialTerminal https://github.com/SMFSW/SmoothADC https://github.com/SMFSW/WireWrapper +https://github.com/smolltalk/FileConfig +https://github.com/smt5541/magstripelib-esp32 https://github.com/smurf0969/WiFiConnect https://github.com/smz/Arduino-RTCtime +https://github.com/SndrSchnklshk/HDC302x +https://github.com/SndrSchnklshk/TMP6x https://github.com/sne3ks/ExodeCore +https://github.com/SNMetamorph/FutabaVfdM202MD10C https://github.com/snototter/BasicTinkering -https://github.com/soburi/IoTivity-Lite_arduino-porting https://github.com/soburi/IoTivity-Lite +https://github.com/soburi/IoTivity-Lite_arduino-porting https://github.com/soburi/tinycbor https://github.com/SodaqMoja/GPRSbee https://github.com/SodaqMoja/Microchip_RN487x @@ -3538,8 +6514,8 @@ https://github.com/SodaqMoja/Sodaq_LSM303AGR https://github.com/SodaqMoja/Sodaq_N2X https://github.com/SodaqMoja/Sodaq_nbIOT https://github.com/SodaqMoja/Sodaq_PcInt -https://github.com/SodaqMoja/Sodaq_R4X_MQTT https://github.com/SodaqMoja/Sodaq_R4X +https://github.com/SodaqMoja/Sodaq_R4X_MQTT https://github.com/SodaqMoja/Sodaq_RN2483 https://github.com/SodaqMoja/Sodaq_SHT2x https://github.com/SodaqMoja/Sodaq_UBlox_GPS @@ -3547,20 +6523,66 @@ 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 +https://github.com/SolderedElectronics/Soldered-8x8-MAX7219-LED-Matrix-Arduino-Library +https://github.com/SolderedElectronics/Soldered-ADS1015-ADS1115-ADC-Arduino-Library +https://github.com/SolderedElectronics/Soldered-AS3935-Lightning-detect-Arduino-Library +https://github.com/SolderedElectronics/Soldered-BME280-BME680-Gas-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-BQ27441-Battery-Fuel-Gauge-Arduino-Library +https://github.com/SolderedElectronics/Soldered-CAN-Bus-Breakout-MCP2518-Arduino-Library +https://github.com/SolderedElectronics/Soldered-CCS811-Air-Quality-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-DAC-Breakout_MCP47A1-Arduino-Library +https://github.com/SolderedElectronics/Soldered-Digipot-MCP4018-Arduino-Library +https://github.com/SolderedElectronics/Soldered-Digital-Light-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-Fingerprint-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-Hall-Effect-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-HX711-ADC-For-Weight-Scales-Arduino-Library +https://github.com/SolderedElectronics/Soldered-INA219-Current-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-LCD-library +https://github.com/SolderedElectronics/Soldered-MCP23017-Port-Expander-Arduino-Library +https://github.com/SolderedElectronics/Soldered-MQ-Gas-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-nRF24-Radio-Module-Arduino-Library +https://github.com/SolderedElectronics/Soldered-Obstacle-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-OLED-Display-Arduino-Library +https://github.com/SolderedElectronics/Soldered-PCF85063A-RTC-Module-Arduino-Library +https://github.com/SolderedElectronics/Soldered-PMS7003-Particle-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-SHTC3-Temperature-Humidity-Sensor-Arduino-Library +https://github.com/SolderedElectronics/Soldered-SI114X-sensor-easyC-Arduino-Library +https://github.com/SolderedElectronics/Soldered-SIM7020-NB-IoT-Arduino-Library +https://github.com/SolderedElectronics/Soldered-SIM800L-GSM-Module-Arduino-Library +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 +https://github.com/Solo-FL/SOLO-motor-controllers-ARDUINO-library https://github.com/somefunAgba/ModernPIDControlSS +https://github.com/someweisguy/esp_dmx +https://github.com/somsinchai/CAGEduino https://github.com/somsinchai/IBot https://github.com/SoonerRobotics/RobotLib -https://github.com/sourcesimian/uICAL +https://github.com/soracom-labs/soracom-arc-esp32-arduino +https://github.com/soryone1/fog https://github.com/souliss/souliss +https://github.com/sourcesimian/uICAL +https://github.com/South-River/BMI085-arduino https://github.com/souviksaha97/DAC7611 https://github.com/souviksaha97/MCP3202 +https://github.com/soylentOrange/DigiSpark_PWM +https://github.com/soylentOrange/Forced-BMX280 https://github.com/sp6q/maidenhead https://github.com/spacehuhntech/SimpleCLI +https://github.com/SpaceTrekKSC/BQ25887 +https://github.com/SpaceTrekKSC/classbot2 +https://github.com/SpaceTrekKSC/EasyStarterKit https://github.com/Spaguetron/ST_HW_HC_SR04 https://github.com/sparkfun/Fingerprint_Scanner-TTL https://github.com/sparkfun/HyperDisplay_4DLCD-320240_ArduinoLibrary @@ -3570,9 +6592,12 @@ https://github.com/sparkfun/HyperDisplay_KWH018ST01_4WSPI_ArduinoLibrary https://github.com/sparkfun/HyperDisplay_SSD1309_ArduinoLibrary https://github.com/sparkfun/HyperDisplay_UG2856KLBAG01_ArduinoLibrary https://github.com/sparkfun/phant-arduino +https://github.com/sparkfun/SparkFun_6DoF_ISM330DHCX_Arduino_Library https://github.com/sparkfun/SparkFun_ACS37800_Power_Monitor_Arduino_Library https://github.com/sparkfun/SparkFun_AD5330_Breakout_Arduino_Library +https://github.com/sparkfun/SparkFun_ADIN1110_Arduino_Library https://github.com/sparkfun/SparkFun_ADS1015_Arduino_Library +https://github.com/sparkfun/SparkFun_ADS1219_Arduino_Library https://github.com/sparkfun/SparkFun_ADS122C04_ADC_Arduino_Library https://github.com/sparkfun/SparkFun_ADXL313_Arduino_Library https://github.com/sparkfun/SparkFun_ADXL345_Arduino_Library @@ -3582,21 +6607,32 @@ 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 https://github.com/sparkfun/SparkFun_AS6212_Qwiic_Arduino_Library 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 https://github.com/sparkfun/SparkFun_Bio_Sensor_Hub_Library +https://github.com/sparkfun/SparkFun_BMA400_Arduino_Library https://github.com/sparkfun/SparkFun_BME280_Arduino_Library +https://github.com/sparkfun/SparkFun_BMI270_Arduino_Library +https://github.com/sparkfun/SparkFun_BMP384_Arduino_Library +https://github.com/sparkfun/SparkFun_BMP581_Arduino_Library https://github.com/sparkfun/SparkFun_BNO080_Arduino_Library +https://github.com/sparkfun/SparkFun_BNO08x_Arduino_Library https://github.com/sparkfun/SparkFun_BQ27441_Arduino_Library +https://github.com/sparkfun/SparkFun_BQ40Z50_Battery_Manager_Arduino_Library https://github.com/sparkfun/SparkFun_CAP1203_Arduino_Library https://github.com/sparkfun/SparkFun_CCS811_Arduino_Library https://github.com/sparkfun/SparkFun_Clock_5P49V60_Arduino_Library @@ -3604,9 +6640,11 @@ https://github.com/sparkfun/SparkFun_Color_LCD_Shield_Arduino_Library https://github.com/sparkfun/SparkFun_DE2120_Arduino_Library https://github.com/sparkfun/SparkFun_Displacement_Sensor_Arduino_Library https://github.com/sparkfun/SparkFun_ePaper_Arduino_Library +https://github.com/sparkfun/SparkFun_Extensible_Message_Parser https://github.com/sparkfun/SparkFun_External_EEPROM_Arduino_Library https://github.com/sparkfun/SparkFun_Flying_Jalapeno_2_Arduino_Library https://github.com/sparkfun/SparkFun_Flying_Jalapeno_Arduino_Library +https://github.com/sparkfun/SparkFun_FS3000_Arduino_Library https://github.com/sparkfun/SparkFun_Graphic_LCD_Serial_Backpack_Arduino_Library https://github.com/sparkfun/SparkFun_GridEYE_Arduino_Library https://github.com/sparkfun/SparkFun_Haptic_Motor_Driver_Arduino_Library @@ -3615,19 +6653,25 @@ 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 +https://github.com/sparkfun/SparkFun_Indoor_Air_Quality_Sensor-ENS160_Arduino_Library 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 https://github.com/sparkfun/SparkFun_LIS3DH_Arduino_Library https://github.com/sparkfun/SparkFun_LP55231_Arduino_Library https://github.com/sparkfun/SparkFun_LPS25HB_Arduino_Library +https://github.com/sparkfun/SparkFun_LPS28DFW_Arduino_Library https://github.com/sparkfun/SparkFun_LSM303C_6_DOF_IMU_Breakout_Arduino_Library https://github.com/sparkfun/SparkFun_LSM6DS3_Arduino_Library +https://github.com/sparkfun/SparkFun_LSM6DSV16X_Arduino_Library https://github.com/sparkfun/SparkFun_LSM9DS0_Arduino_Library https://github.com/sparkfun/SparkFun_LSM9DS1_Arduino_Library https://github.com/sparkfun/SparkFun_LTE_Shield_Arduino_Library @@ -3646,35 +6690,48 @@ https://github.com/sparkfun/SparkFun_MiniMoto_Arduino_Library https://github.com/sparkfun/SparkFun_MLX90614_Arduino_Library https://github.com/sparkfun/SparkFun_MLX90632_Arduino_Library https://github.com/sparkfun/SparkFun_MMA8452Q_Arduino_Library +https://github.com/sparkfun/SparkFun_MMC5983MA_Magnetometer_Arduino_Library 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 https://github.com/sparkfun/SparkFun_PCA9536_Arduino_Library +https://github.com/sparkfun/SparkFun_PCA9846_Mux_Arduino_Library https://github.com/sparkfun/SparkFun_PHT_MS8607_Arduino_Library https://github.com/sparkfun/SparkFun_ProDriver_TC78H670FTG_Arduino_Library https://github.com/sparkfun/SparkFun_Quadstepper_Motor_Driver_Arduino_Library +https://github.com/sparkfun/SparkFun_Qwiic_6DoF_LSM6DSO_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Button_Arduino_Library +https://github.com/sparkfun/SparkFun_Qwiic_Buzzer_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Digital_Capacitor_Arduino_Library +https://github.com/sparkfun/SparkFun_Qwiic_Fan_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_GPIO_Library -https://github.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Haptic_Driver_DA7280_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Humidity_AHT20_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Joystick_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Keypad_Arduino_Library 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 https://github.com/sparkfun/SparkFun_Qwiic_RFID_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Scale_NAU7802_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Step_Arduino_Library +https://github.com/sparkfun/SparkFun_Qwiic_TMF882X_Arduino_Library https://github.com/sparkfun/SparkFun_Qwiic_Twist_Arduino_Library +https://github.com/sparkfun/SparkFun_Qwiic_Ultrasonic_Arduino_Library +https://github.com/sparkfun/SparkFun_Qwiic_Universal_Auto-Detect https://github.com/sparkfun/SparkFun_QwiicNES_Arduino_Library https://github.com/sparkfun/SparkFun_QwiicRF_Library +https://github.com/sparkfun/SparkFun_Qwiic_XM125_Arduino_Library https://github.com/sparkfun/SparkFun_RedBot_Arduino_Library https://github.com/sparkfun/SparkFun_RFD77402_Arduino_Library https://github.com/sparkfun/Sparkfun_RGB_OLED_64x64_Arduino_Library @@ -3687,40 +6744,62 @@ https://github.com/sparkfun/SparkFun_SDP3x_Arduino_Library https://github.com/sparkfun/SparkFun_Serial_Controlled_Motor_Driver_Arduino_Library https://github.com/sparkfun/SparkFun_SerLCD_Arduino_Library https://github.com/sparkfun/SparkFun_SGP30_Arduino_Library +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_Si701_Breakout_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 https://github.com/sparkfun/SparkFun_SX1509_Arduino_Library https://github.com/sparkfun/SparkFun_T5403_Barometric_Sensor_Arduino_Library https://github.com/sparkfun/SparkFun_TeensyView_Arduino_Library https://github.com/sparkfun/SparkFun_TLC5940_Arduino_Library +https://github.com/sparkfun/SparkFun_TMAG5273_Arduino_Library/ https://github.com/sparkfun/SparkFun_TMF8801_Arduino_Library https://github.com/sparkfun/SparkFun_TMP102_Arduino_Library https://github.com/sparkfun/SparkFun_TMP117_Arduino_Library https://github.com/sparkfun/SparkFun_ToF_Range_Finder-VL6180_Arduino_Library +https://github.com/sparkfun/SparkFun_Toolkit https://github.com/sparkfun/SparkFun_TouchInput_Arduino_Library https://github.com/sparkfun/SparkFun_TouchInput_Driver_FT5xx6 +https://github.com/sparkfun/SparkFun_TPA2016D2_Arduino_Library https://github.com/sparkfun/SparkFun_TSL2561_Arduino_Library +https://github.com/sparkfun/SparkFun_Tsunami_Qwiic_Arduino_Library +https://github.com/sparkfun/SparkFun_u-blox_Cellular_Arduino_Library https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Library +https://github.com/sparkfun/SparkFun_u-blox_GNSS_v3 +https://github.com/sparkfun/SparkFun_u-blox_PointPerfect_Library https://github.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library https://github.com/sparkfun/SparkFun_Ublox_Arduino_Library +https://github.com/sparkfun/SparkFun_Unicore_GNSS_Arduino_Library https://github.com/sparkfun/SparkFun_USB251x_Arduino_Library https://github.com/sparkfun/SparkFun_VCNL4040_Arduino_Library https://github.com/sparkfun/SparkFun_VEML6075_Arduino_Library https://github.com/sparkfun/SparkFun_VEML7700_Arduino_Library https://github.com/sparkfun/SparkFun_VKey_Voltage_Keypad_Arduino_Library https://github.com/sparkfun/SparkFun_VL53L1X_Arduino_Library +https://github.com/sparkfun/SparkFun_VL53L5CX_Arduino_Library +https://github.com/sparkfun/SparkFun_Weather_Meter_Kit_Arduino_Library +https://github.com/sparkfun/SparkFun_WebServer_ESP32_W5500 https://github.com/sparkfun/SparkFun_WiseChip_HUD_Library +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/SparkFun_FS3000_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 @@ -3728,6 +6807,8 @@ https://github.com/spicajames/Rtttl https://github.com/SpinWearables/SpinWearablesFirmware https://github.com/Spirik/GEM https://github.com/Spirik/KeyDetector +https://github.com/spklpool/Carduino +https://github.com/SpulberGeorge/EasyUltrasonic https://github.com/sqfmi/HPDL1414-74HC595-Arduino https://github.com/sqfmi/Watchy https://github.com/squaresausage/WinbondW25N @@ -3739,9 +6820,23 @@ https://github.com/ssilverman/LiteOSCParser https://github.com/ssilverman/QNEthernet https://github.com/ssilverman/SLIPStream https://github.com/ssilverman/TeensyDMX +https://github.com/sstaub/AT24MAC402 +https://github.com/sstaub/eOS +https://github.com/sstaub/Ethernet3 +https://github.com/sstaub/gma3 +https://github.com/sstaub/MCP_23017 +https://github.com/sstaub/MCP_3208 +https://github.com/sstaub/NextionX2 +https://github.com/sstaub/NTP +https://github.com/sstaub/sACN +https://github.com/sstaub/SSD1803A_I2C +https://github.com/sstaub/TeensyID https://github.com/sstaub/Ticker +https://github.com/sstaub/TickTwo +https://github.com/sstaub/Timer https://github.com/ssuhrid/EmSevenSegment -https://github.com/Staacks/phyphox-arduino +https://github.com/St3p40/EMFButton +https://github.com/phyphox/phyphox-arduino https://github.com/Stan-Reifel/ArduinoUserInterface https://github.com/Stan-Reifel/FlexyStepper https://github.com/Stan-Reifel/SpeedyStepper @@ -3770,16 +6865,23 @@ https://github.com/stevemarple/MicroNMEA https://github.com/stevemarple/MLX90614 https://github.com/stevemarple/RTCx https://github.com/stevemarple/SoftWire +https://github.com/Steven-GH/Xsens_MTi_I2C +https://github.com/Steven-GH/Xsens_MTi_SPI https://github.com/stm32duino/ASM330LHH https://github.com/stm32duino/FatFs https://github.com/stm32duino/FP_Examples https://github.com/stm32duino/HTS221 https://github.com/stm32duino/I-NUCLEO-LRWAN1 +https://github.com/stm32duino/IIS2DLPC https://github.com/stm32duino/IIS2MDC +https://github.com/stm32duino/ISM330DHCX https://github.com/stm32duino/ISM330DLC +https://github.com/stm32duino/LIS2DU12 +https://github.com/stm32duino/LIS2DUXS12 https://github.com/stm32duino/LIS2DW12 https://github.com/stm32duino/LIS2MDL https://github.com/stm32duino/LIS3MDL +https://github.com/stm32duino/LPS22DF https://github.com/stm32duino/LPS22HB https://github.com/stm32duino/LPS22HH https://github.com/stm32duino/LPS25HB @@ -3788,20 +6890,31 @@ https://github.com/stm32duino/LSM6DS0 https://github.com/stm32duino/LSM6DS3 https://github.com/stm32duino/LSM6DSL https://github.com/stm32duino/LSM6DSO +https://github.com/stm32duino/LSM6DSO16IS https://github.com/stm32duino/LSM6DSOX https://github.com/stm32duino/LSM6DSR +https://github.com/stm32duino/LSM6DSV16X https://github.com/stm32duino/LwIP https://github.com/stm32duino/M24SR64-Y https://github.com/stm32duino/M95640-R +https://github.com/stm32duino/MotionFX https://github.com/stm32duino/MX25R6435F +https://github.com/stm32duino/NFC-RFAL https://github.com/stm32duino/Proximity_Gesture https://github.com/stm32duino/S2-LP +https://github.com/stm32duino/SHT40-AD1B https://github.com/stm32duino/SPBTLE-RF https://github.com/stm32duino/ST25DV +https://github.com/stm32duino/ST25R3911B +https://github.com/stm32duino/ST25R3916 +https://github.com/stm32duino/ST25R95 +https://github.com/stm32duino/STEVAL-MKBOXPRO-Audio +https://github.com/stm32duino/STEVAL-MKBOXPRO-Examples https://github.com/stm32duino/STM32duinoBLE https://github.com/stm32duino/STM32Ethernet https://github.com/stm32duino/STM32Examples https://github.com/stm32duino/STM32FreeRTOS +https://github.com/stm32duino/STM32LoRaWAN https://github.com/stm32duino/STM32LowPower https://github.com/stm32duino/STM32RTC https://github.com/stm32duino/STM32SD @@ -3811,6 +6924,11 @@ https://github.com/stm32duino/VL53L0X https://github.com/stm32duino/VL53L1 https://github.com/stm32duino/VL53L1X https://github.com/stm32duino/VL53L3CX +https://github.com/stm32duino/VL53L4CD.git +https://github.com/stm32duino/VL53L4CX.git +https://github.com/stm32duino/VL53L5CX +https://github.com/stm32duino/VL53L7CX +https://github.com/stm32duino/VL53L8CX https://github.com/stm32duino/VL6180 https://github.com/stm32duino/VL6180X https://github.com/stm32duino/WiFi-ISM43362-M3G-L44 @@ -3818,27 +6936,55 @@ https://github.com/stm32duino/X-NUCLEO-53L0A1 https://github.com/stm32duino/X-NUCLEO-53L1A1 https://github.com/stm32duino/X-NUCLEO-53L1A2 https://github.com/stm32duino/X-NUCLEO-53L3A2 +https://github.com/stm32duino/X-NUCLEO-53L4A1.git +https://github.com/stm32duino/X-NUCLEO-53L4A2.git +https://github.com/stm32duino/X-NUCLEO-53L5A1 +https://github.com/stm32duino/X-NUCLEO-53L7A1 +https://github.com/stm32duino/X-NUCLEO-53L8A1 https://github.com/stm32duino/X-NUCLEO-6180A1 https://github.com/stm32duino/X-NUCLEO-6180XA1 https://github.com/stm32duino/X-NUCLEO-GNSS1A1 https://github.com/stm32duino/X-NUCLEO-IDB05A1 +https://github.com/stm32duino/X-NUCLEO-IHM01A1 https://github.com/stm32duino/X-NUCLEO-IHM02A1 https://github.com/stm32duino/X-NUCLEO-IHM05A1 https://github.com/stm32duino/X-NUCLEO-IHM12A1 +https://github.com/stm32duino/X-NUCLEO-IHM15A1 https://github.com/stm32duino/X-NUCLEO-IKA01A1 https://github.com/stm32duino/X-NUCLEO-IKS01A1 https://github.com/stm32duino/X-NUCLEO-IKS01A2 https://github.com/stm32duino/X-NUCLEO-IKS01A3 +https://github.com/stm32duino/X-NUCLEO-IKS02A1 +https://github.com/stm32duino/X-NUCLEO-IKS02A1-Audio +https://github.com/stm32duino/X-NUCLEO-IKS4A1 https://github.com/stm32duino/X-NUCLEO-LED61A1 https://github.com/stm32duino/X-NUCLEO-NFC01A1 https://github.com/stm32duino/X-NUCLEO-NFC03A1 https://github.com/stm32duino/X-NUCLEO-NFC04A1 +https://github.com/stm32duino/X-NUCLEO-NFC05A1 +https://github.com/stm32duino/X-NUCLEO-NFC06A1 +https://github.com/stm32duino/X-NUCLEO-NFC07A1 +https://github.com/stm32duino/X-NUCLEO-NFC08A1 https://github.com/stm32duino/X-NUCLEO-S2868A1 https://github.com/stm32duino/X-NUCLEO-S2868A2 https://github.com/stm32duino/X-NUCLEO-S2915A1 -https://github.com/stnkl/ESPEssentials +https://github.com/srwi/ESPEssentials +https://github.com/srwi/FastLEDHub +https://github.com/STONElibrary/arduino_lib +https://github.com/stoneroweast/HoldButton https://github.com/Strabox/Easyuino https://github.com/StrathbogieBrewing/AceMenu +https://github.com/StrathbogieBrewing/TinBus.git +https://github.com/StrathbogieBrewing/VEDirect.git +https://github.com/strid3r21/BeeDataLogger-Arduino-Helper +https://github.com/strid3r21/BeeMotionS3-Arduino-Helper +https://github.com/strid3r21/BeeS3-Arduino-Helper +https://github.com/Stutchbury/DisplayUtils +https://github.com/Stutchbury/EncoderButton +https://github.com/Stutchbury/EventAnalog +https://github.com/Stutchbury/EventButton +https://github.com/Stutchbury/EventJoystick +https://github.com/Stutchbury/TouchKeypad https://github.com/suculent/esp32-http-update https://github.com/suculent/thinx-aes-lib https://github.com/suculent/thinx-firmware-esp32 @@ -3848,41 +6994,75 @@ https://github.com/sui77/rc-switch https://github.com/SukkoPera/N64PadForArduino https://github.com/SukkoPera/PsxNewLib https://github.com/SukkoPera/Webbino +https://github.com/sunfounder/SunFounder_Ai_Camera +https://github.com/sunfounder/arduino_spc https://github.com/SunitRaut/Lightweight-CD74HC4067-Arduino https://github.com/SunitRaut/Smart-Duty-Cycling-Arduino https://github.com/SunitRaut/WSN-for-RFM69-LowPowerLab https://github.com/SunjunKim/PMW3360 -https://github.com/SUPLA/supla-arduino -https://github.com/Suraj151/esp8266-framework +https://github.com/supercrab/RemoteSerial +https://github.com/SUPLA/supla-device +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 +https://github.com/suratin27/ESP32_Control_Lite +https://github.com/suratin27/ESP32_FX1N +https://github.com/suratin27/MiniPLC_FX2N +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/Syncano/syncano-arduino +https://github.com/SyntaxHarvy/HaCEspSockets +https://github.com/SyntaxHarvy/HACTimers +https://github.com/SyntaxHarvy/HACWifiManager https://github.com/szotsaki/LIS331 https://github.com/t-in/cloudchip-iot +https://github.com/t-oot/ESP32-PTQS1005 +https://github.com/takeyamayuki/RESTuino https://github.com/taligentx/dscKeybusInterface https://github.com/talk2wisen/Talk2Library +https://github.com/tamctec/ft62x6-arduino +https://github.com/tamctec/gt911-arduino +https://github.com/tamctec/irm-mini-arduino https://github.com/TamojitSaha/MAX6626_library https://github.com/tanakamasayuki/Arduino_TensorFlowLite_ESP32 https://github.com/tanakamasayuki/efont https://github.com/tanakamasayuki/ESP32LitePack +https://github.com/tanakamasayuki/ESP32PsramLock +https://github.com/tanakamasayuki/EspEasyUtils +https://github.com/tanakamasayuki/EspUsbHost https://github.com/tanakamasayuki/I2C_AXP192 https://github.com/tanakamasayuki/I2C_BM8563 https://github.com/tanakamasayuki/I2C_MPU6886 https://github.com/tanakamasayuki/I2C_SLG https://github.com/tanakamasayuki/LinxESP32 https://github.com/tanakamasayuki/UlpDebug +https://github.com/tanakamasayuki/ESP32CertBundle +https://github.com/tanakamasayuki/ESP32SerialCtl +https://github.com/tanakamasayuki/EmbedFS +https://github.com/tanakamasayuki/EspHelper +https://github.com/tanakamasayuki/AssocTree https://github.com/TanPitch/ButtonKing https://github.com/TaraHoleInIt/Subpixie https://github.com/tasos12/ev3-arduino +https://github.com/tatemazer/AcaiaArduinoBLE +https://github.com/TawalMc/TinyDatabase_Arduino https://github.com/tcafiero/NBduinoLibrary https://github.com/tcafiero/SensorCommunicationLib https://github.com/tcoppex/mbed-ble-hid https://github.com/Tdoe4321/FlexLibrary +https://github.com/tdslite/tdslite https://github.com/TEAMarg/ATMlib https://github.com/teamong/Mechatro +https://github.com/teamprof/arduino-eventethernet +https://github.com/teamprof/arduprof https://github.com/TECA-IOT/Tinyfox https://github.com/TECA-IOT/Ufox +https://github.com/tech-box-io/TB_TFT_eSPI https://github.com/Technickfreak/LoRa-payload-BKU https://github.com/TechnoPhysCAL/TGP_Bouton https://github.com/TechnoPhysCAL/TGP_Decodeur @@ -3900,34 +7080,73 @@ https://github.com/techpaul/XMC_Servo https://github.com/techwillsaveus/Gamer https://github.com/techwillsaveus/GamerIR https://github.com/teckel12/arduino-toneac +https://github.com/teddokano/AFE_NXP_Arduino +https://github.com/teddokano/BusInOut_Arduino +https://github.com/teddokano/BusRepeater_NXP_Arduino +https://github.com/teddokano/EEPROM_STM_Arduino +https://github.com/teddokano/GPIO_NXP_Arduino +https://github.com/teddokano/I2C_device_Arduino +https://github.com/teddokano/LCDDriver_NXP_Arduino +https://github.com/teddokano/LEDDriver_NXP_Arduino +https://github.com/teddokano/LevelShifter_NXP_Arduino +https://github.com/teddokano/MUX_SW_NXP_Arduino +https://github.com/teddokano/Potentiometer_ADI_Arduino +https://github.com/teddokano/RTC_NXP_Arduino +https://github.com/teddokano/TempSensor_NXP_Arduino +https://github.com/tedtoal/Button_TT +https://github.com/tedtoal/floatToString +https://github.com/tedtoal/monitor_printf +https://github.com/tedtoal/msToString +https://github.com/tedtoal/wiring_analog_SAMD_TT +https://github.com/tedtoal/XPT2046_Touchscreen_TT https://github.com/teemuatlut/TMC2130Stepper https://github.com/teemuatlut/TMC2208Stepper https://github.com/teemuatlut/TMCStepper +https://github.com/teemune/TE_SM9000_library https://github.com/tejashwikalptaru/ssd1306xled +https://github.com/Teknikio/Teknikio_Bluebird_Arduino https://github.com/Teknologiskolen/HCSR04 https://github.com/telecombretagne/YACL https://github.com/telemetryjet/telemetryjet-arduino-sdk -https://github.com/telleropnul/BigFont01_I2C https://github.com/telleropnul/BigFont01 -https://github.com/telleropnul/BigFont02_I2C +https://github.com/telleropnul/BigFont01_I2C https://github.com/telleropnul/BigFont02 +https://github.com/telleropnul/BigFont02_I2C +https://github.com/Tenveis/SimpleControl +https://github.com/terrorsl/sMQTTBroker +https://github.com/teruyamato0731/Chassis https://github.com/Testato/SoftwareWire https://github.com/texie/TeXie_arduino +https://github.com/tfeldmann/Arduino-Blinkenlight +https://github.com/tfeldmann/Arduino-SchmittTrigger https://github.com/tfeldmann/Arduino-Timeout +https://github.com/tfry-git/EmbAJAX https://github.com/tgolla/EEPROMTyped https://github.com/tgolla/GCodeParser https://github.com/tgtakaoka/libasm https://github.com/tgtakaoka/libcli +https://github.com/th-hock/EgoSmartHeaterRS485 https://github.com/ThaiEasyElec/TEE_UC20_Shield https://github.com/thapakorn613/GoGoBoard-Library https://github.com/The-STEAM-Train/STEAMbot +https://github.com/TheAngryRaven/DovesLapTimer https://github.com/thebigpotatoe/Effortless-SPIFFS https://github.com/thebigpotatoe/Feature-Variables +https://github.com/theengs/decoder https://github.com/TheFidax/digitalPinFast https://github.com/TheFidax/Rcn600 +https://github.com/TheFidax/WireSusi https://github.com/thehapyone/BareBoneSim800 https://github.com/TheJLifeX/ScrollingText8x8Display +https://github.com/thekakester/Arduino-LoRa-Sx1262 +https://github.com/thelastoutpostworkshop/FastDisplayPrototyping +https://github.com/thelastoutpostworkshop/gpio_viewer +https://github.com/TheNitek/CatGFX +https://github.com/TheNitek/NDEF +https://github.com/TheNitek/XPT2046_Bitbang_Arduino_Library +https://github.com/theprototypedesigner/tpdButton https://github.com/thesolarnomad/lora-serialization +https://github.com/TheSpaceDragon/rdv-gy512 https://github.com/TheThingsNetwork/arduino-device-lib https://github.com/TheThingsNetwork/arduino-node-lib https://github.com/TheVaporTrail/TheVaporTrail_SubPixel @@ -3941,55 +7160,90 @@ https://github.com/thijse/Arduino-EEPROMEx https://github.com/thijse/Arduino-Log https://github.com/thinger-io/Arduino-Library https://github.com/thinger-io/ClimaStick -https://github.com/thinger-io/ClimaStick https://github.com/thinger-io/Core32 https://github.com/thingface/arduino https://github.com/ThingPulse/esp8266-oled-ssd1306 https://github.com/ThingPulse/XPT2046_Touchscreen -https://github.com/thingsboard/ThingsBoard-Arduino-MQTT-SDK +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 +https://github.com/thomasfredericks/M5_PbHub +https://github.com/thomasfredericks/MicroOsc https://github.com/thomasfredericks/Stepper_28BYJ_48 https://github.com/thomasfredericks/wemos_matrix_gfx https://github.com/thomasklingbeil/SR04_Ultrasonic https://github.com/thotro/arduino-dw1000 https://github.com/tiagolobao/CS5490 +https://github.com/tig/FlashStringTable +https://github.com/tigoe/sACNSource +https://github.com/TikaFlow/UTF8ToGB2312 https://github.com/TilenS6/SerialDraw-Library +https://github.com/timhendriks93/blender-servo-animation-arduino https://github.com/timum-viw/socket.io-client -https://github.com/tinkerspy/Automaton-Esp8266 https://github.com/tinkerspy/Automaton +https://github.com/tinkerspy/Automaton-Esp8266 https://github.com/Tintin4000/INA219B https://github.com/TinyCircuits/TinyCircuits-TinyScreen_Lib https://github.com/TinyCircuits/TinyCircuits-Wireling-Lib https://github.com/tinyMLx/arduino-library +https://github.com/Tinyu-Zhao/BMI270_Sensor +https://github.com/Tinyu-Zhao/FFT +https://github.com/Tinyu-Zhao/INA3221 +https://github.com/Tinyu-Zhao/M5-Depends +https://github.com/Tinyu-Zhao/M5-Outdepends +https://github.com/Tinyu-Zhao/PCA9554 +https://github.com/Tinyu-Zhao/TFTTerminal +https://github.com/Tinyu-Zhao/TinyGPSPlus https://github.com/tipih/NRF51_Radio_library https://github.com/tkem/CarreraDigitalControlUnit https://github.com/tkem/mbino https://github.com/TKJElectronics/KalmanFilter https://github.com/TMRh20/AutoAnalogAudio +https://github.com/TMRh20/nrf_to_nrf https://github.com/TMRh20/RF24 https://github.com/TMRh20/RF24Ethernet https://github.com/TMRh20/RF24Mesh https://github.com/TMRh20/RF24Network https://github.com/TMRh20/TMRpcm +https://github.com/toannv17/DHT-Sensors-Non-Blocking https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino https://github.com/tobiasschuerg/MH-Z-CO2-Sensors +https://github.com/TobiGr/SimplifiedTimer +https://github.com/Tobiyouth/WaterFlow.git https://github.com/toblum/TetrisAnimation https://github.com/tobozo/ESP32-Chimera-Core +https://github.com/tobozo/ESP32-ENC28J60 https://github.com/tobozo/ESP32-PsRamFS 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 +https://github.com/tobozo/YAMLDuino https://github.com/Tockn/MPU6050_tockn +https://github.com/todd-herbert/absolute-mouse +https://github.com/todd-herbert/heltec-eink-modules +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 https://github.com/tommag/PCM51xx_Arduino https://github.com/tommag/TMC4210_Arduino @@ -3999,38 +7253,57 @@ https://github.com/tomstewart89/Callback https://github.com/tomstewart89/Geometry https://github.com/tomstewart89/StateSpaceControl https://github.com/ToniA/arduino-heatpumpir +https://github.com/tony-bringardner/NetworkMonitor https://github.com/toritamantaro/TN_SwitchState 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 https://github.com/tr4cker-app/tr4cker +https://github.com/Travancore-Analytics/iot-suite +https://github.com/TrebledJ/Serial-Tuning +https://github.com/Treboada/Ds1302 +https://github.com/trevorwslee/Arduino-DumbDisplay https://github.com/TriadSemi/TS4231 https://github.com/TriadSemi/TS8000 https://github.com/TridentTD/TridentTD_EasyFreeRTOS32 https://github.com/TridentTD/TridentTD_LineNotify https://github.com/TridentTD/TridentTD_SimplePair https://github.com/tripplefox/TsicSensor +https://github.com/triqadafi/TQDF_WatchOS +https://github.com/Tstoegi/MicroWakeupper https://github.com/tswfi/PE43xx +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 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 +https://github.com/u-fire/HABridge https://github.com/u-fire/Isolated_EC https://github.com/u-fire/Isolated_ISE -https://github.com/u-fire/uFire_PAR -https://github.com/u-fire/uFire_SHT20 https://github.com/u-fire/Mod-EC -https://github.com/u-fire/Mod-pH +https://github.com/u-fire/Mod-NTC https://github.com/u-fire/Mod-ORP +https://github.com/u-fire/Mod-pH https://github.com/u-fire/SHT3x +https://github.com/u-fire/steamrocket +https://github.com/u-fire/uFire_PAR +https://github.com/u-fire/uFire_SHT20 https://github.com/u0078867/Arduino-Websocket-Fast https://github.com/uArm-Developer/UArmForArduino https://github.com/Uberi/Arduino-CommandParser @@ -4044,22 +7317,43 @@ https://github.com/UBTEDU/uKitExplore-library https://github.com/ucloud/ucloud-iot-sdk-arduino https://github.com/udoklein/dcf77 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 +https://github.com/ultimaterobotics/uMyo_BLE +https://github.com/ultimaterobotics/uMyo_RF24 +https://github.com/UnexpectedMaker/esp32s3-arduino-helper https://github.com/UnexpectedMaker/Neo7Segment https://github.com/UnexpectedMaker/tinypico-helper +https://github.com/unit-system-exports/unit-system-arduino +https://github.com/unref-ptr/lwIOLink +https://github.com/upbeatlabs/UpbeatLabs_MCP39F521 +https://github.com/usblink/waver +https://github.com/usini/usini_discord_webhook +https://github.com/usk-johnny-s/UTF8_Print_AdaGfx https://github.com/uStepper/egoShieldS https://github.com/uStepper/egoShieldTeach https://github.com/uStepper/egoShieldTimeLapse -https://github.com/uStepper/uStepper-S-lite https://github.com/uStepper/uStepper +https://github.com/uStepper/uStepper-S-lite https://github.com/uStepper/uStepperS +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 +https://github.com/vChavezB/SimpleJ1939 +https://github.com/vChavezB/uc-os3-arduino-due.git https://github.com/VCSFA-MARS/TSLPB https://github.com/vdeconinck/QC3Control https://github.com/Velleman/ALLBOT-lib @@ -4067,9 +7361,11 @@ https://github.com/Velleman/K1200 https://github.com/Velleman/Tuyav https://github.com/Velleman/VMA11 https://github.com/Velleman/VMA430_GPS_Module -https://github.com/VertorixAU/Vertorix_VT1100_Mini -https://github.com/VertorixAU/Vertorix_VT1300_Shield +https://github.com/verdanatech/glpi_esp8266.git +https://github.com/VernierST/VernierLib +https://github.com/vgroenhuis/PneumaticStepper https://github.com/viamgr/Arduino-Awesome-Click-Button +https://github.com/Victor-Kalenda/LoRa_Library https://github.com/victorsvi/MatrixKeypad https://github.com/vidor-libraries/USBBlaster https://github.com/vidor-libraries/VidorBoot @@ -4077,7 +7373,12 @@ https://github.com/vidor-libraries/VidorGraphics https://github.com/vidor-libraries/VidorPeripherals https://github.com/VincentLim/TimerFive https://github.com/VincentLim/TimerFour +https://github.com/vindar/ILI9341_T4 +https://github.com/vindar/ILI9342_T4 https://github.com/vintlabs/fauxmoESP +https://github.com/viralinkio/ViraLink-MQTT-Client +https://github.com/virtual-maker/MaterialBoard +https://github.com/vishesh-varma/DWIN https://github.com/vishnumaiea/ISL1208-RTC-Library https://github.com/vishnumaiea/ptScheduler https://github.com/vishnumaiea/R30X-Fingerprint-Sensor-Library @@ -4092,9 +7393,24 @@ https://github.com/vivitainc/VivicoreSerial https://github.com/VizIoT-com/viziot-mqtt-client-arduino https://github.com/VMinute/RootCertificates https://github.com/vonnieda/ScreenUi +https://github.com/vortigont/esp32-flashz +https://github.com/vortigont/ESPAsyncButton +https://github.com/vortigont/pzem-edl/ +https://github.com/vovagorodok/ArduinoBleChess +https://github.com/vovagorodok/ArduinoBleOTA +https://github.com/vovagorodok/ArduinoBleBattery +https://github.com/vovagorodok/ArduinoPin +https://github.com/vovagorodok/ArduinoStreamLogger +https://github.com/vovagorodok/ArrayUtils +https://github.com/vovagorodok/PicChess +https://github.com/vovagorodok/Servo 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 https://github.com/Warlib1975/Irms_calc https://github.com/Warlib1975/ModbusConfig @@ -4105,15 +7421,21 @@ https://github.com/waspinator/CD74HC4067 https://github.com/wayoda/LedControl https://github.com/WD24/AD5231-Arduino-Library https://github.com/weckbach/AstroMech +https://github.com/weedmanu/ToneESP32 https://github.com/werktag/Adaino +https://github.com/WeSpeakEnglish/ANTIRTOS.git +https://github.com/Wh1teRabbitHU/ADS1115-Driver https://github.com/Wh1teRabbitHU/Arduino-I2C https://github.com/Wh1teRabbitHU/DAC121C08x-Driver https://github.com/Wh1teRabbitHU/EEPROMAdapter +https://github.com/Wh1teRabbitHU/LTR-329ALS-01 https://github.com/Wh1teRabbitHU/RX8010SJ +https://github.com/Wh1teRabbitHU/SiC45x https://github.com/WhaddaMakers/bar_graph_module https://github.com/whatnick/ATM90E26_Arduino https://github.com/whatnick/CS5464_Arduino https://github.com/WhoIsMrRobotics/brainzy-library +https://github.com/wicked-rainman/ESP32Dispatcher https://github.com/WifWaf/AT24CM01 https://github.com/WifWaf/MCP45HVX1 https://github.com/WifWaf/MH-Z19 @@ -4123,7 +7445,11 @@ https://github.com/will2055/AS6212-Arduino-Library https://github.com/willie68/RCReceiver https://github.com/wilmouths/LM35 https://github.com/wilmouths/RGBLed +https://github.com/winkelict/ADXL362 +https://github.com/winkelict/TinyATCommandParser https://github.com/winlinvip/SimpleDHT +https://github.com/winner10920/ESPSerialFlasher +https://github.com/WinsonAPP/WinsonLibrary https://github.com/WiserUFBA/ArduMideaWrapper https://github.com/WitchCraftWorks/arduino-MCP2515-nb https://github.com/witnessmenow/arduino_twitch_api @@ -4131,13 +7457,13 @@ 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 https://github.com/witnessmenow/arduino-twitter-api https://github.com/witnessmenow/arduino-youtube-api https://github.com/witnessmenow/BPLib +https://github.com/witnessmenow/file-fetcher-arduino https://github.com/witnessmenow/tindie-api-arduino https://github.com/witnessmenow/Universal-Arduino-Telegram-Bot https://github.com/witnessmenow/youtube-livestream-arduino @@ -4147,15 +7473,19 @@ https://github.com/wizard97/Embedded_RingBuf_CPP https://github.com/wizard97/SimplyAtomic https://github.com/Wiznet/WizFi250_arduino_library https://github.com/Wiznet/WizFi310_arduino_library +https://github.com/WK-Software56/AdvKeyPad https://github.com/wloche/LcdProgressBar https://github.com/wloche/LcdProgressBarDouble https://github.com/wokwi/TinyDebug +https://github.com/wolfSSL/Arduino-wolfSSL https://github.com/wolfv6/keybrd https://github.com/Wolkabout/WolkConnect-Arduino https://github.com/wollewald/ADS1115_WE +https://github.com/wollewald/ADS1220_WE https://github.com/wollewald/ADXL345_WE https://github.com/wollewald/AP3216_WE https://github.com/wollewald/BH1750_WE +https://github.com/wollewald/EEPROM_SPI_WE https://github.com/wollewald/ICM20948_WE https://github.com/wollewald/INA219_WE https://github.com/wollewald/INA226_WE @@ -4163,6 +7493,11 @@ https://github.com/wollewald/MCP23017_WE https://github.com/wollewald/MPU9250_WE https://github.com/wollewald/SI1145_WE https://github.com/wollewald/VL6180X_WE +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 @@ -4170,10 +7505,26 @@ https://github.com/WPIRoboticsEngineering/ReactorProtocol https://github.com/WPIRoboticsEngineering/wpi-32u4-library https://github.com/wroob-io/arduino-wroobimp https://github.com/wyolum/jsonlib +https://github.com/wzwyz/CrystalC +https://github.com/wzwyz/Stringcalculater https://github.com/x2bus/EnergyBoard +https://github.com/x821938/EasyLogger +https://github.com/x821938/elog +https://github.com/Xairooo/SimpleTime https://github.com/XasWorks/Circios-Library +https://github.com/xavjb/KiddeeExpress +https://github.com/XbergCode/DateTimeFunctions +https://github.com/XbergCode/DigitSeparator +https://github.com/XbergCode/MillisCounter +https://github.com/XbergCode/Uptime https://github.com/xcoder123/FlexiPlot_Arduino +https://github.com/xiangfuli/Arduino-L298NDriver +https://github.com/xiaoming-sun6/SerialDebugger +https://github.com/XiloXL/Powerbaas https://github.com/xinyu198736/arduino-aliyun-iot-sdk +https://github.com/Xinyuan-LilyGO/LilyGo-AMOLED-Series.git +https://github.com/Xinyuan-LilyGO/LilyGo-T-RGB +https://github.com/xiongyu0523/AzureRTOS-ThreadX-For-Arduino https://github.com/xoseperez/debounceevent https://github.com/xoseperez/eeprom_rotate https://github.com/xoseperez/eeprom32_rotate @@ -4183,21 +7534,60 @@ https://github.com/xoseperez/my92xx https://github.com/xoseperez/s7xg https://github.com/xreef/ABB_Aurora_Solar_Inverter_Library https://github.com/xreef/DHT12_sensor_library +https://github.com/xreef/EByte_LoRa_E22_Series_Library +https://github.com/xreef/EByte_LoRa_E220_Series_Library +https://github.com/xreef/EByte_RF_E70_Series_Library https://github.com/xreef/EMailSender https://github.com/xreef/LoRa_E32_Series_Library https://github.com/xreef/PCF8574_library https://github.com/xreef/PCF8575_library https://github.com/xreef/PCF8591_library +https://github.com/xreef/SimpleFTPServer +https://github.com/Xylopyrographer/BooleanButton +https://github.com/Xylopyrographer/LiteLED +https://github.com/Xylopyrographer/XP_Button https://github.com/yannidd/ukesf-sixth-formers +https://github.com/yanranxiaoxi/AntiKeyRepetition.h +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-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/YFROBOT-TM/Yfrobot-PS2UART-Library +https://github.com/yhur/ConfigPortal32 +https://github.com/yhur/ConfigPortal8266 https://github.com/YiannisBourkelis/Uptime-Library https://github.com/yinkou/Arduboy-TinyFont https://github.com/yknivag/ESP_OTA_GitHub https://github.com/yknivag/PxMatrixChristmasIcons https://github.com/yoprogramo/ESP_QRcode +https://github.com/yoprogramo/QRcode_eSPI +https://github.com/yoprogramo/QRcode_ST7789 +https://github.com/yoprogramo/QRcodeDisplay +https://github.com/yoprogramo/QRcodeEink +https://github.com/yoprogramo/QRcodeOled +https://github.com/YoupiLab/YLEsp8266 +https://github.com/YoupiLab/YLSim800Lib +https://github.com/YoupiLab/YoupiLabEsp32 +https://github.com/YoupiLab/YoupiLabESP32_IOT +https://github.com/YoupiLab/YoupiLabEsp8266 +https://github.com/YoupiLab/YoupiLab_IoT_ESP.git +https://github.com/ysard/MyOwnBricks +https://github.com/ysard/PT6312_VFD_Arduino_Library +https://github.com/ysard/TCS34725 +https://github.com/yuki-kurosawa/SuperPico-TinyMenu +https://github.com/yuki-miyakoshi/youkey_stepper https://github.com/YuriiSalimov/AD_Sensors https://github.com/YuriiSalimov/AxisJoystick https://github.com/YuriiSalimov/MAX6675_Thermocouple @@ -4207,9 +7597,14 @@ https://github.com/YuriiSalimov/YK04_Module https://github.com/Yurik72/ESPHap https://github.com/yurilopes/SPIFFSIniFile https://github.com/YuuichiAkagawa/Arduino-UHS2MIDI +https://github.com/yuuu/M5StampC3LED https://github.com/yyuri/Switch_lib +https://github.com/Z01NE/MyAlarm https://github.com/z3t0/Arduino-IRremote https://github.com/ZachEnglish/NanoProtoShield +https://github.com/zakarialaoui10/PowerMonitor +https://github.com/zakarialaoui10/ZikoMatrix +https://github.com/ZakKemble/LM73 https://github.com/Zanduino/BME280 https://github.com/Zanduino/BME680 https://github.com/Zanduino/Cubigel @@ -4221,18 +7616,37 @@ https://github.com/Zanduino/MB85_FRAM https://github.com/Zanduino/MCP7940 https://github.com/Zanduino/MicrochipSRAM https://github.com/Zanduino/RotaryEncoder -https://github.com/Zanduino/SmoothLED_8bit https://github.com/Zanduino/SmoothLED +https://github.com/Zanduino/SmoothLED_8bit https://github.com/Zanduino/VCNL4010 +https://github.com/Zentser/esp-zentser-sdk +https://github.com/Zeppelin500/MBusinoLib https://github.com/Zerfoinder/EasyPin https://github.com/zerokol/eFLL https://github.com/zfields/nes-rob https://github.com/zharijs/FDC2214 https://github.com/zhenek-kreker/MAX6675 +https://github.com/Zhu-jiatong/AccessPermissionManager +https://github.com/Zhu-jiatong/CredentialManager +https://github.com/Zhu-jiatong/FilesystemAccessInterface +https://github.com/Zhu-jiatong/FilesystemUtility +https://github.com/Zhu-jiatong/SessionManager +https://github.com/Zhu-jiatong/SQLiteDatabaseManager +https://github.com/zimbora/esp32-alarm +https://github.com/zimbora/esp32-autorequest +https://github.com/zimbora/esp32-BG95 +https://github.com/zimbora/esp32-BLE112 +https://github.com/zimbora/esp32-ModbusRTU +https://github.com/zimbora/esp32-modem-freeRTOS +https://github.com/zimbora/esp32-sysfile +https://github.com/zimbora/ESP32Logger2 +https://github.com/ZinggJM/GFX_Extensions https://github.com/ZinggJM/GFX_Root https://github.com/ZinggJM/GxEPD https://github.com/ZinggJM/GxEPD2 +https://github.com/ZinggJM/ILI9486_SPI https://github.com/zischknall/BohleBots_BNO055 +https://github.com/zivoy/AdaptiveMapping https://github.com/zkemble/nRF905-arduino https://github.com/zoubworldArduino/PinExtender https://github.com/zoubworldArduino/WireUtility @@ -4247,355 +7661,930 @@ https://github.com/zoubworldArduino/ZSharpIR https://github.com/ZulNs/LCD_HD44780 https://github.com/ZulNs/MultitapKeypad https://github.com/ZulNs/STM32F1_RTC +https://github.com/ZulNs/TonePlayer https://github.com/Zuntara/Arduino.AdagioPro +https://github.com/zvonler/CircuitPlaygroundGestures +https://github.com/zvonler/DebouncedButton +https://github.com/zvonler/DebouncedLDR https://github.com/Zwer2k/WeatherStationDataRx https://gitlab.com/airbornemint/arduino-protothreads +https://gitlab.com/alexpr0/ssd1306wire.git https://gitlab.com/Ama_De/as5200l-arduino https://gitlab.com/arduino-libraries/i2commands https://gitlab.com/arduino-libraries/stackstring https://gitlab.com/arduino-libraries/stens-timer https://gitlab.com/arduino23/ExtendedTouchEvent +https://gitlab.com/atesin/minimallinkedlist_arduino +https://gitlab.com/atesin/XxHash_arduino +https://gitlab.com/ben-bartholomew/adafruit_max9744_library https://gitlab.com/chatpeth/nx2003 https://gitlab.com/dariusmihai/Arduino_Lib_MorePins +https://gitlab.com/dcoded.nl/non-blocking-analog-led-driver +https://gitlab.com/devgiants/embedded/arduino/libraries/jsn-sr-04t https://gitlab.com/Enrico204/sam32wifiesp +https://gitlab.com/escalator-home-automation/daily-service +https://gitlab.com/escalator-home-automation/escalator-switch +https://gitlab.com/F-Schmidt/ulm_weatherballoon https://gitlab.com/friml/is31fl3733 +https://gitlab.com/hamishcunningham/unPhoneLibrary +https://gitlab.com/konnekting/KonnektingDeviceLibrary https://gitlab.com/konnekting/KonnektingFlashStorage https://gitlab.com/painlessMesh/painlessMesh https://gitlab.com/rhombio/rhio-LIS2HH12 +https://gitlab.com/riscv-vega/vega-sensor-libraries/communication/firebase-arduino +https://gitlab.com/riscv-vega/vega-sensor-libraries/communication/vega_arduinoble +https://gitlab.com/riscv-vega/vega-sensor-libraries/communication/vega_irremote +https://gitlab.com/riscv-vega/vega-sensor-libraries/communication/vega_softwareserial +https://gitlab.com/riscv-vega/vega-sensor-libraries/communication/vega_wifinina +https://gitlab.com/riscv-vega/vega-sensor-libraries/communication/vegaiot_busio +https://gitlab.com/riscv-vega/vega-sensor-libraries/display/vega_chainableled +https://gitlab.com/riscv-vega/vega-sensor-libraries/display/vega_sh1106 +https://gitlab.com/riscv-vega/vega-sensor-libraries/display/vega_st7735_and_st7789 +https://gitlab.com/riscv-vega/vega-sensor-libraries/sensors/vega_bmi088 +https://gitlab.com/riscv-vega/vega-sensor-libraries/sensors/vega_max30100 +https://gitlab.com/riscv-vega/vega-sensor-libraries/sensors/vega_max30102 +https://gitlab.com/riscv-vega/vega-sensor-libraries/sensors/vega_mlx90614 +https://gitlab.com/riva-lab/fastIO +https://gitlab.com/riva-lab/SevenSegmentPanel +https://gitlab.com/riva-lab/SimpleBME280 +https://gitlab.com/riva-lab/SimpleMeteoCalc https://gitlab.com/robostarter/starterremote +https://gitlab.com/softsysco/grove-as3935-lightning-sensor +https://gitlab.com/ug-cp/fast_samd21_tc +https://gitlab.com/UJUR007/mpu6050_ind https://gitlab.com/virchow-personal/arduino-ledflasher https://gitlab.com/xoan/escornabot-extlib -https://gitlab.com/yesbotics/libs/arduino/average-value -https://gitlab.com/yesbotics/libs/arduino/interval-callback -https://gitlab.com/yesbotics/libs/arduino/timeout-callback -https://gitlab.com/yesbotics/libs/arduino/voltmeter -https://gitlab.com/yesbotics/simple-serial-protocol/simple-serial-protocol-arduino +https://github.com/yesbotics/average-value +https://github.com/yesbotics/interval-callback +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 https://gitlab.com/zaber-core-libs/zaber-ascii-for-arduino https://gitlab.com/zaber-core-libs/zaber-binary-for-arduino -https://github.com/FPGAArcade/replay_mkrvidor4000 -https://github.com/Picovoice/picovoice-arduino-en -https://github.com/Picovoice/picovoice-arduino-de -https://github.com/Picovoice/picovoice-arduino-es -https://github.com/Picovoice/picovoice-arduino-fr -https://github.com/Picovoice/porcupine-arduino-en -https://github.com/Picovoice/porcupine-arduino-de -https://github.com/Picovoice/porcupine-arduino-fr -https://github.com/Picovoice/porcupine-arduino-es -https://github.com/khoih-prog/MBED_RPI_PICO_TimerInterrupt -https://github.com/tigoe/sACNSource -https://github.com/PodgroupConnectivity/PodEnoSim -https://github.com/bitbank2/unzipLIB -https://github.com/maxmacstn/ESP32-Canon-BLE-Remote -https://github.com/Seeed-Studio/Grove-Ranging-sensor-VL53L0X -https://github.com/khoih-prog/LittleFS_Mbed_RP2040 -https://github.com/grafana/arduino-snappy-proto -https://github.com/grafana/arduino-prom-loki-transport -https://github.com/grafana/loki-arduino -https://github.com/grafana/prometheus-arduino -https://github.com/fbiego/MpesaSTK -https://github.com/khoih-prog/RP2040_RTC -https://github.com/Seeed-Studio/Seeed_Arduino_Audio -https://github.com/rneurink/VL53L1X_ULD -https://github.com/kmpelectronics/KMP_RS485 -https://github.com/GLEE2023/GLEE2023 -https://github.com/ianhattwick/controlVoltage -https://github.com/jihoonkimtech/ClockForSeg_Lib -https://github.com/sebmillet/RF433any -https://github.com/sebmillet/DelayExec -https://github.com/otadrive/OTAdriveESP -https://github.com/khoih-prog/RP2040_SD -https://github.com/neosarchizo/am1008w_k_i2c -https://github.com/musicplayer0/solar2lunar -https://github.com/cotestatnt/esp-fs-webserver -https://github.com/sparkfun/SparkFun_AS108M_Fingerprint_Scanner_Arduino_Library -https://github.com/KevinMiller77/TwoWayESP -https://github.com/FANTM/libdevlpr -https://github.com/Incuvers/macro-logger -https://github.com/nailujx86/ESP8266_multipart -https://github.com/skabrits/StringAction -https://github.com/skabrits/SpeedMeasurer -https://github.com/sebmillet/rf433send -https://github.com/cvmanjoo/AT24Cxx -https://github.com/ekkai/WizFi360 -https://github.com/Silver-Fang/TimersOneForAll -https://github.com/Rupakpoddar/ESP8266Firebase -https://github.com/Rupakpoddar/ESP8266Webhook -https://github.com/Ant2000/CustomJWT -https://github.com/DavidArmstrong/SiderealPlanets -https://github.com/rneurink/LP50XX/ -https://github.com/Treboada/Ds1302 -https://github.com/Fraunhofer-IMS/AIfES_for_Arduino -https://github.com/Matrix-Robotics/MatrixUltrasonicSensor -https://github.com/Matrix-Robotics/MatrixColorSensor -https://github.com/Matrix-Robotics/MatrixMotorExtension -https://github.com/Matrix-Robotics/MatrixController -https://github.com/Matrix-Robotics/MatrixServoExtension -https://github.com/Matrix-Robotics/MatrixMotionSensor -https://github.com/khoih-prog/WebServer_WT32_ETH01 -https://github.com/tig/FlashStringTable -https://github.com/radariq/arduino-library -https://gitlab.com/riva-lab/fastIO -https://gitlab.com/riva-lab/SevenSegmentPanel -https://gitlab.com/riva-lab/SimpleBME280 -https://gitlab.com/riva-lab/SimpleMeteoCalc -https://github.com/konikoni428/BM64_arduino -https://github.com/MarlinFirmware/U8glib-HAL -https://github.com/Abdurraziq/ZMPT101B-arduino -https://github.com/khoih-prog/AsyncUDP_WT32_ETH01 -https://github.com/bitbank2/PNGenc -https://github.com/italo-coelho/pushButton -https://github.com/Flinduino/Flinduino_SensorKit -https://github.com/cotestatnt/AsyncTelegram2 -https://github.com/khoih-prog/WiFiWebServer_RTL8720 -https://github.com/geeny/geenymodem -https://github.com/mandulaj/PZEM-004T-v30/ -https://github.com/Silver-Fang/Low-level-quick-digital-IO -https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01 -https://github.com/akkoyun/Statistical -https://github.com/akkoyun/Battery -https://github.com/ciniml/WireGuard-ESP32-Arduino -https://github.com/SergeSkor/SSVRGBGradientCalc -https://github.com/filoconnesso/Tweakly -https://github.com/akkoyun/B100AA -https://github.com/akkoyun/B902AA -https://github.com/lequan81/vn_lunar -https://github.com/SergeSkor/SSVTimer -https://github.com/careyi3/MovingAverage -https://github.com/SergeSkor/SSVXYMatrix -https://github.com/Guswib/Potentiostat_Shield/ -https://github.com/dattasaurabh82/TinyMegaI2C -https://github.com/dattasaurabh82/RV8803Tiny -https://github.com/stm32duino/X-NUCLEO-IHM01A1 -https://github.com/m5stack/UNIT_4RELAY -https://github.com/m5stack/UNIT_ENV -https://github.com/m5stack/ATOM_DTU_NB -https://github.com/m5stack/ATOM_DTU_LoRaWAN -https://github.com/DmytroKorniienko/EmbUI -https://github.com/SergeSkor/SSVXYMatrixText -https://github.com/danilopinotti/Battery18650Stats -https://github.com/WonderCRM/CRMui3 -https://github.com/ricardoquesada/bluepad32-arduino -https://github.com/AeroboticsGlobalTeam/AEBO -https://github.com/shubhamtrivedi95/UltraDistSensor -https://github.com/m5stack/MODULE_GRBL13.2 -https://github.com/Zentser/esp-zentser-sdk -https://github.com/SergeSkor/SSVLongTime -https://github.com/SergeSkor/SSVAnySensor -https://github.com/SergeSkor/SSVNTPCoreClass -https://github.com/SergeSkor/SSVQueueStackArray -https://github.com/SergeSkor/SSVWaitForStringInStream -https://github.com/khoih-prog/ESP32_C3_TimerInterrupt -https://github.com/guttih/DisplayMenu -https://github.com/noah1510/unit-system-adruino -https://github.com/sakabug/Bugtton -https://github.com/xiongyu0523/AzureRTOS-ThreadX-For-Arduino -https://github.com/dhi-nikhil/indhi-lib-arduino-esp32 -https://github.com/sparkfun/SparkFun_Tsunami_Qwiic_Arduino_Library -https://github.com/khoih-prog/ESP32_S2_ISR_Servo -https://github.com/khoih-prog/ESP32_C3_ISR_Servo -https://github.com/crmoratelli/SupmeaDO7016 -https://github.com/todd-herbert/heltec-eink-modules -https://github.com/DavidArmstrong/WMM_Tinier -https://github.com/khoih-prog/FlashStorage_RTL8720 -https://github.com/Basirk/I2CHelper -https://github.com/khoih-prog/RTL8720_TimerInterrupt -https://github.com/astuder/SwarmTile -https://github.com/khoih-prog/RTL8720_RTC -https://github.com/fbiego/CST816S -https://github.com/bitbank2/JPEGENC -https://github.com/khoih-prog/ESP32_New_TimerInterrupt -https://github.com/khoih-prog/ESP32_New_ISR_Servo -https://github.com/BEAT-System/SerialCom -https://github.com/SchooMyDevelopment/SchooMyUtilities -https://github.com/khoih-prog/FlashStorage_STM32F1 -https://bitbucket.org/David_Such/nexgen_motorshield -https://github.com/khoih-prog/STM32_ISR_Servo -https://github.com/khoih-prog/RP2040_ISR_Servo -https://github.com/khoih-prog/SAMD_ISR_Servo -https://github.com/khoih-prog/NRF52_ISR_Servo -https://github.com/adrian200223/Simple5641AS -https://github.com/pablo-sampaio/easy_mfrc522/ -https://github.com/lozziboy/arduino-serial-variable-table -https://github.com/levkovigor/MMC34160PJ -https://github.com/levkovigor/ppposclient -https://github.com/levkovigor/GT811 -https://github.com/iotkaran/Arduino -https://github.com/levkovigor/LTR390 -https://github.com/1452206376/CH9328-Keyboard -https://github.com/9glt/arduino-attiny85-mcp23017-library -https://github.com/9glt/arduino-attiny85-fastpin-library -https://github.com/khoih-prog/FS_Nano33BLE -https://github.com/EscapeAutomate/ArduinoLib -https://github.com/Seeed-Studio/Seeed_Arduino_Mic -https://github.com/107-systems/107-Arduino-BoostUnits -https://github.com/107-systems/107-Arduino-Sensor -https://github.com/Dirk-/NanoBLEFlashPrefs -https://github.com/natnqweb/Motor_PID -https://github.com/natnqweb/Simpletimer -https://github.com/natnqweb/SD_card_logger -https://github.com/francobasaglia/MagicPot -https://github.com/jkingsman/Z80Mega -https://github.com/stm32duino/NFC-RFAL -https://github.com/stm32duino/ST25R3911B -https://github.com/stm32duino/X-NUCLEO-NFC05A1 -https://github.com/natnqweb/SkyMap -https://github.com/andhieSetyabudi/hx710b_arduino -https://github.com/Flowduino/LithiumPowered -https://github.com/Z01NE/MyAlarm -https://github.com/khoih-prog/LittleFS_Portenta_H7 -https://github.com/someweisguy/esp_dmx -https://github.com/jaredliw/PikaBot -https://github.com/desertgreg/PixelGrid -https://github.com/Open-Acidification/TankController -https://github.com/khoih-prog/WiFiManager_Portenta_H7_Lite -https://github.com/khoih-prog/Ethernet_Manager_Portenta_H7 -https://github.com/andriell/arduino-library-WT2003M02-mp3-decoder -https://github.com/khoih-prog/Portenta_H7_TimerInterrupt -https://github.com/khoih-prog/Portenta_H7_ISR_Servo -https://github.com/Seeed-Studio/Seeed_Arduino_Sketchbook -https://github.com/terrorsl/sMQTTBroker -https://github.com/FeralAI/MPG/ -https://github.com/winner10920/ESPSerialFlasher -https://github.com/khoih-prog/ESP32_PWM -https://github.com/khoih-prog/ESP8266_PWM -https://github.com/khoih-prog/Portenta_H7_PWM -https://github.com/tamctec/ft62x6-arduino -https://github.com/tamctec/gt911-arduino -https://github.com/awgrover/Every-for-arduino -https://github.com/bobboteck/CWLibrary -https://github.com/khoih-prog/Portenta_H7_Slow_PWM -https://github.com/SpaceTrekKSC/EasyStarterKit -https://github.com/khoih-prog/RP2040_PWM -https://github.com/khoih-prog/MBED_RP2040_Slow_PWM -https://github.com/khoih-prog/RP2040_Slow_PWM -https://github.com/khoih-prog/nRF52_MBED_Slow_PWM -https://github.com/khoih-prog/nRF52_Slow_PWM -https://github.com/Wh1teRabbitHU/ADS1115-Driver -https://github.com/khoih-prog/AVR_Slow_PWM -https://github.com/khoih-prog/megaAVR_Slow_PWM -https://github.com/khoih-prog/Teensy_Slow_PWM -https://github.com/arduino-libraries/Arduino_OplaUI -https://github.com/khoih-prog/SAMDUE_Slow_PWM -https://github.com/khoih-prog/STM32_Slow_PWM -https://github.com/shkoo/MeshGnome -https://github.com/khoih-prog/STM32_PWM -https://github.com/michpro/XTEA-Cipher -https://github.com/khoih-prog/SAMD_Slow_PWM -https://github.com/khoih-prog/Portenta_H7_AsyncTCP -https://github.com/khoih-prog/Portenta_H7_AsyncWebServer -https://github.com/arduino-libraries/Arduino_BHY2 -https://github.com/arduino-libraries/Arduino_BHY2Host -https://github.com/khoih-prog/Portenta_H7_AsyncUDP -https://github.com/mkhuthir/Si4703 -https://github.com/FrankBoesing/FastCRC -https://github.com/Wh1teRabbitHU/SiC45x -https://github.com/stm32duino/ST25R3916 -https://github.com/stm32duino/X-NUCLEO-NFC06A1 -https://github.com/khoih-prog/Portenta_H7_AsyncHTTPRequest -https://github.com/maxint-rd/TM16xx -https://github.com/ktsai69/Vishay_VCNL4200 -https://github.com/rei-vilo/PDLS_EXT3_Basic -https://github.com/rei-vilo/PDLS_EXT3_Basic_Fast -https://github.com/A-Vision-Software/AVision_ESP8266 -https://gitlab.com/yanranxiaoxi/AntiKeyRepetition.h -https://github.com/khoih-prog/AsyncTCP_SSL -https://github.com/khoih-prog/AsyncHTTPSRequest_Generic -https://github.com/stm32duino/ST25R95 -https://github.com/natnqweb/Functional_button -https://github.com/natnqweb/Mapf -https://github.com/nitz/Cie1931 -https://github.com/domiluci/LiquidCrystal_NKC -https://github.com/XiloXL/Powerbaas -https://github.com/heiloworodl/StepMotor4windings -https://github.com/xreef/SimpleFTPServer -https://github.com/xreef/EByte_LoRa_E22_Series_Library -https://github.com/monkcs/devuino -https://github.com/TheFidax/WireSusi -https://github.com/lansium-dev/lansium-arduino -https://github.com/Jueff/SoftwareSerialTX -https://github.com/0neblock/Arduino_SNMP -https://github.com/stm32duino/VL53L5CX -https://github.com/stm32duino/X-NUCLEO-53L5A1 -https://github.com/ArtronShop/Artron_DS1338 -https://github.com/Matrix-Robotics/MatrixLaserSensor -https://github.com/verdanatech/glpi_esp8266.git -https://github.com/dl9sec/AioP13 -https://github.com/gravitech-engineer/AIS_IoT_4G -https://github.com/BCISOFT/OvhAPI -https://github.com/BertanT/Arduino-RGBWConverter -https://github.com/michaellee8/TimedState -https://github.com/tuya/tuya-ble-mcu-sdk-arduino-library -https://github.com/cbm80amiga/RREFont.git -https://github.com/iotexproject/arduino-sdk -https://github.com/sensirion/arduino-gas-index-algorithm -https://github.com/sensirion/arduino-i2c-sdp -https://github.com/sensirion/arduino-i2c-sgp40 -https://github.com/sensirion/arduino-i2c-sgp41 -https://github.com/sensirion/arduino-i2c-svm41 -https://github.com/sensirion/arduino-uart-svm41 -https://github.com/edge-ml/EdgeML-Arduino -https://github.com/tuya/tuya-zigbee-mcu-sdk-arduino-library -https://github.com/dizcza/sdpsensor-esp-arduino -https://github.com/jpiat/PIOSpi -https://github.com/mobizt/ESP-Line-Notify -https://github.com/yourapiexpert/ATCommands -https://github.com/kolabse/KolabseCarsCan -https://github.com/Coder-X15/MCUOS.git -https://github.com/John-Karatka/24LC64F -https://github.com/dndubins/QuickStats -https://github.com/vChavezB/uc-os3-arduino-due.git -https://github.com/fabriziop/FIFOEE.git -https://github.com/sparkfun/SparkFun_Qwiic_Fan_Arduino_Library -https://github.com/viralinkio/ViraLink-Arduino-SDK -https://github.com/RocketLauncherCDMX/RocketLauncher_RobbusKidsy -https://github.com/autowp/arduino-mcp2515 -https://github.com/xiaoming-sun6/SerialDebugger -https://github.com/coryjfowler/MCP_CAN_lib -https://github.com/dmdhrumilmistry/DeviceController -https://github.com/soracom-labs/soracom-arc-esp32-arduino -https://github.com/neosarchizo/ps_33d_i2c -https://github.com/SyntaxHarvy/HACWifiManager -https://github.com/SyntaxHarvy/HACTimers -https://github.com/ysard/MyOwnBricks -https://github.com/sebmillet/RF433recv -https://github.com/spklpool/Carduino -https://github.com/rneurink/PCA9622 -https://github.com/xavjb/KiddeeExpress -https://github.com/mobizt/ESP-Google-Sheet-Client -https://github.com/ysard/TCS34725 -https://github.com/dndubins/EEPROMsimple -https://github.com/dndubins/SRAMsimple -https://github.com/andhieSetyabudi/MCP23017_LCD12864 -https://github.com/theengs/decoder -https://github.com/gavinlyonsrepo/MAX471 -https://github.com/Dlloydev/sTune -https://github.com/stm32duino/VL53L4CD.git -https://github.com/stm32duino/X-NUCLEO-53L4A1.git -https://github.com/adafruit/Adafruit_Wippersnapper_Arduino -https://github.com/shufflebits/GU140X32F-7703A -https://github.com/cjsgoncalves/ArduinoIDE-Utils -https://github.com/makerspaceleiden/tee-log -https://github.com/cafeiot/CafeIOT_Arduino -https://github.com/cafeiot/CafeIOT_Esp8266 -https://github.com/cafeiot/CafeIOT_Esp32 -https://github.com/Sensirion/arduino-i2c-sen5x -https://github.com/cjsgoncalves/ArduinoIDE-UtilsBoards -https://github.com/ewertons/esp32-azureiotkit-sensors -https://github.com/Kei0208/SUSHI-IO-EXP -https://github.com/chandrawi/LoRaRF-Arduino -https://github.com/MClarkDev/ArylicHTTP -https://github.com/malokhvii-eduard/arduino-bme280 -https://github.com/malokhvii-eduard/arduino-mhz19 -https://github.com/stm32duino/X-NUCLEO-IHM15A1 -https://github.com/dirkohme/Clock -https://github.com/dirkohme/MCP3421 -https://github.com/dirkohme/LED -https://github.com/dirkohme/Beeper -https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library -https://github.com/akkoyun/Telit_xE910 -https://github.com/YFROBOT-TM/Yfrobot-I2C-LineFollowSensor-Library -https://github.com/Lynxmotion/Arduino-PPM -https://github.com/Seeed-Studio/Seeed_Arduino_24GHz_Radar_Sensor -https://github.com/danyev3/JAREL -https://github.com/vChavezB/NoBlockEEPROM -https://github.com/Seeed-Studio/Seeed_Arduino_8Channel_I2C_Hub +https://github.com/BenCestMoiQuoi/I2C_Insarianne +https://github.com/mkeras/EmbeddedSparkplugNode +https://github.com/Blue-Crescent/JJYReceiver +https://github.com/io7lab/IO7F8266 +https://github.com/kenichi884/M5StackToio +https://github.com/io7lab/IO7F32 +https://github.com/thelastoutpostworkshop/virtualScreen +https://github.com/lualtek/lualtek-rakrui +https://github.com/EmotiBit/EmotiBit_SimpleFTPServer +https://github.com/The-Randalorian/Rando-HX711-Arduino-Library +https://github.com/mbrugman67/Uno-Minimal-HUB75 +https://github.com/derekcurry/super_easing +https://github.com/byrmeng/DeneyapKart.QRCodeReader +https://github.com/Jens3382/xy6020l +https://github.com/braydenanderson2014/ArduinoArrayList +https://github.com/braydenanderson2014/ArduinoDoubleLinkedList +https://github.com/braydenanderson2014/ArduinoLinkedList +https://github.com/braydenanderson2014/SimpleVector +https://github.com/braydenanderson2014/ArduinoSDList +https://github.com/braydenanderson2014/ArduinoHashtable +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 +https://github.com/BestModules-Libraries/BM22S3421-1 +https://github.com/BestModules-Libraries/BM25S3421-1 +https://github.com/BestModules-Libraries/BM42S5321-1 +https://github.com/BestModules-Libraries/BMV36T001 +https://github.com/SequentMicrosystems/Sequent-16digin-Library +https://github.com/yishii/Meiro +https://github.com/Abhijeetbyte/StreamLog +https://bitbucket.org/logsdonj/rl_tonesongplayer/ +https://github.com/IlikeChooros/lazyjson +https://github.com/The-Young-Maker/OpenMenuOS +https://github.com/winghoko/simpleEvents +https://github.com/MarcoAntonioGonCas/LedLib +https://github.com/PowerFeather/powerfeather-sdk +https://github.com/AdvancerTechnologies/MyoWare-Arduino-Library +https://github.com/RaffaeleMorganti/protectedAES +https://github.com/WitsanuP/WitsanuDotH +https://github.com/blackhack/LittleVector +https://github.com/ALICHOUCHENE/Qmi8658c +https://github.com/zumatt/Supabase-Arduino +https://github.com/deangi/TiltSensor +https://github.com/deangi/UltrasonicSensor +https://github.com/deangi/RCWL0516 +https://github.com/deangi/IRProxSensor +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/UCLA-Bruin-Supermileage/UCLA-SMV-CAN +https://github.com/paulino/ha-mqtt-entities +https://github.com/DFRobot/DFRobot_GDL +https://github.com/iwandwip/Kinematrix +https://github.com/floatplane/Ministache +https://github.com/dvelaren/ThingworxESP32 +https://github.com/alunit3/ServoESP32 +https://github.com/fire1/CmdSerial +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-sensor +https://github.com/MOMIZICH/PBEnhancer +https://github.com/MOMIZICH/OneShot +https://github.com/siroshy/SerialTerminalIO +https://github.com/MOMIZICH/JoystickController +https://github.com/moduhub/openafe +https://github.com/ig-66/openAFEComm +https://github.com/chankame/sclm-p105_shield +https://github.com/siroshy/SharpIR +https://github.com/kashif-baig/StringLib +https://github.com/kashif-baig/MessagingLib +https://github.com/Krookikk/my_STL +https://github.com/addowneer01/CraftConnect-library-for-Arduino-ESP8266 +https://github.com/kashif-baig/MvcWebServerLib +https://github.com/Xinyuan-LilyGO/LilyGo-EPD47 +https://github.com/board707/DMD_STM32 +https://github.com/bavathd/tago_esp32 +https://github.com/stm32duino/X-NUCLEO-53L4A3 +https://github.com/stm32duino/VL53L4ED +https://github.com/arduino-libraries/Arduino_Cellular +https://github.com/SnailDragon/MightyOhmGeigerCounter +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 +https://github.com/maxpromer/AX-Mini +https://github.com/maxpromer/Hanuman +https://github.com/Embeddronics-ltd/MS5837_30BA_Library +https://github.com/HighASG936/hw262 +https://github.com/gershnik/MbedNanoTLS +https://github.com/gershnik/BetterWiFiNINA +https://github.com/Sensirion/arduino-i2c-sfm-sf06 +https://github.com/Sensirion/arduino-i2c-sht3x +https://github.com/Sensirion/arduino-i2c-sts3x +https://github.com/Embeddronics-ltd/BLEOTALIBRARY/ +https://github.com/SMotlaq/PI3EQX12908-arduino +https://github.com/mmarkin/GeoIP +https://github.com/HighASG936/Mc74hc595a +https://github.com/cwru-greener-pastures/Heltec_LoRa_OLED_Examples +https://github.com/Gissio/mcu-renderer +https://github.com/Gissio/mcu-max +https://github.com/RCMgames/BSED +https://github.com/ripred/SmartPin +https://github.com/Pascal2511/TimerUtils +https://github.com/XavierBrassoud/Arduino_Epson_PNL_CE02 +https://github.com/AlbertGBarber/PixelSpork +https://github.com/manicken/sf22aswt +https://github.com/arduino-libraries/Arduino_MAX17332 +https://github.com/arduino-libraries/Arduino_Alvik +https://github.com/arduino-libraries/Arduino_AlvikCarrier +https://github.com/dndg/OptaUSBUpdate +https://github.com/mlesniew/PicoWebsocket +https://github.com/Xinyuan-LilyGO/LilyGO-T-Wristband-and-T-Glass +https://github.com/arduino-libraries/Arduino_CloudConnectionFeedback +https://github.com/bonkmachines/ctrl-arduino +https://github.com/Matrix-Robotics/MatrixMiniR4 +https://github.com/MERG-DEV/CBUSMCP_CAN +https://github.com/Narwhalsss360/BitArray +https://github.com/Narwhalsss360/stdcol-arduino +https://github.com/Narwhalsss360/StreamUtilities +https://github.com/Narwhalsss360/SketchBinder +https://github.com/Narwhalsss360/Callables +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/uutzinger/Arduino_BLESerial +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/thomasgeissl/NeopixelCommander +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 +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/Zeppelin500/DlmsCosemLib +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://gitlab.com/Vishal1695/fastled_min +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/k3ldar/SerialCommandManager +https://github.com/k3ldar/NextionControl +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/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/vkumpan/SSD1306 +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 +https://github.com/Chanatip112/HanumanMini +https://github.com/almtzr/PedroRobot +https://github.com/Alteriom/EByte_LoRa_E220_Series_Library +https://github.com/SvenRosvall/VLCB-Arduino +https://github.com/Alteriom/painlessMesh +https://github.com/mitra42/frugal-iot +https://github.com/eakse/ESP32S3_SUPERMINI_PINOUT +https://github.com/kay-bs/KK-Switch +https://github.com/kay-bs/KK-Buffer +https://github.com/localrice/EasyWiFi +https://github.com/7semi-solutions/7Semi_RS485_Temperature-Humidity-Arduino-Library +https://github.com/7semi-solutions/7Semi_CO2_Temperature_Humidity_I2C_Probe_Arduino_Library +https://github.com/lizardking/LD2410Async +https://github.com/bitbank2/bb_proximity +https://github.com/geekfactory/GFDisplay7S +https://github.com/chipnorm/ChipNorm_DHT11 +https://github.com/bitbank2/bb_temperature +https://github.com/UNIT-Electronics-MX/unit_bme68x_library +https://github.com/UNIT-Electronics-MX/ue_i2c_icp_10111_sen +https://github.com/jmwanderer/tlv.arduino +https://github.com/PaulNTU/MoonMin-Scanner-Arduino-Library +https://gitlab.com/Vishal1695/mvswifi_esp32 +https://gitlab.com/Vishal1695/mvswifi_esp8266 +https://github.com/jaikulk14/Advanced-Oximeter +https://github.com/vicharak-in/shrike_flash +https://github.com/microbotsio/ProtoBot +https://github.com/4project-co-il/PlugAndPlay +https://github.com/geekfactory/GFLED +https://github.com/IFTAHULYUSRO/MPU6050_VIBRATIONRMS +https://github.com/Bridgetek/EVE5-Arduino-Dev +https://github.com/Bridgetek/EVE1-Arduino-Dev +https://github.com/Bridgetek/EVE2-Arduino-Dev +https://github.com/Bridgetek/EVE2-2-Arduino-Dev +https://github.com/TamsinRose/CAN_Message_Arduino +https://github.com/stm32duino/X-NUCLEO-IKS5A1 +https://github.com/fermeridamagni/arduino-minimal-ultrasonic +https://github.com/chipnorm/TM1637 +https://github.com/benjistokman/FastRGB +https://github.com/DavinderHanda/HandaDigitalSpeaker +https://github.com/chipnorm/SHT21 +https://github.com/DigitalCodesign/MentorBit-FinalCarrera +https://github.com/Upartech/RCSwitchRmt +https://github.com/FranciscoRos/UniversalRadioWSN +https://github.com/FranciscoRos/AdaptiveTXWSN +https://github.com/FranciscoRos/CodecWSN +https://github.com/egnor/everyday_pixel_fonts +https://github.com/egnor/ok_arduino_little_layout +https://github.com/egnor/ok_arduino_logging +https://github.com/chipnorm/VL53L0X +https://github.com/recepsenbas/DWIN-Unified +https://github.com/FranciscoRos/EnergyWSN +https://github.com/FT-tele/ST7306_8color_lvgl +https://github.com/bull-m/BULLM_ExtendModule +https://github.com/Jakkapan-a/AssuraVisionSerial.git +https://github.com/AIS-DeviceIntegration/AIS_4G_EXTENSION_BOARD +https://github.com/adafruit/WiFiNINA +https://github.com/sensebox/DNMSI2C +https://github.com/steinundfloete/MIDI-NRPN +https://github.com/VLPLAY-Games/Xeno-Language +https://github.com/chipnorm/LED_Matrix +https://github.com/dowerner/Arduino-Http-Requests +https://github.com/juano2310/SuperCAN +https://github.com/Protocentral/SensythingCore +https://github.com/sintrb/ANSI_Output +https://github.com/mlaass/wamr-esp32-arduino.git +https://github.com/1998Saeed/MechaNest +https://github.com/ertgtct/mcpesp +https://github.com/juano2310/SuperCANBus