From f6872b8fbfc2c87448375a00d666b795fa15114e Mon Sep 17 00:00:00 2001 From: XdoctorwhoZ Date: Fri, 28 Jun 2024 13:20:51 +0100 Subject: [PATCH] append repeat param to registers --- .../specifications/mqtt-panduza/interfaces/registers.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/content/docs/50_platform/specifications/mqtt-panduza/interfaces/registers.md b/content/docs/50_platform/specifications/mqtt-panduza/interfaces/registers.md index c3fe6f0..feeb25d 100644 --- a/content/docs/50_platform/specifications/mqtt-panduza/interfaces/registers.md +++ b/content/docs/50_platform/specifications/mqtt-panduza/interfaces/registers.md @@ -29,7 +29,8 @@ To write a register { "cmd": "w", "index": 0, - "values": [42] + "values": [42], + "repeat": 500 } ``` @@ -39,7 +40,8 @@ To write a multiple continous registers { "cmd": "w", "index": 0, - "values": [42, 1, 2, 3] + "values": [42, 1, 2, 3], + "repeat": 500 } ``` @@ -58,9 +60,12 @@ To read 3 register from index 0 "cmd": "r", "index": 0, "size": 3, + "repeat": 500 } ``` +- repeat allow to repeat the command every X milliseconds + ## Attributes | Name | Type |