From 00f14bea4a0c3aebaf429e4a24da98f00761dae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Gauthier?= Date: Tue, 2 Dec 2025 13:58:30 +0100 Subject: [PATCH] reorganise and clean tree project folder --- README.md | 5 +++-- time.py => exec/time.py | 0 montage.drawio => images/montage.drawio | 0 montage.drawio.png => images/montage.drawio.png | Bin .../storage_structure.drawio | 0 .../storage_structure.drawio.png | Bin 6 files changed, 3 insertions(+), 2 deletions(-) rename time.py => exec/time.py (100%) rename montage.drawio => images/montage.drawio (100%) rename montage.drawio.png => images/montage.drawio.png (100%) rename storage_structure.drawio => images/storage_structure.drawio (100%) rename storage_structure.drawio.png => images/storage_structure.drawio.png (100%) diff --git a/README.md b/README.md index f16ee6d..597abff 100644 --- a/README.md +++ b/README.md @@ -5,15 +5,16 @@ The embedded part is made in **C++**, the update RTC time file and the extraction data measure file are made in **Python**. ## Arduino mounting -![Arduino mounting](montage.drawio.png) +![Arduino mounting](images/montage.drawio.png) ## EEPROM header and data storage The assembly collect data and write them in the EEPROM when the embedded system is deployed. To facilitate the understanding of the storage in the EEPROM see the following image. -![Header data EEPROM struct](storage_structure.drawio.png) +![Header data EEPROM struct](images/storage_structure.drawio.png) ## Executable files +All executables files are in `exec/` folder. ### Time update Once the arduino is connected to your desktop. `python3 time.py ` diff --git a/time.py b/exec/time.py similarity index 100% rename from time.py rename to exec/time.py diff --git a/montage.drawio b/images/montage.drawio similarity index 100% rename from montage.drawio rename to images/montage.drawio diff --git a/montage.drawio.png b/images/montage.drawio.png similarity index 100% rename from montage.drawio.png rename to images/montage.drawio.png diff --git a/storage_structure.drawio b/images/storage_structure.drawio similarity index 100% rename from storage_structure.drawio rename to images/storage_structure.drawio diff --git a/storage_structure.drawio.png b/images/storage_structure.drawio.png similarity index 100% rename from storage_structure.drawio.png rename to images/storage_structure.drawio.png