From b995a759079c82a1a0d867e1843f7ed12318479b Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Sun, 21 Apr 2024 08:30:07 -0500 Subject: [PATCH] Update TLV8.md --- docs/TLV8.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/TLV8.md b/docs/TLV8.md index c822864..b7b63ff 100644 --- a/docs/TLV8.md +++ b/docs/TLV8.md @@ -167,6 +167,9 @@ TLV8_it supports the following methods: * example: `uint8_t n = (*myIT)[i]` * note there is no range-checking so make sure *i* does not try to reference an element beyond the end of the VALUE byte-array +* `T getVal()` + * this template function interprets the VALUE byte-array as a single unsigned integer of type T + * example: ```C++ TLV8 myTLV; // instantiates an empty TLV8 object