gpt4 book ai didi

python-3.x - 在 Microbit 上将十进制转换为二进制

转载 作者:行者123 更新时间:2023-12-05 05:22:58 26 4
gpt4 key购买 nike

我认为将我的 BBC Microbit 变成一个数字时钟会是一个有趣的想法——具体来说,一个二进制数字时钟。我在 Python 中编写了一些代码来做到这一点:

from microbit import *

def makeBinary(intValue,padding):
number = intValue
returnValue = ""
brightness = 4 #value 0 to 8
while number > 0:
bit = number % 2
if bit > 0:
bit = brightness
quotient = number / 2
returnValue = str(bit)+returnValue
number = quotient
for i in range(len(returnValue),padding):
returnValue = "0"+returnValue
return returnValue

timeAdvance = 0
minuteAdvance = 0
hourAdvance = 0
secondCounter = 0
while True:
if button_a.was_pressed():
#advance hours
hourAdvance = hourAdvance + 1
if hourAdvance > 23:
hourAdvance = 0
timeAdvance = (hourAdvance*60*60*1000)+(minuteAdvance*60*1000)
elif button_b.was_pressed():
#advance minutes
minuteAdvance = minuteAdvance + 1
if minuteAdvance > 59:
minuteAdvance = 0
timeAdvance = (hourAdvance*60*60*1000)+(minuteAdvance*60*1000)
else:
#calculate and display time
if (running_time()-secondCounter) > 1000:
secondCounter = running_time()
seconds = (running_time()/1000)%60
minutes = ((running_time()+timeAdvance)/1000/60)%60
hours = ((running_time()+timeAdvance)/1000/60/60)%24
pmString = "0"
addthirtyMString = "00000"
addthirtySString = "00000"
if hours>12:
pmString = "9"
hours = hours - 12
if minutes>29:
addthirtyMString = "00900"
minutes = minutes - 30
if seconds>29:
addthirtySString = "00900"
seconds = seconds - 30
hourString = makeBinary(hours,4)
minuteString = makeBinary(minutes,5)
secondString = makeBinary(seconds,5)
time = Image(pmString+hourString+":"+minuteString+":"+addthirtyMString+":"+secondString+":"+addthirtySString)
display.show(time)

问题是它不起作用!在 Microbit 上运行它会导致二进制字段返回全 1,除非数字为 0。因此 10:48:01AM(错误地)显示为

 ****
*****

*****

应该显示为

 * * 
* *
*
*

鉴于 am/pm 指示灯和 add 30 seconds/add 30 minutes 标记工作正常,这显然只是格式化十进制数的二进制表示的问题(makeBinary 函数).我最初尝试使用“格式”来执行此操作 - 但 microPython,至少在 microBit 上,显然不喜欢它。

当我在“真实”计算机上运行 makeBinary 时,它工作正常。有谁知道这里可能出了什么问题?或者对于将十进制转换为二进制字符串而不使用任何可能混淆 MicroBit 的函数的其他简单方法的任何建议?

最佳答案

microbit 使用 python 3 作为 micropython。这意味着两个整数相除通常会返回一个浮点值,而不是整数。如果你明确想要整数除法,你应该使用 // (它也适用于 Python 2。)总结:

          Py 2          Py 3 and microbit
35 / 10 3 3.5
35 // 10 3 3
35.0 / 10 3.5 3.5

由于 hours 以 float 形式出现,它混淆了 make_binary() 函数,它需要一个 int。

        quotient = number // 2

[...]

        seconds = (running_time()//1000)%60
minutes = ((running_time()+timeAdvance)//60000)%60
hours = ((running_time()+timeAdvance)//3600000)%24

应该解决除法的第一个问题。

如果您在计算机上安装和使用 python 3,您可能会发现它更容易调试。

现在,python 已经有了一个 bin() 函数,它接受一个整数并将二进制表达式作为字符串返回

>>> bin(58)
'0b111010'

并且您的代码应该使用它而不是自己编写。

关于python-3.x - 在 Microbit 上将十进制转换为二进制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39163555/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com