println()

描述

写入资料到 MicroSD 卡裡的档案,在资料写入完成后再写入一个换行字元(’\n’)到档案,该档案必须是以写入模式打开。当要传送的资料为数字时,每一位数会被拆开来并各自被当作字元(例:如果要送的资料为 123 ,print() 会把 123 当作 ‘1’, ‘2’, ‘3’ 三个字元)。

语法


file.println()
file.println(data)
file.print(data, BASE)

参数

file:被 SD.open() 回传的 File 物件

data:要传送的资料,型态可以为 char, byte, int, longstring

BASE(非必要):BASE 用来指定资料的格式;可用的格式有:BIN(二进位格式)、OCT(八进位格式)、DEC(十进位格式)、HEX(十六进位格式)

回传

byte:回传 println() 写入至档案的位元组数量

See Also

print()
write()


函式库参考主页面

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.