Diferencia entre revisiones de «bitWrite()»
De ArduWiki
(→Vea también) |
(→Referencias) |
||
Línea 32: | Línea 32: | ||
* [[shiftOut()]] | * [[shiftOut()]] | ||
− | == Referencias == | + | == Referencias externos == |
* [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | * [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | ||
− | [[Category:Funciones]] | + | [[Category:Funciones bit y byte]] |
Revisión del 23:04 11 jun 2019
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.