commit 5a63bd4063b19faefa957e25f92eef575a669bc0 Author: Tom Date: Sun Dec 11 09:55:35 2022 +0100 initial arduino import diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..2a4ffa3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "lib/TFT_ILI9163C"] + path = lib/TFT_ILI9163C + url = https://github.com/ArduinoHannover/TFT_ILI9163C.git diff --git a/lib/README b/lib/README new file mode 100644 index 0000000..6debab1 --- /dev/null +++ b/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include +#include + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/lib/TFT_ILI9163C b/lib/TFT_ILI9163C new file mode 160000 index 0000000..8134ed1 --- /dev/null +++ b/lib/TFT_ILI9163C @@ -0,0 +1 @@ +Subproject commit 8134ed1c8bf97af43441d9e0b0a15399041d6193