In any case this is what I see on the SPI lines for HW and SW SPI of this example code (nothing on MOSI):
const PIN_SCK = D18; const PIN_MISO = D19; const PIN_MOSI = D23; // HW SPI SPI2.setup({ sck: PIN_SCK, miso: PIN_MISO, mosi: PIN_MOSI}); SPI2.write([1,2,3]); // SW SPI // const spi = new SPI(); // spi.setup({ sck: PIN_SCK, miso: PIN_MISO, mosi: PIN_MOSI}); // spi.write([1,2,3]);
2 Attachments
@rj started
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.
In any case this is what I see on the SPI lines for HW and SW SPI of this example code (nothing on MOSI):
2 Attachments