https://github.com/einararnason/ssd1306
C++ driver library for the SSD1306 OLED, optimized for speed.
https://github.com/einararnason/ssd1306
Last synced: about 2 months ago
JSON representation
C++ driver library for the SSD1306 OLED, optimized for speed.
- Host: GitHub
- URL: https://github.com/einararnason/ssd1306
- Owner: EinarArnason
- License: mit
- Created: 2022-05-08T11:34:55.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-08T13:36:11.000Z (about 3 years ago)
- Last Synced: 2024-04-13T15:32:42.179Z (about 1 year ago)
- Language: C++
- Size: 77.1 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SSD1306 library
## The What
C++ driver library for the SSD1306 OLED, optimized for speed.
## The Why
Due to the non-linear memory addressing of the SSD1306, fast writing is not straightforward. This library is an attempt to address the issue.
## The How
### Using cmake
```cmake
add_subdirectory(${ssd1306Dir})
target_include_directories(${PROJECT_NAME} PRIVATE ${ssd1306Dir})
target_link_libraries(${PROJECT_NAME} SSD1306)
```## The Who
Einar Arnason