- // Set all pins to output
- gpioSetDir(SSD1306_RST_PORT, SSD1306_RST_PORT, gpioDirection_Output);
-
- // Reset the LCD
- gpioSetValue(SSD1306_RST_PORT, SSD1306_RST_PIN, 1);
- DELAY(1);
- gpioSetValue(SSD1306_RST_PORT, SSD1306_RST_PIN, 0);
- DELAY(10);
- gpioSetValue(SSD1306_RST_PORT, SSD1306_RST_PIN, 1);
-