1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-11-17 05:22:37 +03:00
Commit Graph

3957 Commits

Author SHA1 Message Date
agyoungs
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
Rob Tillaart
0f6c77850d Update repositories.txt (#5397)
Arduino library for DS1804 Nonvolatile Trimmer Potentiometer.
2024-11-11 16:51:23 +00:00
Matthew Gream
2d65406ff6 Update repositories.txt (#5394) 2024-11-11 10:55:26 +00:00
Matthew Gream
6c95cc60f0 Update repositories.txt (#5393) 2024-11-11 09:53:06 +00:00
Matthew Gream
ff1e78211d Update repositories.txt (#5390) 2024-11-11 07:22:14 +00:00
Will Hickmott
051722def6 Update repositories.txt (#5380) 2024-11-10 01:45:06 +00:00
Rob Tillaart
4e198f61db Update repositories.txt (#5379)
Arduino library for the HX710A and HX710B 24-Bit ADC.
2024-11-09 08:11:48 +00:00
Fabrício de Lima Ribeiro
1e723c897d Update repositories.txt (#5375) 2024-11-09 01:46:34 +00:00
ferdinand0815
f801ae560e Update repositories.txt (#5377)
Add MVP3000 to Arduino library manager.
2024-11-08 15:38:10 +00:00
GitCoyote
a3d64aaf3d added solarfunctions lib (#5376) 2024-11-07 21:09:35 +00:00
Rob Tillaart
bd886e37c4 Update repositories.txt (#5374)
Arduino library for the AD8494, AD8495, AD9496 and AD8497 thermocouple.
2024-11-07 13:00:52 +00:00
agyoungs
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
George Papamichail
4e84cf3abe Update repositories.txt (#5370) 2024-11-06 17:49:49 +00:00
VanSilver
76db8025ea Update repositories.txt (#5360) 2024-11-06 04:38:13 +00:00
maker-zone
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
Joel Murphy
b65d5a0757 added GrayCode library (#5356) 2024-11-05 17:21:13 +00:00
canusorn
6ada22849b Update repositories.txt (#5353) 2024-11-05 12:45:56 +00:00
Alexandru Burcea
5eb4ac4cdb Add Sequent Microsystems Sixteen relays card library (#5352) 2024-11-05 10:46:30 +00:00
dejwk
b64d0f532e Update repositories.txt (#5346) 2024-11-04 20:57:47 +00:00
oumuika
7708b2a737 Update repositories.txt (#5343) 2024-11-04 15:56:52 +00:00
Lesords
21529abcaf chore: add a library about SGP30 (#5342) 2024-11-04 06:12:54 +00:00
maker-zone
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
Ariel Zwenger
9ee8ead0de Update repositories.txt (#5337)
Primera versión
2024-11-02 12:34:33 +00:00
maker-zone
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
maker-zone
30ea3fc60d Adding SerialLogger (#5335)
Co-authored-by: Maker Zone <dev@makerzone.com.au>
2024-11-02 09:38:15 +00:00
Hans Scharler
5048f841b3 Update repositories.txt (#5334) 2024-11-01 19:02:07 +00:00
per1234
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
per1234
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
per1234
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
dependabot[bot]
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
dependabot[bot]
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
dependabot[bot]
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
Rob Tillaart
d37435d68e Update repositories.txt (#5333)
Add SWPI experimental software SPI implementation.
2024-11-01 11:05:54 +00:00
Dmitriy Mitchenkov
a1f0d13f1d IP2366 (#5332) 2024-10-31 07:21:01 +00:00
Juan José Londoño
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
George Papamichail
e7aa7476ff Update repositories.txt (#5324) 2024-10-29 18:24:42 +00:00
Trần Việt Dũng
4eeadfd05e Update repositories.txt (#5323) 2024-10-29 17:15:19 +00:00
Rob Tillaart
f2399403fd Update repositories.txt (#5322)
Arduino library for AD5660 Digital Analog Convertor (16 bit).
2024-10-29 16:11:15 +00:00
Alexander Entinger
3846cccef9 Add Arduino_OPC_UA to Arduino library index. (#5320) 2024-10-29 12:45:36 +00:00
Rob Tillaart
fec629b3d3 Add ACD3100 library (#5319)
* Update repositories.txt

Arduino library for DAC8560 SPI Digital Analog Convertor (16 bit).

* Update repositories.txt

Arduino library for for I2C ACD3100 CO2 sensor
2024-10-29 09:26:02 +00:00
Ben
57212206d3 add https://github.com/bdlow/IO22_IO_Board (#5318) 2024-10-29 09:12:00 +00:00
dralicimen
ed6aed3c4f Update repositories.txt (#5317) 2024-10-29 00:00:44 +00:00
Miguel Santos Loureiro
19bc518322 Update repositories.txt (#5315) 2024-10-28 19:59:31 +00:00
Naguissa
ff3e233716 Update repositories.txt (#5314)
Add Naguissa/uConfigLib library
2024-10-28 15:16:33 +00:00
Liz
48ee5a9121 Adding Adafruit VCNL4200 library (#5313)
* Update repositories.txt

* Update repositories.txt

* adding INA3221

* Update repositories.txt
2024-10-28 13:12:22 +00:00
Tinyu
4455d51d8f Update repositories.txt (#5312) 2024-10-28 09:32:06 +00:00
Tinyu
4354578053 Update repositories.txt (#5310) 2024-10-28 08:05:03 +00:00
goodisplayshare
c6437c973c Update repositories.txt (#5309) 2024-10-28 06:18:36 +00:00