From 869699b1e005e73bd5600853bf6a9e696ff3c757 Mon Sep 17 00:00:00 2001 From: William Goodspeed Date: Sat, 18 Jan 2025 10:13:34 +0800 Subject: [PATCH] aioble/README.md: fix reference error Signed-off-by: William Goodspeed --- micropython/bluetooth/aioble/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/bluetooth/aioble/README.md b/micropython/bluetooth/aioble/README.md index 83ae00209..78fa994c7 100644 --- a/micropython/bluetooth/aioble/README.md +++ b/micropython/bluetooth/aioble/README.md @@ -123,7 +123,7 @@ while True: appearance=_GENERIC_THERMOMETER, manufacturer=(0xabcd, b"1234"), ) - print("Connection from", device) + print("Connection from", connection.device) ``` #### Update characteristic value: (Server)