- Bump dependency on gfx library to 1.1.0
- Bugfix for setting correct display start line - previous releases were not doing this correctly.
- Removed the self._dcGpioLowForCommandData control hack as is no longer required after Adafruit_GrayOLED base change.
- Fixed critical issue where display not initialized correctly following refactor to use Adafruit_GrayOLED base class.
- Based on a forum post describing how to get vertical scroll only by using startscrolldiagleft() or startscrolldiagright() passing the same value for startPage and endPage, add single direction vertical scrolling example into ssd1306_common.js.
- Refactored to use base class of Adafruit_GrayOLED so that we can optimize data writes. For example, setting only 1 pixel on the screen will only require writing 1 byte of data whereas without these changes, we would write the whole buffer (either 512 bytes or 1024 bytes).
- Provide ability to override colStart, pageStart, display offset and display start line using options.
- Bugfix for drawing horizontal lines with INVERSE color. Fix examples to handle all rotations.
- First official release