bitRead()
描述
读取一个数字中的某个位元。
语法
bitRead(x, n)
参数
x
: 要读取的数字。
n
: 指定读取的位元,从 0 开始算起,而 0 则对应最低有效位 (最右边的位元)。
回传
该位元的值 (0 或 1)
See also
- bit()
- bitWrite()
- bitSet()
- bitClear()
本页由热血青年 LBU 译自英文版。
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.