Closed xsk8rat closed 6 years ago
Small change to prevent compile time errors. These two functions (setDisplayHeight and setDisplayWidth) were declared as void, but were returning values instead of setting them. Typos really.
New versions:
void SSD1320::setDisplayWidth(uint16_t W) { _displayWidth = W; }
void SSD1320::setDisplayHeight(uint16_t H) { _displayHeight = H; }
You rock. Thank you for the PR! It makes my life much easier.
Small change to prevent compile time errors. These two functions (setDisplayHeight and setDisplayWidth) were declared as void, but were returning values instead of setting them. Typos really.
New versions:
void SSD1320::setDisplayWidth(uint16_t W) { _displayWidth = W; }
void SSD1320::setDisplayHeight(uint16_t H) { _displayHeight = H; }