Hi @Seoulhawk
I have tested this way:
look the analuse image.
PS; I forgot the x/04 at the end.
Now try this:
Serial.write ("\x00\x00\x00\x00\x00\x01\x5A\x00\x02\xAA\x48\x45\x4C\x4C\x51\x04", 16);`
ops one more error.
It's not Hex xAA, it's x41 x41.
Serial.write ("\x00\x00\x00\x00\x00\x01\x5A\x00\x02\x41\x41\x48\x45\x4C\x4C\x51\x04", 17);
void setup() {
Serial.begin(9600);
}
//===========================================================
void loop() {
Serial.write ("\x00\x00\x00\x00\x00\x01\x5A\x00\x02\xAA\x48\x45\x4C\x4C\x51", 15);
delay(100);
}
