Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我们Serial.println在草图中调用该函数时,它会将输出打印到串行通道。
Serial.println
当 LilyPad 连接到 PC 并将其保存到 PC 中的磁盘时,有没有办法稍后获取输出?
您可以添加 SD 卡并将数据保存到其中。虽然使用板载 512 字节的 EEPROM 会简单得多。
EEPROM写教程
EEPROM.write(addr, val);
EEPROM 读取教程
value = EEPROM.read(address);
根据可用的 IO 引脚,您还可以添加一些额外的 EEPROM。
I2CEEPROM