Search found 2 matches

by diegoalt5
Wed Aug 31, 2016 4:17 pm
Forum: ESP8266 boards
Topic: ssd1306 display scroll
Replies: 10
Views: 15249

Re: ssd1306 display scroll

Hi, Thanks for your answer, it works but only in Y scroll
means that this works:
display.scroll(0,10)
display.show()

but this not
display.scroll(10,0)
display.show()

deshipu: you said that the display has hardware scrolling capability, how it works? how can i achieve it?

Thank you guys
by diegoalt5
Wed Aug 31, 2016 2:18 am
Forum: ESP8266 boards
Topic: ssd1306 display scroll
Replies: 10
Views: 15249

ssd1306 display scroll

Hi, i am looking the ssd1306 display library and I see that it has a method called scroll, I thought that this method scrolls all the pixels in my display but it doesn't work. My code: import ssd1306 from machine import I2C, Pin import math i2c = I2C(sda=Pin(4), scl=Pin(5)) display = ssd1306.SSD1306...