Go to file
Eduard Iten 1067796df4 fix(slave_node): Stabilize Modbus RTU communication
The Modbus server was previously unstable, leading to intermittent CRC errors when polled by a master. This was caused by the main thread exiting after initialization, which created timing and race condition issues for the interrupt-driven Modbus stack.

This fix ensures the main thread continues to run in a low-power sleep loop (). This provides a stable context for the Modbus server, resolving the CRC errors and ensuring reliable communication.
2025-07-01 14:30:22 +02:00
docs feat(docs): Mark task 1.1 as done 2025-06-30 18:46:04 +02:00
hardware Hardware updated 2025-06-30 13:52:33 +02:00
software fix(slave_node): Stabilize Modbus RTU communication 2025-07-01 14:30:22 +02:00
.gitignore added gitignore to ignore build dirs 2025-06-13 07:48:18 +02:00
README.de.md feat(i18n): Add French and Spanish translations 2025-06-30 18:10:51 +02:00
README.es.md feat(i18n): Add French and Spanish translations 2025-06-30 18:10:51 +02:00
README.fr.md feat(i18n): Add French and Spanish translations 2025-06-30 18:10:51 +02:00
README.md feat(i18n): Add French and Spanish translations 2025-06-30 18:10:51 +02:00

README.md

🇩🇪 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.