1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-08-05 21:55:50 +03:00
Commit Graph

4619 Commits

Author SHA1 Message Date
David Such
b85c2a0c5f Update repositories.txt (#376)
Added Nexgen Codecamp Motor Shield Library
2021-08-20 23:50:22 +00:00
AlexTutorial
5e5c09e916 Update repositories.txt (#380)
* Update repositories.txt

* Update repositories.txt
2021-08-20 15:03:44 +00:00
Tinyu
3e64822970 PCA9554 (#378)
* PCA9554

* Update repositories.txt
2021-08-20 08:14:41 +00:00
Tinyu
42e1f791bf M5_AD9833 (#377) 2021-08-20 07:13:32 +00:00
PB2
dc02ed6d04 Update repositories.txt (#375) 2021-08-20 02:49:08 +00:00
Tinyu
33c82edf69 M5_ADS1115 (#372) 2021-08-19 03:20:22 +00:00
Tinyu
2cb3ccf6f0 M5_BMM150 (#371) 2021-08-19 02:07:51 +00:00
Brian Park
b9194f3263 Add AceSegment, AceSegmentWriter, AceSPI, AceTMI, AceWire (#370) 2021-08-18 23:01:58 +00:00
Tinyu
5eb385c5ab TinyGPSPlus (#369) 2021-08-18 09:56:16 +00:00
Tinyu
781086a611 Update repositories.txt (#366) 2021-08-18 09:01:05 +00:00
Khoi Hoang
3e95767e45 Add FlashStorage_STM32F1 Library (#365)
### Features

The FlashStorage_STM32F1 library, inspired by [Cristian Maglie's FlashStorage](https://github.com/cmaglie/FlashStorage), provides a convenient way to store and retrieve user's data using emulated-EEPROM, from the non-volatile flash memory of STM32F1/F3, including non-genuine CH32F103xx, CS32F103xx, etc. boards.

The flash memory, generally used to store the firmware code, can also be used to store / retrieve more user's data and faster than from EEPROM. Thanks to the **buffered data writing and reading**, the flash access time is greatly reduced to **increase the life of the flash**.

Currently, the library supports both new [**STM32 core v2.0.0**](https://github.com/stm32duino/Arduino_Core_STM32/releases/tag/2.0.0) and previous [**STM32 core v1.9.0**](https://github.com/stm32duino/Arduino_Core_STM32/releases/tag/1.9.0)
2021-08-17 19:01:59 +00:00
RyoImayoshi
c1d88031c9 Update repositories.txt (#364) 2021-08-17 10:16:19 +00:00
Willi Zschiebsch
23ba397f67 Update repositories.txt (#362) 2021-08-16 17:57:33 +00:00
Khoi Hoang
8f15d91cb5 Add ESP32_New_ISR_Servo Library (#361) 2021-08-16 00:44:24 +00:00
Khoi Hoang
8ae110d065 Add ESP32_New_TimerInterrupt Library (#360) 2021-08-15 06:37:39 +00:00
Rob Tillaart
8f0bbadd7a Add AGS20MA (#359)
* add TCA9555

* add RobTIllaart/SGP30

* Add AGS02MA

TVOC sensor - experimental library, use low speed I2C < 30 KHz, UNO does not really work as it cannot go that low.
2021-08-13 07:45:33 +00:00
Ioulianos Kakoulidis
4bc02af9cf Update repositories.txt (#356) 2021-08-12 13:27:08 +00:00
Larry Bank
7831111d52 Added JPEGENG library (#355)
Please add my JPEG encoder library to the Arduino library manager.
Thank you
2021-08-12 09:16:15 +00:00
per1234
4095721c3c Merge pull request #353 from per1234/sync-ci-config
Sync CI configuration files with templates
2021-08-11 04:05:18 -07:00
per1234
4f3aca6dee Sync CI configuration files with templates
Some minor adjustments to the comments in the configuration files for the tools used by the repository's CI system to
bring them into sync with the upstream "template" assets.
2021-08-11 03:52:02 -07:00
per1234
9e026dde76 Merge pull request #352 from per1234/check-license
Sync "Check License" CI workflow with template
2021-08-11 03:48:10 -07:00
per1234
d5842c1cfe Enhance "Check License" workflow's error output
The use of the `error` workflow command will cause the important error message output to be surfaced prominently in the
workflow run summary and log. The workflow run logs can be somewhat labyrinthine to those who don't work with them
regularly, so finding the previous output to determine what caused the failure might have been challenging.
2021-08-11 03:39:45 -07:00
per1234
579360761f Use conservative env var brace wrapping in "Check License" workflow
Even if it works as intended, it is not clear what the effect is of the escaped quote at the end of the environment
variables in the shell commands used to check the license detection results. Wrapping the variable names in braces
ensures they are as expected and also makes the working of the code clear.
2021-08-11 03:39:45 -07:00
per1234
e0c4b766d5 Always check both license filename and type in "Check License" workflow
This might provide some additional useful context to the reader in the event of a failure.
2021-08-11 03:39:45 -07:00
per1234
e9352f1e53 Make "Check License" workflow path filter handle either YAML extension
There are two file extensions in common use for YAML files: `.yaml` and `.yml`. Although this project uses `.yml`
exclusively for YAML files, this is a standardized workflow which might be applied to projects that have established the
use of the other extension. It will be most flexible if it supports both.
2021-08-11 03:39:45 -07:00
per1234
0c1daad6e9 Remove reference comment from "Check License" workflow
Although very useful information, it doesn't apply directly to the licensee commands being run in this workflow step, and
thus might be confusing.
2021-08-11 03:39:45 -07:00
per1234
60c38f547a Add manual events as "Check License" workflow triggers
The `workflow_dispatch` event allows triggering the workflow via the GitHub web interface. This makes it easy to trigger
an immediate workflow run after some relevant external change.

The `repository_dispatch` event allows triggering workflows via the GitHub API. This might be useful for triggering an
immediate check in multiple relevant repositories after an external change, or some automated process. Although we don't
have any specific need for this event at the moment, the event has no impact on the workflow, so there is no reason
against having it. It is the sort of thing that can end up being useful if it is already in consistently in place, but
not worth setting up on demand, since the effort to set it up is greater than the effort to trigger all the workflows
manually.
2021-08-11 03:39:45 -07:00
per1234
a5ae9a22af Add source URL comment to "Check License" workflow
This will make it easier for the maintainers to sync fixes and improvements in either direction between the upstream
"template" workflow and its installation in this repository.
2021-08-11 03:39:45 -07:00
per1234
c8625b7cd7 Use standardized workflow/job/step names in "Check License" workflow
These are the naming conventions established in the standardized template workflow.
2021-08-11 03:39:44 -07:00
Felix Biego
4ede286932 Update repositories.txt (#351) 2021-08-11 07:09:31 +00:00
Khoi Hoang
32dd9dc486 Add RTL8720_RTC Library (#350) 2021-08-11 06:17:04 +00:00
Bernd Giesecke
f50500332c RAKWireless libraries for RAK12010, RAK13005, RAK12004, RAK12008, RAK12009 WisBlock modules (#349)
* Add libraries for new RAKwireless modules

RAK13005-TLE7259-Library - RAKwireless library for RAK13005 LIN bus module with TLE7259 transceiver IC
RAK-MQx-Library - RAKWireless library for the WisBlock MQx Gas Sensor Modules

* Add RAK12010 library

Co-authored-by: beegee1962 <bernd.giesecke@rakwireless.com>
2021-08-11 05:02:58 +00:00
Adrian Studer
6eab014b80 Add SwarmTile to Arduino Library Manager (#348)
This Arduino library wraps the API of the Swarm Tile satellite modems.
2021-08-11 01:18:20 +00:00
Paul
945167f7bf Update repositories.txt (#345) 2021-08-09 20:31:31 +00:00
Khoi Hoang
8f5b866f15 Add RTL8720_TimerInterrupt Library (#344) 2021-08-09 16:00:28 +00:00
Basirk
7d4994ba6c Update repositories.txt (#340) 2021-08-08 21:45:08 +00:00
F-Schmidt99
23a9e47ebf Update repositories.txt (#339) 2021-08-07 20:50:55 +00:00
Khoi Hoang
741d9fe2f0 Add FlashStorage_RTL8720 library (#337) 2021-08-07 18:40:33 +00:00
Dave Armstrong
61665d8f42 Update repositories.txt with WMM_Tinier library (#336)
Update repositories.txt with WMM_Tinier library
2021-08-07 15:31:28 +00:00
per1234
a5b8337290 Merge pull request #334 from F-Schmidt99/patch-1
Update repositories.txt - remove mcp23008 library
2021-08-07 05:59:18 -07:00
F-Schmidt99
404b9b43db Update repositories.txt
Removed https://gitlab.com/F-Schmidt/uulm-mcp23008. This is my first library which will be renamed and restructured. The new libraries uulm-mcp23008-core and uulm-mcp23008-user (or similar) will follow soon. They will also provide examples and have a much better documentation.
2021-08-07 13:52:18 +02:00
Sean Boerhout
d144ef03c1 Update repositories.txt (#333) 2021-08-07 03:01:12 +00:00
Jhonatan da Silva Cruz
73ff1329fe Update repositories.txt (#329) 2021-08-05 13:30:09 +00:00
F-Schmidt99
780512c92f Update repositories.txt (#327) 2021-08-05 07:46:56 +00:00
todd-herbert
94748a4377 Update repositories.txt (#324) 2021-08-05 04:53:06 +00:00
SIKTEC
f4a279a9b9 Update repositories.txt (#323) 2021-08-04 23:26:27 +00:00
Carlos Moratelli
c45d74d670 Update repositories.txt (#322) 2021-08-04 17:03:26 +00:00
Khoi Hoang
1c9a8f3615 Add ESP32_C3_ISR_Servo library (#320) 2021-08-04 14:04:38 +00:00
Khoi Hoang
a927c8fa02 Add new ESP32_S2_ISR_Servo library (#319) 2021-08-04 06:28:07 +00:00
Pete Lewis
0dcc6cbe16 added SparkFun_Tsunami_Qwiic_Arduino_Library (#317) 2021-08-03 21:13:41 +00:00