Backwards compatiblity break by #97.
This change will fuck up all current implementations, if a new version is released. The first argument OLEDDISPLAY_GEOMETRY g will cause this issue.
Better overload the constructor or set a default value for the argument.
// old
SSD1306Wire(uint8_t _address, uint8_t _sda, uint8_t _scl) {}
// new changed version
SSD1306Wire(OLEDDISPLAY_GEOMETRY g, uint8_t _address, uint8_t _sda, uint8_t _scl) {}