كل الرسائل

سؤال: Any trick to use the SD card? The SPI is worling well with the ePaper display, but not with the SD card.

السؤال بواسطة anominous على 2020-03-29 07:51:26

Josses01 it works perfectly, (after some searching) please add: ************************************ #include "FS.h" #include "SD.h" #include "SPI.h" #include #include #define SDCARD_SS 13 #define SDCARD_CLK 14 #define SDCARD_MOSI 15 #define SDCARD_MISO 2 SPIClass sdSPI(VSPI); bool sdOK = false; ************************************************* before setup, and in setup: ************************************************* sdSPI.begin(SDCARD_CLK, SDCARD_MISO, SDCARD_MOSI, SDCARD_SS); if (!SD.begin(SDCARD_SS, sdSPI)) { sdOK = false; Serial.println("sorry, failed"); } else { sdOK = true; Serial.println("works fine"); *******************************************************

2021-03-25 08:20:16 مساعدة (2)
عرض
أجابات (2)

سؤال: can we print in abs on ender pro

السؤال بواسطة Vishal Sharma على 2019-10-28 10:23:18

Josses01 Having ruined my magnetic mat at first, I decided not to print ABS. As suggested by my supplier early 2019, the heatbed is capable of delivering the temperature required, but you will need to change the magnetic bed with a glass plate !!!. So be carefull

2020-06-09 05:50:38 مساعدة (5)
عرض
أجابات (13)