OK, thanks Wilberforce. That clears up that part for me, I had tried using setTimeout (see below) as I though it may be a timing issue, it was not successful, but now I understand a little more.
function myCommand2() {
setTimeout(sendLowA, 200);
setTimeout(sendLowB, 200);
setTimeout(sendLowC, 200);
}
Now I just need to figure out how to send more characters across.
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
OK, thanks Wilberforce. That clears up that part for me, I had tried using setTimeout (see below) as I though it may be a timing issue, it was not successful, but now I understand a little more.
Now I just need to figure out how to send more characters across.