Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arduino libraries #2

Merged
merged 65 commits into from
Mar 15, 2024
Merged

Arduino libraries #2

merged 65 commits into from
Mar 15, 2024

Commits on Apr 19, 2019

  1. Configuration menu
    Copy the full SHA
    0d5019a View commit details
    Browse the repository at this point in the history
  2. remove unused warning

    d-a-v committed Apr 19, 2019
    Configuration menu
    Copy the full SHA
    0dab7b9 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2019

  1. remove useless comment

    from @per1234
    
    Co-Authored-By: d-a-v <gauchard@laas.fr>
    per1234 and d-a-v committed Apr 23, 2019
    Configuration menu
    Copy the full SHA
    5f64311 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2019

  1. For Arduino MKR Vidor-4000

    taylor committed May 29, 2019
    Configuration menu
    Copy the full SHA
    b03683f View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2019

  1. Merge pull request arduino-libraries#96 from d-a-v/master

    compatibility for esp8266 core
    cmaglie committed Nov 19, 2019
    Configuration menu
    Copy the full SHA
    75a3c37 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2020

  1. Configuration menu
    Copy the full SHA
    235da47 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2021

  1. Configure Dependabot to check for outdated actions used in workflows

    Dependabot will periodically check the versions of all actions used in the repository's workflows. If any are found to
    be outdated, it will submit a pull request to update them.
    NOTE: Dependabot's PRs will sometimes try to pin to the patch version of the action (e.g., updating `uses: foo/bar@v1`
    to `uses: foo/bar@v2.3.4`). When the action author has provided a major version ref, use that instead
    (e.g., `uses: foo/bar@v2`). Dependabot will automatically close its PR once the workflow has been updated.
    More information:
    https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-dependabot
    per1234 committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    6b8b320 View commit details
    Browse the repository at this point in the history
  2. Add CI workflow to check for commonly misspelled words

    On every push, pull request, and periodically, use the codespell-project/actions-codespell action to check for commonly
    misspelled words.
    
    In the event of a false positive, the problematic word should be added, in all lowercase, to the ignore-words-list field
    of ./.codespellrc. Regardless of the case of the word in the false positive, it must be in all lowercase in the ignore
    list. The ignore list is comma-separated with no spaces.
    per1234 committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    85a14d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4723604 View commit details
    Browse the repository at this point in the history
  4. Add CI workflow to do Arduino project-specific linting

    On every push, pull request, and periodically, run Arduino Lint to check for common problems not related to the project
    code.
    per1234 committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    feda5e8 View commit details
    Browse the repository at this point in the history
  5. Add "smoke test" examples compilation CI workflow

    On every push or pull request that affects library source or example files, and periodically, compile all example
    sketches for the specified boards.
    per1234 committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    011837c View commit details
    Browse the repository at this point in the history
  6. Report changes in memory usage that would result from merging a PR

    On creation or commit to a pull request, a report of the resulting change in memory usage of the examples will be
    commented to the PR thread.
    per1234 committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    753cd95 View commit details
    Browse the repository at this point in the history
  7. Merge pull request arduino-libraries#159 from arduino-libraries/ci

    Use GitHub Actions for continuous integration
    aentinger committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    481f960 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2021

  1. Fix compiler warning in htons

    gudnimg committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    5509403 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2021

  1. Merge pull request arduino-libraries#161 from gudnimg/master

    Fix compiler warning in `htons()`
    aentinger committed Jul 22, 2021
    Configuration menu
    Copy the full SHA
    7c32bbe View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2021

  1. Configuration menu
    Copy the full SHA
    f820973 View commit details
    Browse the repository at this point in the history
  2. Add docs

    karlsoderby committed Oct 4, 2021
    Configuration menu
    Copy the full SHA
    e435d22 View commit details
    Browse the repository at this point in the history
  3. Merge pull request arduino-libraries#170 from arduino-libraries/karls…

    …oderby/add-docs
    
    Add docs
    karlsoderby committed Oct 4, 2021
    Configuration menu
    Copy the full SHA
    33b966f View commit details
    Browse the repository at this point in the history
  4. Added pinout

    karlsoderby committed Oct 4, 2021
    Configuration menu
    Copy the full SHA
    e8e9026 View commit details
    Browse the repository at this point in the history
  5. Merge pull request arduino-libraries#171 from arduino-libraries/karls…

    …oderby/add-images
    
    Added pinout
    karlsoderby committed Oct 4, 2021
    Configuration menu
    Copy the full SHA
    5cdcdbc View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2021

  1. Configuration menu
    Copy the full SHA
    f0c0e37 View commit details
    Browse the repository at this point in the history
  2. Missing virtual destructor results in compiler warning (arduino-libra…

    …ries#153)
    
    When `delete`ing an EthernetClient object, the compiler throws the following warning:
    `warning: deleting object of polymorphic class type 'EthernetClient' which has non-virtual destructor might cause undefined behavior [-Wdelete-non-virtual-dtor]`
    Adding a virtual destructor solves this problem, see also here:
    https://stackoverflow.com/questions/43282826/suppress-delete-non-virtual-dtor-warning-when-using-a-protected-non-virtual-dest
    fredlcore committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    473cfeb View commit details
    Browse the repository at this point in the history
  3. Merge pull request arduino-libraries#149 from jandrassy/PagerServer_e…

    …xample
    
    PagerServer example to show how server.available() and server.print() really works
    aentinger committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    32a9d84 View commit details
    Browse the repository at this point in the history
  4. Merge pull request arduino-libraries#100 from Wiznet/pullrequest-MKR_…

    …VIDOR-4000
    
    Added MKR Vidor-4000 for Arduino MKR Vidor-4000
    aentinger committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    7c46fb9 View commit details
    Browse the repository at this point in the history
  5. rename sockindex to _sockindex

    private variable in this class begin with _
    Rotzbua authored and aentinger committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    1e2a6c2 View commit details
    Browse the repository at this point in the history
  6. Merge pull request arduino-libraries#64 from Rotzbua/rename

    [code style] rename sockindex to _sockindex
    aentinger committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    64b394f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6a5b8be View commit details
    Browse the repository at this point in the history
  8. Fixing CI build for Arduino SAM Due. (arduino-libraries#180)

    The class EthernetServer, derived from Server, derived from Print does not contain a 'flush' method as for all other cores.
    aentinger committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    d7b8b60 View commit details
    Browse the repository at this point in the history
  9. same mac for all examples

    Rotzbua authored and aentinger committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    e7d6c6d View commit details
    Browse the repository at this point in the history
  10. Merge pull request arduino-libraries#46 from Rotzbua/improve-examples

    [examples] same mac for all examples
    aentinger committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    a231db3 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2021

  1. Use major version ref of carlosperate/download-file-action (arduino…

    …-libraries#181)
    
    The `carlosperate/download-file-action` action is used in the GitHub Actions workflows as a convenient way to download
    external resources.
    
    A major version ref has been added to that repository. It will always point to the latest release of the "1" major
    version series. This means it is no longer necessary to do a full pin of the action version in use as before.
    
    Use of the major version ref will cause the workflow to use a stable version of the action, while also benefiting from
    ongoing development to the action up until such time as a new major release of an action is made. At that time we would
    need to evaluate whether any changes to the workflow are required by the breaking change that triggered the major
    release before manually updating the major ref (e.g., uses: `carlosperate/download-file-action@v2`). I think this
    approach strikes the right balance between stability and maintainability for these workflows.
    per1234 committed Dec 20, 2021
    Configuration menu
    Copy the full SHA
    993eea8 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2022

  1. Configuration menu
    Copy the full SHA
    56ab3e9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6f0c593 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2022

  1. Merge pull request arduino-libraries#183 from per1234/fix-typos

    Fix typos in documentation
    per1234 committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    483a06b View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2022

  1. Bump actions/checkout from 2 to 3

    Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Mar 2, 2022
    Configuration menu
    Copy the full SHA
    3e00b4f View commit details
    Browse the repository at this point in the history
  2. Merge pull request arduino-libraries#184 from arduino-libraries/depen…

    …dabot/github_actions/actions/checkout-3
    
    Bump actions/checkout from 2 to 3
    per1234 committed Mar 2, 2022
    Configuration menu
    Copy the full SHA
    9e63d97 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2022

  1. Update api.md

    jacobhylen committed Apr 1, 2022
    Configuration menu
    Copy the full SHA
    e31c453 View commit details
    Browse the repository at this point in the history
  2. Update api.md

    jacobhylen committed Apr 1, 2022
    Configuration menu
    Copy the full SHA
    e5240c7 View commit details
    Browse the repository at this point in the history
  3. Update api.md

    jacobhylen committed Apr 1, 2022
    Configuration menu
    Copy the full SHA
    2998f47 View commit details
    Browse the repository at this point in the history
  4. Merge pull request arduino-libraries#188 from jacobhylen/jacobhylen/c…

    …hange-links
    
    Update api.md
    karlsoderby committed Apr 1, 2022
    Configuration menu
    Copy the full SHA
    6cb43af View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2022

  1. Bump actions/upload-artifact from 2 to 3

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Apr 8, 2022
    Configuration menu
    Copy the full SHA
    be90b7d View commit details
    Browse the repository at this point in the history
  2. Bump actions/download-artifact from 2 to 3

    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](actions/download-artifact@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Apr 8, 2022
    Configuration menu
    Copy the full SHA
    058a40a View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2022

  1. Merge pull request arduino-libraries#190 from arduino-libraries/depen…

    …dabot/github_actions/actions/download-artifact-3
    
    Bump actions/download-artifact from 2 to 3
    per1234 committed Apr 11, 2022
    Configuration menu
    Copy the full SHA
    f5c1c87 View commit details
    Browse the repository at this point in the history
  2. Merge pull request arduino-libraries#189 from arduino-libraries/depen…

    …dabot/github_actions/actions/upload-artifact-3
    
    Bump actions/upload-artifact from 2 to 3
    per1234 committed Apr 11, 2022
    Configuration menu
    Copy the full SHA
    809543b View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2022

  1. Update api.md

    Fix: Adding missing Bullet Points to Parameters and Returns
    Hannes7eicher committed Apr 29, 2022
    Configuration menu
    Copy the full SHA
    c14f3f8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request arduino-libraries#192 from Hannes7eicher/Hannes7ei…

    …cher/Fixing-BulletPoints
    
    Update api.md
    karlsoderby committed Apr 29, 2022
    Configuration menu
    Copy the full SHA
    4e356a6 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2022

  1. Remove Paul Stoffregen from list of library maintainers

    Done at the request of Paul Stoffregen.
    per1234 committed Jun 13, 2022
    Configuration menu
    Copy the full SHA
    32b591c View commit details
    Browse the repository at this point in the history
  2. Merge pull request arduino-libraries#198 from per1234/update-maintainers

    Remove Paul Stoffregen from list of library maintainers
    per1234 committed Jun 13, 2022
    Configuration menu
    Copy the full SHA
    41cc163 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2022

  1. Release v2.0.1.

    aentinger committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    eaad5ab View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. Bump geekyeggo/delete-artifact from 1 to 2

    Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 1 to 2.
    - [Release notes](https://github.com/geekyeggo/delete-artifact/releases)
    - [Commits](GeekyEggo/delete-artifact@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: geekyeggo/delete-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    b689d3e View commit details
    Browse the repository at this point in the history
  2. Merge pull request arduino-libraries#205 from arduino-libraries/depen…

    …dabot/github_actions/geekyeggo/delete-artifact-2
    
    Bump geekyeggo/delete-artifact from 1 to 2
    per1234 committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    c3c7188 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2022

  1. Bump carlosperate/download-file-action from 1 to 2

    Bumps [carlosperate/download-file-action](https://github.com/carlosperate/download-file-action) from 1 to 2.
    - [Release notes](https://github.com/carlosperate/download-file-action/releases)
    - [Commits](carlosperate/download-file-action@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: carlosperate/download-file-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 24, 2022
    Configuration menu
    Copy the full SHA
    8ff455c View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2022

  1. Merge pull request arduino-libraries#206 from arduino-libraries/depen…

    …dabot/github_actions/carlosperate/download-file-action-2
    
    Bump carlosperate/download-file-action from 1 to 2
    per1234 committed Oct 25, 2022
    Configuration menu
    Copy the full SHA
    9e8a98c View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. Fixes static IPs for Arduino Nano Every

    The example program WebClient does not work on the Arduino Nano Every when
    DHCP is not available or commented out - the versions of Ethernet::begin()
    using a static IP address fail.  I tested the example on Uno, Mega2560 and
    Micro, it works on all of them using either DHCP or static IP.
    
    This modifies the begin() method so that it uses IPAddress::raw_address()
    instead of platform conditional code in the same way the DHCP version of
    begin() does. With this change static addresses work on the Nano Every too.
    mghie committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    72462ca View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2023

  1. Merge pull request arduino-libraries#218 from mghie/nano-every-fix

    Fixes static IPs for Arduino Nano Every
    facchinm committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    a133ab5 View commit details
    Browse the repository at this point in the history
  2. Release 2.0.2

    facchinm committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    d5672b7 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2023

  1. fixed no image on website issue

    earlier the website didn't showed the preview on these images
    Taz03 committed Apr 13, 2023
    Configuration menu
    Copy the full SHA
    882e724 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2023

  1. Merge pull request arduino-libraries#221 from Taz03/patch-1

    fixed no image on website issue
    per1234 committed Apr 14, 2023
    Configuration menu
    Copy the full SHA
    d31148d View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. Bump actions/checkout from 3 to 4

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    f5ab51a View commit details
    Browse the repository at this point in the history
  2. Merge pull request arduino-libraries#229 from arduino-libraries/depen…

    …dabot/github_actions/actions/checkout-4
    
    Bump actions/checkout from 3 to 4
    per1234 committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    39103da View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. Bump geekyeggo/delete-artifact from 2 to 4 (arduino-libraries#245)

    Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 2 to 4.
    - [Release notes](https://github.com/geekyeggo/delete-artifact/releases)
    - [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md)
    - [Commits](GeekyEggo/delete-artifact@v2...v4)
    
    ---
    updated-dependencies:
    - dependency-name: geekyeggo/delete-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    302c26f View commit details
    Browse the repository at this point in the history
  2. Bump actions/download-artifact from 3 to 4 (arduino-libraries#244)

    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](actions/download-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    e1767f9 View commit details
    Browse the repository at this point in the history
  3. Bump actions/upload-artifact from 3 to 4 (arduino-libraries#243)

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    351463a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ae040a1 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. Merge branch 'master' of https://github.com/arduino-libraries/Ethernet

    …into arduino-libraries
    stevstrong committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    3ab73e1 View commit details
    Browse the repository at this point in the history