top of page
Using Libraries
#include
#include is used to include outside libraries in your sketch. This gives the programmer access to a large group of standard C libraries (groups of pre-made functions), and also libraries written especially for Arduino.
Note that #include has no semicolon terminator, and the compiler will yield cryptic error messages if you add one.
#include LibraryName
LibraryName - Library or attached file to be included
bottom of page