add n and k

master
Eggert Jung 2 years ago
parent 20286460c5
commit fb91b1ccb2

@ -31,6 +31,10 @@ def crap_to_number(num, unit, acdc):
if (unit[0] & 0x1):
number_str+="µ"
if (unit[0] & 0x2):
number_str+="n"
if (unit[0] & 0x4):
number_str+="k"
if (unit[1] & 0x1):
number_str+="m"
if (unit[1] & 0x2):

Loading…
Cancel
Save