Billy Donahue
Billy Donahue
I don't agree with this change to `appendSystemDetails`. There's a field nesting bug to fix, but I don't think changing the append model of this member function is necessary to...
The SSD1306 has a sleep state, accessible through a raw `ssd1306_command`, so you can sleep and wake the display with: ```c++ void sleepDisplay(Adafruit_SSD1306* display) { display->ssd1306_command(SSD1306_DISPLAYOFF); } void wakeDisplay(Adafruit_SSD1306* display)...
On Mon, Mar 23, 2020 at 3:28 AM Oli wrote: > Hello @vogt31337 , > > yes i know its not a real good solution to just fill off the...
You might also consider uncommenting this line to save space. https://github.com/adafruit/Adafruit_SSD1306/blob/33327d02a40f253d0dfb4aa3e15cf6a0b681d469/Adafruit_SSD1306.h#L36
It kind of sounds like your procedure for setting a custom font is buggy.
Ok here might be your problem. It's at least one thing that's wrong. ```c++ oled.getTextBounds(t,0,0,0,0,&tw,0); //Get Text Width ``` You're passing a 0 for three of the output pointer arguments....
This would make apps take up more space than they do now. The warning is a false positive. `Adafruit_GFX` objects are trivially destructible. There's no reason to declare a user-defined...
> Not sure what exactly is clang complaining about, probably something in the formatting. The `clang` check is really a `clang-format` check. In the output of the check was a...
The analysis of line 36 is incorrect. Whatever the problem is, it's not the syntax of the variable definition.