You are reading a single comment by @Wilberforce and its replies.
Click here to read the full conversation.
-
in mySSD1360.js, in exports.connectSPI function ,
if (rst) { digitalPulse(rst,0,10); /* for(var i = 0; i<10; i++){ digitalWrite(rst,0); digitalWrite(rst,1); } */ }
the OLED dosn't work.
then , try
if (rst) { //digitalPulse(rst,0,10); for(var i = 0; i<10; i++){ digitalWrite(rst,0); digitalWrite(rst,1); } }
the OLDE works well.
so, I think digitalPulse(rst,0,10) doesn't works correctly.
@user73896
We are still in the process of debugging the ESP32 code.
Please can you confirm the following
a. I'm surprised this did not work:
cs.reset()
andcs.set()
Please can you re-test?
b.
digitalPulse(rst,0,10)
I'm not sure if this has been implemented - @JumJum - can you recall?