1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-07-09 01:42:00 +03:00
Commit Graph

3967 Commits

Author SHA1 Message Date
e15abb8474 Merge branch 'main' of https://github.com/arduino/library-registry 2024-11-11 15:50:16 -06:00
ac6eccdaca Add MINDS-i Foundations (#5399)
* Added MINDS-i-Utils repo

* Add MINDS-i-Trailer repo

* Removed 's' from Trailer repo

* Added Minds-i Common and Farming repos

* Add Foundations
2024-11-11 21:36:31 +00:00
e65367bf8d Merge branch 'main' of https://github.com/arduino/library-registry 2024-11-11 15:35:23 -06:00
8f762320b1 Add Foundations 2024-11-11 15:31:54 -06:00
a45ad5778f Add MINDS-i Common and Farming Repos (#5398)
* Added MINDS-i-Utils repo

* Add MINDS-i-Trailer repo

* Removed 's' from Trailer repo

* Added Minds-i Common and Farming repos
2024-11-11 21:30:36 +00:00
edf9a7683e Merge branch 'main' of https://github.com/arduino/library-registry 2024-11-11 15:29:29 -06:00
00b9bfec24 Added Minds-i Common and Farming repos 2024-11-11 15:24:47 -06:00
0f6c77850d Update repositories.txt (#5397)
Arduino library for DS1804 Nonvolatile Trimmer Potentiometer.
2024-11-11 16:51:23 +00:00
2d65406ff6 Update repositories.txt (#5394) 2024-11-11 10:55:26 +00:00
6c95cc60f0 Update repositories.txt (#5393) 2024-11-11 09:53:06 +00:00
ff1e78211d Update repositories.txt (#5390) 2024-11-11 07:22:14 +00:00
051722def6 Update repositories.txt (#5380) 2024-11-10 01:45:06 +00:00
4e198f61db Update repositories.txt (#5379)
Arduino library for the HX710A and HX710B 24-Bit ADC.
2024-11-09 08:11:48 +00:00
1e723c897d Update repositories.txt (#5375) 2024-11-09 01:46:34 +00:00
f801ae560e Update repositories.txt (#5377)
Add MVP3000 to Arduino library manager.
2024-11-08 15:38:10 +00:00
a3d64aaf3d added solarfunctions lib (#5376) 2024-11-07 21:09:35 +00:00
bd886e37c4 Update repositories.txt (#5374)
Arduino library for the AD8494, AD8495, AD9496 and AD8497 thermocouple.
2024-11-07 13:00:52 +00:00
35b14a5606 Add MINDS-i-Trailer Repo (#5373)
* Added MINDS-i-Utils repo

* Add MINDS-i-Trailer repo

* Removed 's' from Trailer repo
2024-11-07 07:24:05 +00:00
8ea0e829d1 Removed 's' from Trailer repo 2024-11-07 01:07:55 -06:00
efe1ecdfd0 Add MINDS-i-Trailer repo 2024-11-07 01:04:46 -06:00
0afc9e7240 Merge branch 'arduino:main' into main 2024-11-07 01:04:20 -06:00
4e84cf3abe Update repositories.txt (#5370) 2024-11-06 17:49:49 +00:00
76db8025ea Update repositories.txt (#5360) 2024-11-06 04:38:13 +00:00
2fd943794d Adding library (#5358)
* Adding SerialLogger

* Adding ultiblox libraries

* Adding newline

* Adding libraries

* Adding DisplayValueNull library

---------

Co-authored-by: Maker Zone <dev@makerzone.com.au>
2024-11-06 01:55:17 +00:00
b65d5a0757 added GrayCode library (#5356) 2024-11-05 17:21:13 +00:00
6ada22849b Update repositories.txt (#5353) 2024-11-05 12:45:56 +00:00
5eb4ac4cdb Add Sequent Microsystems Sixteen relays card library (#5352) 2024-11-05 10:46:30 +00:00
b64d0f532e Update repositories.txt (#5346) 2024-11-04 20:57:47 +00:00
7708b2a737 Update repositories.txt (#5343) 2024-11-04 15:56:52 +00:00
21529abcaf chore: add a library about SGP30 (#5342) 2024-11-04 06:12:54 +00:00
4566cdca8b Adding libraries (#5339)
* Adding SerialLogger

* Adding ultiblox libraries

* Adding newline

* Adding libraries

---------

Co-authored-by: Maker Zone <dev@makerzone.com.au>
2024-11-04 01:02:51 +00:00
1e1
890c762088 Add GoogleSchedular (#5338) 2024-11-02 15:21:30 +00:00
9ee8ead0de Update repositories.txt (#5337)
Primera versión
2024-11-02 12:34:33 +00:00
c3fb5c0e72 Adding ultiblox libraries (#5336)
* Adding SerialLogger

* Adding ultiblox libraries

* Adding newline

---------

Co-authored-by: Maker Zone <dev@makerzone.com.au>
2024-11-02 10:23:52 +00:00
30ea3fc60d Adding SerialLogger (#5335)
Co-authored-by: Maker Zone <dev@makerzone.com.au>
2024-11-02 09:38:15 +00:00
5048f841b3 Update repositories.txt (#5334) 2024-11-01 19:02:07 +00:00
649244a68c Merge pull request #3750 from arduino/dependabot/github_actions/actions/upload-artifact-4
Bump actions/upload-artifact from 3 to 4
2024-11-01 05:49:09 -07:00
5d935c3b7c Don't upload multiple times to same artifact in "Manage PRs" workflow
The `check-submissions` job of the "Run integration tests" GitHub Actions workflow is configured to generate multiple
parallel jobs, one for each of the submitted libraries. The subsequent jobs must be able to determine whether any of the
libraries failed the checks. This is done by the matrix jobs in which checks failed uploading a flag file to a GitHub
Actions workflow artifact, then the subsequent jobs checking for the presence of an artifact. The
"actions/upload-artifact" and "actions/download-artifact" actions are used for this purpose.

Previously, a single artifact was used for all flag files, with each of the parallel jobs uploading its flag file to
that single artifact. However, support for uploading multiple times to a single artifact was dropped in version 4.0.0 of
the "actions/upload-artifact" action. So it is now necessary to use a dedicated artifact for each of the parallel jobs.
These artifacts  can be downloaded in aggregate by using the artifact name globbing feature which was introduced in
version 4.1.0 of the "actions/download-artifact" action.
2024-11-01 05:41:55 -07:00
4a42992908 Don't upload multiple times to same artifact in label sync workflow
The "Sync Labels" GitHub Actions workflow is configured to allow the use of multiple shared label configuration files.
This is done by using a job matrix in the GitHub Actions workflow to download each of the files from the source
repository in a parallel GitHub Actions workflow job. A GitHub Actions workflow artifact was used to transfer the
generated files between sequential jobs in the workflow. The "actions/upload-artifact" and "actions/download-artifact"
actions are used for this purpose.

Previously, a single artifact was used for the transfer of all the shared label configuration files, with each of the
parallel jobs uploading its own generated files to that artifact. However, support for uploading multiple times to a
single artifact was dropped in version 4.0.0 of the "actions/upload-artifact" action. So it is now necessary to use a
dedicated artifact for each of the builds. These can be downloaded in aggregate by using the artifact name globbing and
merging features which were introduced in version 4.1.0 of the "actions/download-artifact" action.
2024-11-01 05:41:39 -07:00
dfb6a0cc83 Bump geekyeggo/delete-artifact from 2 to 5
Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 2 to 5.
- [Release notes](https://github.com/geekyeggo/delete-artifact/releases)
- [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md)
- [Commits](https://github.com/geekyeggo/delete-artifact/compare/v2...v5)

---
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>
2024-11-01 05:41:24 -07:00
1084031aba Bump actions/download-artifact from 3 to 4
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/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>
2024-11-01 05:41:08 -07:00
67761062a3 Bump actions/upload-artifact from 3 to 4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/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>
2024-11-01 12:37:41 +00:00
d37435d68e Update repositories.txt (#5333)
Add SWPI experimental software SPI implementation.
2024-11-01 11:05:54 +00:00
a1f0d13f1d IP2366 (#5332) 2024-10-31 07:21:01 +00:00
d669684e0f Update repositories.txt (#5329)
AFE4950-Arduino-Library added
2024-10-30 03:16:47 +00:00
1e1
5608ed015e add FastTimer (#5325)
Notify at regular intervals to distribute actions over time. Can be extended with an NTP client to obtain a Unix or RFC3339 timestamp.
2024-10-30 00:55:32 +00:00
e7aa7476ff Update repositories.txt (#5324) 2024-10-29 18:24:42 +00:00
4eeadfd05e Update repositories.txt (#5323) 2024-10-29 17:15:19 +00:00
f2399403fd Update repositories.txt (#5322)
Arduino library for AD5660 Digital Analog Convertor (16 bit).
2024-10-29 16:11:15 +00:00
3846cccef9 Add Arduino_OPC_UA to Arduino library index. (#5320) 2024-10-29 12:45:36 +00:00