Hello
I have an ESP32 application where I need to use the rAdafruit_ST7735 version 1.00 library and the rSD version 1.21 library and problems arise.
If I use each library separately everything works correctly, however when I try to use both libraries it stops connecting rSD, it does not detect the card
I initialized the rAdafruit_ST7735 library with HARD like this:
I initialized the rSD library like this
Some suggestion.
Thank you so much
I have an ESP32 application where I need to use the rAdafruit_ST7735 version 1.00 library and the rSD version 1.21 library and problems arise.
If I use each library separately everything works correctly, however when I try to use both libraries it stops connecting rSD, it does not detect the card
I initialized the rAdafruit_ST7735 library with HARD like this:
' Inicializa los Pines para el Display
CS_Oled.Initialize ( 5,CS_Oled.MODE_OUTPUT) ' Pin CS del Display
RS_Oled.Initialize ( 2,RS_Oled.MODE_OUTPUT) ' Pin A0 del Display
MOSI.Initialize (23,MOSI.MODE_OUTPUT) ' Pin MOSI del Display
RST_Oled.Initialize (15,RST_Oled.MODE_OUTPUT) ' Pin RST del Display
CLK.Initialize (18,CLK.MODE_OUTPUT) ' Pin CLK del Display
' Inicializa la Libreria
Oled.InitializeHardware(CS_Oled.PinNumber,RS_Oled.PinNumber,RST_Oled.PinNumber,2)
'Oled.InitializeSoftware(CS_Oled.PinNumber,RS_Oled.PinNumber,MOSI.PinNumber,CLK.PinNumber,-1,2)
I initialized the rSD library like this
In the compilation there is no error and apparently everything is correct, but the library returns FALSE when initializing itSD_CS.Initialize(13,SD_CS.MODE_OUTPUT) ' Inicializa PIN de como Salida Digital
SD.Initialize(SD_CS.PinNumber) ' Inicializa SD
Some suggestion.
Thank you so much