Skip to content

Arduino: using libraries

New Course Coming Soon:

Get Really Good at Git

We’re millions of computer programmers, around the world, 95% of the time working on solving more or less the same problems. Thankfully developers realized, long ago, that code can be written to be reused, in the form of libraries. And those libraries can be shared among developers.

Often libraries are shared free of charge, openly, and this is the case of Arduino.

Some libraries are “Arduino official libraries”, curated by the Arduino team.

The official libraries can be found on this page: https://www.arduino.cc/reference/en/libraries/ and their source code is available on GitHub at https://github.com/arduino-libraries.

Since they are on GitHub, it’s easy to start collaborating on them, too, to submit fixes and improvements.

Official libraries are very easy to include in our project.

In the Arduino IDE Sketch menu, select Include Library, and you will see a list of Arduino libraries included by default.

Pick one, for example Servo:

This will add a #include <Servo.h> line on top of the file, and you’re ready to go.

You can include more libraries through the Library manager, which you can open from the menu Tools and Manage libraries...:

Some libraries are built and maintained by the community, and they do not have a centralized place where they can be found.

Google is a good place where to find those libraries.

Sometimes you need to include a library that’s not official and not included in the Library manager.

In this case in the Arduino IDE Sketch menu, select Include Library, and then choose Add .ZIP library to load a library from a zip file.

After you load it, you will see it listed in the Contributed libraries section in the menu.

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!

Here is how can I help you: