From 458c9ce9958505b69b909adf27f0b31a5d6f48c2 Mon Sep 17 00:00:00 2001 From: waltem01 Date: Mon, 12 Feb 2024 11:57:06 +0100 Subject: [PATCH] linking subdirectories --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d12771f..b198073 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,16 @@ ## Description -This project is a two-part software solution designed to drive LED matrices. It leverages a specific library, which is originally designed for controlling LED matrices. The project adds an additional layer of abstraction to this library, making it more accessible and easier to use. +This project is a two-part software solution designed to drive LED matrices. It leverages a [specific library](./API/deps/librgbmatrix.so), which is originally designed for controlling LED matrices. The project adds an additional layer of abstraction to this library, making it more accessible and easier to use. ### REST API -The first part of the project is a REST API, written in Python. This API interacts with the aforementioned library, providing access to its basic functions as well as more complex commands derived from them. +The first part of the project is a [REST API](./API/), written in Python. This API interacts with the aforementioned library, providing access to its basic functions as well as more complex commands derived from them. ### Webserver -The second part of the project is a webserver. This server interacts with the REST API, using its commands to execute actions in the form of sub-programs. +The second part of the project is a [webserver](./Webserver/). This server interacts with the [REST API](./API/), using its commands to execute actions in the form of sub-programs. ## Project Structure -The project is divided into two main directories, each containing the necessary files for the REST API and the webserver respectively. The setup instructions for each part are provided within their respective directories. +The project is divided into two main directories, each containing the necessary files for the [REST API](./API/) and the [webserver](./Webserver/) respectively. You might've noticed the links to these directories whenever they were mentioned. The setup instructions for each part are provided within their respective directories.