Go to file
Eduard Iten 6c1ff0c4df feat(refactor): Restructure project for improved modularity and clarity
This commit introduces a major refactoring of the project structure to align
with Zephyr's recommended multi-application and library organization.

Key changes include:
- Relocation of custom modules from 'software/modules/' to 'software/lib/'.
- Introduction of a central 'software/CMakeLists.txt' to manage application
  and library subdirectories.
- Creation of new Kconfig files for 'software/' and 'software/apps/slave_node/'
  to define project-wide and application-specific configurations.
- Removal of the 'gateway' and 'stm32g431_tests' applications.
- Removal of 'shell_modbus.c' and 'shell_system.c' from 'slave_node' application's
  direct source files, indicating a shift towards library-based shell commands.
- Updates to 'software/apps/slave_node/CMakeLists.txt', 'prj.conf', and
  'boards/bluepill_f103rb.conf' to reflect the new structure and dependencies.
2025-07-03 16:58:43 +02:00
.vscode feat(refactor): Restructure project for improved modularity and clarity 2025-07-03 16:58:43 +02:00
docs feat: implement modbus reset command and update docs/tool 2025-07-02 09:55:42 +02:00
hardware Hardware updated 2025-06-30 13:52:33 +02:00
lib feat(refactor): Restructure project for improved modularity and clarity 2025-07-03 16:58:43 +02:00
software feat(refactor): Restructure project for improved modularity and clarity 2025-07-03 16:58:43 +02:00
.gitignore added gitignore to ignore build dirs 2025-06-13 07:48:18 +02:00
README.de.md docs: replace svg logo with png version 2025-07-02 09:22:37 +02:00
README.es.md docs: replace svg logo with png version 2025-07-02 09:22:37 +02:00
README.fr.md docs: replace svg logo with png version 2025-07-02 09:22:37 +02:00
README.md docs: replace svg logo with png version 2025-07-02 09:22:37 +02:00

README.md

Logo

🇩🇪 Deutsch | 🇬🇧 English | 🇫🇷 Français | 🇪🇸 Español

Modular Irrigation System

This project implements a smart, modular irrigation system controlled via Home Assistant.

Documentation

The detailed documentation can be found in the docs/ directory:

  • Concept: Describes the system architecture, the components used, and the basic design decisions.
  • MODBUS Registers: Defines the register map for communication with the slave nodes.
  • Project Plan: Contains the development and implementation plan.

Quick Start

  • Hardware: The KiCad files for the hardware are located in the hardware/ directory.
  • Software: The Zephyr-based firmware for the slave nodes is located in the software/ directory.