docs: add TZ+3 mention, remove stale line ref

This commit is contained in:
UA1ZBE
2026-07-22 14:03:44 +03:00
parent 9b1c8f3497
commit e68a762e88
2 changed files with 3 additions and 3 deletions

View File

@@ -121,7 +121,7 @@ All commands are processed in `onGroupDataRecv()`:
| `kontrol <min>` | auto-status every N min | `kontrol 60 min ok` |
| `kontrol off` | disable auto-status | `kontrol off` |
| `reboot` | reboot device | `rebooting` |
| `time` | show RTC date/time | `time:22.07.2026 11:00` |
| `time` | show RTC date/time (MSK, UTC+3) | `time:22.07.2026 11:00` |
| `time s DD.MM.YYYY HH.MM` | set RTC date/time | `time set 22.07.2026 11.00` |
### Response Delay
@@ -223,7 +223,7 @@ The LED blink (3 fast flashes) is the first thing in `onGroupDataRecv`. If LED d
- `rtc_clock.getCurrentTime()` returning bogus data (VolatileRTCClock starts from 0, fine).
### Adding a new command
1. Add `else if` block in `onGroupDataRecv()` after line 168.
1. Add `else if` block in `onGroupDataRecv()`.
2. Use `strcmp(cmd, "command") == 0` for exact match.
3. Call `send_text("response")` to reply.
4. Update the `help` string.