Skip to content

Commit b3edbc4

Browse files
authored
Merge pull request #638 from pimoroni/patch/bytes-not-kilobytes
Correct RAM units
2 parents 39c4848 + 914a4b3 commit b3edbc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

micropython/examples/pico_display/ram_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def free(full=False):
2323
if not full:
2424
return P
2525
else:
26-
return (f"Total RAM \n{T} KB \nUnused RAM \n{F} KB \n({P} free)")
26+
return (f"Total RAM \n{T} bytes \nUnused RAM \n{F} bytes \n({P} free)")
2727

2828

2929
def hsv_to_rgb(h, s, v):

0 commit comments

Comments
 (0)