highByte()
Descrição
Extrai o byte mais significativo (o mais à esquerda) de uma word (valor de 16 bits), ou o segundo byte menos significativo de um tipo de dado maior.
Sintaxe
highByte(x)
Parâmetros
- x: um valor de qualquer tipo
Retorna
byte
Código de Exemplo
void setup() {
Serial.begin(9600); // setup serial
int variable = 7982;
Serial.print("VARIABLE: ");
Serial.println(variable, HEX); // in hex format
byte high_byte = highByte(variable);
Serial.print("HIGH_BYTE: ");
Serial.println(high_byte, HEX); // in hex format
}
void loop() {
}
The result in Serial Monitor:
COM6
VARIABLE: 1F2E
HIGH_BYTE: 1F
Autoscroll
Clear output
9600 baud
Newline
Ver Também
- Linguagem : bit()
- Linguagem : bitClear()
- Linguagem : bitRead()
- Linguagem : bitSet()
- Linguagem : bitWrite()
- Linguagem : lowByte()
- Linguagem : word()
※ 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.