You are reading a single comment by @JackBennett and its replies. Click here to read the full conversation.
  • I'm a bit shocked how easy that was. So testament to Gordon there excellent work. Took a bit of figuring which pins my board meant by DO,DI and CLK but not hard.

    I can't seem to write a line to the card once per second (2 seconds is fine) so I'm going to try appending a list in memory and flushing the list every few seconds. Hopefully it will sequentially write quick enough once it's started.

    As this is a power thread

    setInterval(function(){
      console.log('Append');
      fs.appendFileSync('testing.txt', "\tTest line\r\n");
    }, 2000);
    

    Sits at 29.6mA and blips to ~32mA to write.

About

Avatar for JackBennett @JackBennett started