bitRead()

Descrição

Lê o valor de um bit em um número.

Sintaxe

bitRead(x, n)

Parâmetros

  • x: o número do qual se quer ler o bit
  • n: qual bit ler, começando em 0 para o bit menos significativo (mais à direita)

Retorna

O valor do bit (0 ou 1).

Código de Exemplo

void setup() { Serial.begin(9600); byte x = 0b10000101; // the 0b prefix indicates a binary constant Serial.println(x, BIN); // 10000101 for (int i = 0; i < 8; i++) Serial.print(bitRead(x, i)); // print bits one by one } void loop() {}

The result in Serial Monitor:

COM6
Send
10000101 10100001
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

Ver Também

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.

※ OUR MESSAGES