From 21107e8de7142b73d6e446f75ffb279d6f5b5589 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 5 Jul 2026 01:52:00 -0700 Subject: [PATCH] docs: align sniff entries dict shape with data_hex/decoded fields Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ec5060..5de31b6 100644 --- a/README.md +++ b/README.md @@ -336,7 +336,7 @@ s.stop() # end the sniff (sends BREAK_LOOP) print(len(s.entries)) # all captured frames across pause/resume cycles print(s.state) # 'sniffing' | 'paused' | 'stopped' -s.entries[0] # {'protocol', 'direction', 'duration', 'timestamp', 'data'} +s.entries[0] # {'protocol','direction','duration','timestamp','data','data_hex','decoded'} s.close() # stop (if needed) and close the serial port ```