If anybody wants to try this themselves, you can simply do it from Realterm like I did, or with an Arduino(a good alternative to those without RS-232 ports on their computers) using this code I put together below, which will toggle the power every 3 seconds.
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.write(0x10);
Serial.write(0xEF);
Serial.write(0xD5);
Serial.write(0x7B);
delay(3000);
}
Stay tuned for more...
No comments:
Post a Comment