OneBitDisplay icon indicating copy to clipboard operation
OneBitDisplay copied to clipboard

A full featured Arduino display library for 1-bit per pixel OLED, LCD and e-paper displays

Results 11 OneBitDisplay issues
Sort by recently updated
recently updated
newest added

There is no documentation on how to use the LoadBMP function and I can't get it to work.

Hey! Does this library support https://nicekeyboards.com/nice-view? I would like to use it with it. From reading the description it seems that there is no `160 x 68 (1.08")` option or...

Platform Nano33 BLE in OBD.inl static int ST7302DumpBuffer(OBDISP *pOBD, uint8_t *pBuffer) changing RawWrite(pOBD, ucPixels, 3 + (int)(d - ucPixels)); to digitalWrite(pOBD->iDCPin, HIGH); // data mode digitalWrite(pOBD->iCSPin, LOW); mySPI->transfer((char*)ucPixels, 3 +...

https://github.com/bitbank2/OneBitDisplay/blob/5d3d41b6de167f7bc51228f4710f78a31b6c8002/src/obd.inl#L1043 there should be only one "PROGMEM" keyword in this line, otherwise the compiler (at least the build chain in platform.io) will give following error: .pio\libdeps\d1_mini_pro\OneBitDisplay\src\obd.inl:776:15: error: section of 'st7302_wenting'...

``` In file included from .pio/libdeps/denky32/OneBitDisplay/src/OneBitDisplay.cpp:57: .pio/libdeps/denky32/OneBitDisplay/src/obd_io.inl:353:13: error: 'void RawWriteData(OBDISP*, unsigned char*, int)' was declared 'extern' and later 'static' [-fpermissive] static void RawWriteData(OBDISP *pOBD, unsigned char *pData, int iLen) ^~~~~~~~~~~~...

Hello Larry, first of all I like your OneBitDisplay library and had fun using it in one of my projects. (: At the moment I use the core [ArduinoCore-mbed](https://github.com/arduino/ArduinoCore-mbed) and...

Many problems about the INVERT macro. Everything is working now.

Hi, I was trying to build the library on Linux and realized there is probably missing include which causes undeclared errors. Reproduce: ``` cd linux sudo make ``` ``` pi@raspberrypi:~/git/OneBitDisplay/linux...

I am trying to display a GIF that I converted to binary on my 128x32 OLED display. I am converting the GIF to raw bytes using this Python script. Each...

I've added the GDEH029A1 display by porting it from GxEPD library. With few effort it should be possible to port more display. Maybe it can be optimized but it is...