New Adafruit generic OLED display driver for Raspberry PI
-
ps, in the source code I also exchanged
#include "ArduiPi_OLED_lib.h"
#include "Adafruit_GFX.h"
#include "ArduiPi_OLED.h"
by
#include <ArduiPi_OLED_lib.h>
#include <Adafruit_GFX.h>
#include <ArduiPi_OLED.h> -
no, I don't get it: how to call
display.init()
in order to force oled 6 (i2c) without using any commandline parametes? -
think I got it:
// Oled supported display in ArduiPi_SSD1306.h
// Get OLED type
//parse_args(argc, argv);/* // SPI if (display.oled_is_spi_proto(opts.oled)) { // SPI change parameters to fit to your LCD if ( !display.init(OLED_SPI_DC,OLED_SPI_RESET,OLED_SPI_CS, opts.oled) ) exit(EXIT_FAILURE); } else */ { // I2C change parameters to fit to your LCD if ( !display.init(OLED_I2C_RESET, 6) ) exit(EXIT_FAILURE); } display.begin();
-
Any solution for the problem that the screen is freezing?
The display is working fine with the Python script we found here so that can't be the problem. The Raspberry Pi is a Raspberry Pi 3.Thank you for your support.
-
hello,
if I am using your lib in my own programs I always need sudo to start them.
How can I make them executable by every user (e.g., standard user pi) ? -
Hi Charles,
I am looking to use a 128x96 16-bit color OLED for my project using the SSD1351 controller. Could you help me understand
- What changes would be needed to your 1306 driver to make it work for the SSD1351
- Would you have some kind of reference code for that ?
- How would the wiring look like ?
Whatever help/direction you could offer would be much appreciated. I was thinking of trying out your raspberry pi example for 1306 and start making changes from that point. Not sure if thats the right approach or should I go straight to the 1351.
Regards
Shyam -
Hi Charles,
is it possible to hook multiple screens up to the Rasberry Pi?
I have 8 SSD 1306 7pin SPI that I would like to hookup.
best,
D
-
Hi,
So as far as I understand, there is no way to use this driver with a SH1106 SPI 128x64 ?
That's a real shame, and I can't find any other rasppi drivers.If someone could help, that would be great,
Regards -
Having rebuilt my Stretch OS deploy, and not done an apt-get upgrade/update. The process of installing the dependencies has worked. However, compilation of ArduiPi_OLED fails because ld can't find -li2c
Others reporting the issue on GitHub have used the debian .deb file for libi2c0 but this causes all my i2c applications (i2ctools) to fail with invalid instruction.
Where should I be installing the library for i2c from?
libi2c-dev and i2ctools are successfully installed. -
... i fixed the problem with sh1106 (128x64) spi. The -li2c error is also be fixed.
I added the 2 changed files to github. I spend a lot of time to find the error - but now it's working
Here the github-link: https://github.com/alex-graf/ArduiPi_OLED_sh1106 -
I still can't make it work. Have cloned your files and replaced the bcm2835.c and bcm2835.h with the new ones as well as replaced the ArduiPi_OLED.cpp and the makefile in the original ArduiPi_OLED directory with your ones but still i get the /usr/bin/ld: cannot find -li2c error. Any ideas - what am I doing wrong please. (Raspberry Pi 3 with Stretch fresh install then followed hallard instructions, then replaced files you mention). Many thanks.
-
I followed the steps just like Bob did and im still getting the "cannot find -li2c" error. Honestly i don't see why i need I2C anyways since everything i wanna do is test an SPI display...