You are reading a single comment by @Aifer and its replies. Click here to read the full conversation.
  • @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() and cs.set()

    Please can you re-test?

    b. digitalPulse(rst,0,10)

    I'm not sure if this has been implemented - @JumJum - can you recall?

  • 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.

About

Avatar for Aifer @Aifer started