From 4050a95ba5392c9f284b47ce1b8d5a96b7fef1df Mon Sep 17 00:00:00 2001 From: Jared Date: Tue, 5 Jul 2016 17:05:01 -0400 Subject: [PATCH] Update send_Blink.ino Corrected some comments while reading through this --- examples/send_Blink/send_Blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/send_Blink/send_Blink.ino b/examples/send_Blink/send_Blink.ino index fb2b4d0..7af5825 100644 --- a/examples/send_Blink/send_Blink.ino +++ b/examples/send_Blink/send_Blink.ino @@ -27,9 +27,9 @@ unsigned char stmp[8] = {ledHIGH, 1, 2, 3, ledLOW, 5, 6, 7}; void loop() { Serial.println("In loop"); - // send data: id = 0x00, standrad frame, data len = 8, stmp: data buf + // send data: id = 0x00, standard frame, data len = 8, stmp: data buf CAN.sendMsgBuf(0x70,0, 8, stmp); - delay(1000); // send data per 100ms + delay(1000); // send data once per second } /*********************************************************************************************************