From 914a4b345cd34cc5c3d3ba16b41425c3a23756d5 Mon Sep 17 00:00:00 2001 From: Hel Gibbons <50950368+helgibbons@users.noreply.github.com> Date: Wed, 18 Jan 2023 15:41:33 +0000 Subject: [PATCH] Correct RAM units --- micropython/examples/pico_display/ram_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/examples/pico_display/ram_test.py b/micropython/examples/pico_display/ram_test.py index 98e4beae..213e3c6b 100644 --- a/micropython/examples/pico_display/ram_test.py +++ b/micropython/examples/pico_display/ram_test.py @@ -23,7 +23,7 @@ def free(full=False): if not full: return P else: - return (f"Total RAM \n{T} KB \nUnused RAM \n{F} KB \n({P} free)") + return (f"Total RAM \n{T} bytes \nUnused RAM \n{F} bytes \n({P} free)") def hsv_to_rgb(h, s, v):