bit()
Description
Computes the value when nth bit is 1 and other bits is 0.
bit(n) is equivalent to 1 << n
Syntax
bit(n)
Parameter Values
- n: the bit whose value to compute
Return Values
- The value of the bit.
Example Code
void setup() {
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
long x;
for (int n = 0; n < 16; n++) {
x = bit(n); // equivalent to x = 1 << n;
Serial.println(x, BIN);
}
}
void loop() {
}
The result in Serial Monitor:
COM6
1
10
100
1000
10000
100000
1000000
10000000
100000000
1000000000
10000000000
100000000000
1000000000000
10000000000000
100000000000000
1000000000000000
Autoscroll
Clear output
9600 baud
Newline
See Also
- Language : bitClear()
- Language : bitRead()
- Language : bitSet()
- Language : bitWrite()
- Language : highByte()
- Language : lowByte()
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.