bitSet()

Ativa (escreve 1 em) um bit de uma variável numérica.

Descrição

Sintaxe

bitSet(x, n)

Parâmetros

  • x: a variável numérica cujo bit se quer ativar
  • n: qual bit ativar, começando em 0 para o bit menos significativo (mais à direita)

Retorna

Nada

Código de Exemplo

O código a seguir demonstra o use de bitSet() ao imprimir uma variável no Monitor Serial antes e depois do uso de bitSet().

void setup() { Serial.begin(9600); byte x = 0b10000000; // the 0b prefix indicates a binary constant Serial.print("BEFORE: "); Serial.println(x, BIN); // 10000000 bitSet(x, 2); // write 1 to the third bit Serial.print("AFTER: "); Serial.println(x, BIN); // 10000100 } void loop() {}

The result in Serial Monitor:

COM6
Send
BEFORE: 10000000 AFTER: 10000100
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