Librerías
\ Wire
Referencia para la versión de Wiring 1.0 Build 0100+. Si tiene una versión previa, use la referencia incluida con su software. Si encuentra errores o tiene comentarios, no dude en contactarnos.
Nombre |
Wire |
Ejemplos |
#include "Wire.h"
void setup()
{
Wire.begin();
Serial.begin(9600);
}
void loop()
{
Wire.requestFrom(2, 6);
while(Wire.available())
{
char c = Wire.read();
Serial.print(c);
}
delay(500);
}
#include "Wire.h"
void setup()
{
Wire.begin(4);
Wire.onReceive(receiveEvent);
Serial.begin(9600);
}
void loop()
{
delay(100);
}
void receiveEvent(int howMany)
{
while(1 < Wire.available())
{
char c = Wire.read();
Serial.print(c);
}
int x = Wire.read();
Serial.println(x);
}
|
Descripción |
Existe un puerto TWI (Two Wire Interface) disponible en la tarjeta Wiring llamado Wire. En las tarjetas Wiring v1 los pines SCL y SDA son: 0 y 1. En la tarjeta Wiring S los pines SCL y SDA son: 8 y 9. |
Sintaxis |
Wire
|
Métodos |
|
Parámetros |
Wire |
El puerto de hardware TWI |
|
Retorna |
Ninguno |
Uso |
Application |
Updated on July 07, 2011 11:16:44pm PDT