Paso 3: Ejemplo de Arduino de código
#include "Arduino.h"#define DEBUG
SoftwareSerial mySerial (5,6);
unsigned char incomingByte;
void sendIdentifyCmd)
{
mySerial.write (0x7c);
mySerial.write (0xff);
mySerial.write (0xff);
mySerial.write (0 x 01);
mySerial.write (0x08);
mySerial.write (en 0x7d);
#ifdef DEBUG
Serial.Print (0x7c);
Serial.Print (0xff);
Serial.Print (0xff);
Serial.Print (0 x 01);
Serial.Print (0x08);
Serial.Print (en 0x7d);
Serial.println ();
#endif
}
void setup)
{
Serial.Begin (9600);
mySerial.begin (9600);
Serial.println ("comenzar serie inicial! \n");
}
void loop)
{
sendIdentifyCmd ();
demora (2);
mientras que (mySerial.available () > 0)
{
incomingByte=mySerial.read ();
Serial.Print (incomingByte, hexagonal);
Serial.Print (' ');
}
Serial.println ();
retrasar (1000);
}