how to publish a new library..?

hi all,

a friend of mine an me would like to publish some libraries, e.g. a task manager with background operation (i.e. no call in loop() required).

Now my question: how does one publish a library such that it can be found easily - ideally via library manager in the Arduino IDE? We have already uploaded it it Github (GitHub - kcl93/Tasks: Lightweight and fast preemptive scheduler for ATMega and SAM3X Arduino Boards). What would be the next steps?

For your advice thanks a lot in advance!

Regards, Georg

btw: SAMD Arduino boards are Zero, M0, MKR, Nano 33 IoT with SAMD21G. DUE is "SAM". and it is the only SAM3X Arduino

Be sure to spend time writing good documentation for your library. Think about the questions that someone will have who has not worked through the design the way you have.

The AccelStepper library documentation is a good example, though even that has some significant shortcomings.

...R

This may also help you Writing Arduino Libraries – Arduino++