Diferencia entre revisiones de «bit()»
De ArduWiki
(→Parámetros) |
(→Retornos) |
||
Línea 31: | Línea 31: | ||
== Retornos == | == Retornos == | ||
− | Retorna el bit 2^ | + | Retorna el bit 2^valor o 2^variable. |
== Advertencias == | == Advertencias == |
Revisión del 02:32 25 jul 2018
Contenido
Descripción
Calcula el valor del bit especificado por el parametro.
bit | valor |
---|---|
0 | 1 |
1 | 2 |
2 | 4 |
4 | 8 |
5 | 16 |
6 | 32 |
7 | 64 |
Sintaxis
bit(valor); bit(variable);
Parámetros
- valor
- valor a evaluar.
- variable
- variable a evaluar.
Retornos
Retorna el bit 2^valor o 2^variable.
Advertencias
Nada.
Ejemplo
Parpadea el LED a bordo (pin 13).
void setup(){
pinMode(LED_BUITIN, OUTPUT);
}
void loop(){
PINB = bit(5);
delay(500);
}