You are reading a single comment by @MaBe and its replies. Click here to read the full conversation.
  • If hadware SPI does not work than try software SPI and start like this and change the pins as needed.

    var  spi = new SPI();
    spi.setup({sck:NodeMCU.D2, miso:NodeMCU.D4, mosi:NodeMCU.D3});
    E.connectSDCard(SPI1, NodeMCU.D8 /*CS*/);
    console.log(require("fs").readdirSync())­;
    
About

Avatar for MaBe @MaBe started