我有一个 BBC Micro:Bit。它插入 Adeept 板,该板具有 I2c 1602 LCD 显示屏、Adeept 操纵杆和 Adeept 按钮模块。我必须为开发板的 USB 端口供电才能运行 LCD 显示器。我创建了一个网站,并希望能够将数据从 Micro:Bit 同步到网站(您选择的名称和我稍后添加的其他数据)。我将名称设置为某事。然后我将我的 USB 插入计算机和 Micro:Bit。但是当我备份和恢复时,名称是列表中的第一个名称。
我在没有恢复的情况下备份了它,页面说这个名字是名字(即使我改变了它)。然后,当我导航到 Micro:Bit 上的名称“app”时,它还会显示名字。不知道是供电问题还是代码问题。我的脚本在这里:https://repl.it/@awesomecrater/smartmicrobit#script.js
我正在使用来自 GitHub 的这个库https://github.com/bsiever/microbit-webusb/blob/master/ubitwebusb.js和 Micro 上的代码:Bit 接收备份信号在伪代码中看起来像这样:
When serial received with New Line {
Split the data at "|||||||" and store it in serialthing
If the first item in serialthing is "backup" {
write the variable name to the serial output
} Else if the first item in serialthing is "name" {
convert the second item in serialthing to a number and store it in name.
}
}
有谁知道为什么将其设置回列表中的第一项?
name
将列表的当前项存储为索引。