Diferencia entre revisiones de «bitWrite()»
De ArduWiki
m |
(→Vea también) |
||
Línea 29: | Línea 29: | ||
* [[highByte()]] | * [[highByte()]] | ||
* [[lowByte()]] | * [[lowByte()]] | ||
+ | * [[shiftIn()]] | ||
+ | * [[shiftOut()]] | ||
== Referencias == | == Referencias == |
Revisión del 16:58 27 jul 2018
Contenido
Descripción
Sobrescribe un bit según el valor ingresado.
Sintaxis
bitWrite(variable, n, valor);
Parámetros
- variable
- Variable numerica a evaluar.
- n
- bit a escribir.
- valor
- valor bool (o el resultado de "diferente de cero" cuando se ingresa un dato de otro tipo) a escribir en el bit.
Retornos
Nada.
Advertencias
Nada.