Hi everyone, I am working with an aliexpress ssd1283a based 1.6inch oled display connected to a UNO
The software spi works, however the hardware one does not. Libraries and defines are listed below. (I am setting the software SPI to the same pins as the hardware SPI, just for ease of not having to reconnect anything)
Is this to be expected? Or am I missing something?
regards
#include <LCDWIKI_GUI.h> //Core graphics library
#include <LCDWIKI_SPI.h> //Hardware-specific library
//parameters define
#define MODEL SSD1283A
#define CS 10
#define CD 9
#define SDA 11
#define MOSI SDA
#define SCK 13
#define RST 8
#define LED A3
LCDWIKI_SPI mylcd (MODEL,CS,CD, MISO, MOSI, RST, SCK, LED); //works
//LCDWIKI_SPI mylcd(SSD1283A, 10, 9, 8, A3); // does not work.