pico-ssd1306 icon indicating copy to clipboard operation
pico-ssd1306 copied to clipboard

SSD1306 Library for RP2040

Results 5 pico-ssd1306 issues
Sort by recently updated
recently updated
newest added

The `buffer` in the `FrameBuffer` is allocated but never freed. This could cause memory leak if the `SSD1306` is out of scope or a new buffer is set. Granted this...

bug

Every include file starts with `#pragma once` and continues with `#ifndef FILENAME_H` and `#define FILENAME_H` The two methods do fundamentally the same thing. I would remove the #ifndef / #define...

Hello, I've just tested the full ascii chars feature. I tried to display following characters: `\xe8 \xe9 \xea \xeb` This should result to the following display: `è é ê ë`...

Modified CMakeLists.txt for the project to be built as a self contained library. This allows it to be included in the main project CMakeLists.txt without having to include the pico-sdk...

The SSD1306 constructor should not require duplicated information and bleeding of details (i.e., the I²C address) into the application code. The documentation shows an inefficient use to construct the SSD1306...