manuals.online logo
Brands
  1. Home
  2. •
  3. Brands
  4. •
  5. Joy-it
  6. •
  7. Computer Hardware
  8. •
  9. Joy-it COM-OLED2.42 User manual

Joy-it COM-OLED2.42 User manual

www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
OLED-DISPLAY MODULE
COM-OLED2.42
1. GENERAL INFORMATION
Dear customer,
thank you very much for choosing our product.
In following, we will introduce you to what to observe while starting up
and using this product.
Should you encounter any unexpected problems during use, please do
not hesitate to contact us.
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
2. SETUP OF THE DISPLAY INTERFACE
The display can be controlled in 4 dierent ways, via I2C, SPI, 8-bit paral-
lel 6800 interface and 8-bit parallel 8080 interface.
The display is delivered pre-configured for control via SPI. If you want to
use one of the other control methods, you have to re-solder the resistors
BS1 and BS2 on the back of the board.
In the table, you can see how the resistors must be set for the respective
mode.
6800-parallel 8080-parallel I2C SPI
BS1 0110
BS2 1100
3. USE WITH AN ARDUINO
As the display works with a 3V logic level and most Arduinos with 5V, we
use an Arduino Pro Mini 3.3V in this example.
If you want to use an Arduino with a 5V logic level, such as an Arduino
Uno, you have to reduce all data lines leading from the Arduino to the dis-
play from 5V to 3.3V with a logic level converter.
First you need to install the required library in your Arduino IDE.
To do this, go to Tools -> Manage Libraries... Search for u8g2 and install
the library U8g2 by oliver
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
SPI-Interface
Wiring
Display Pin 1247815 16
Arduino Pro
Mini Pin GND 3,3V
(VCC) 913 11 10 8
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
SPI-Interface
Now open the GraphicTest code sample of the library.
To do this, click on:
File -> Examples -> U8g2 -> u8x8-> GraphicTest
Now insert the following constructor for the display into the programme,
as shown in the picture below:
U8X8_SSD1309_128X64_NONAME2_4W_SW_SPI u8x8(13, 11, 10, 9, 8);
Now you can upload the example to your Arduino.
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
I2C-Interface
Wiring
Display Pin 12478916
Arduino Pro
Mini Pin GND 3,3V
(VCC) GND A5 A4 A4 9
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
I2C-Interface
Now open the GraphicTest code sample of the library.
To do this, click on:
File -> Examples -> U8g2 -> u8x8-> GraphicTest
Now insert the following constructor for the display into the programme,
as shown in the picture below:
U8X8_SSD1309_128X64_NONAME2_HW_I2C u8x8(9, A4, A5);
Now you can upload the example to your Arduino.
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
8 bit Parallel 6800-Interface
Wiring
Display Pin 1245678910 11 12 13 14 15 16
Arduino Pro
Mini Pin GND 3,3V
(VCC) 9GND 713 11 23456A3 10 8
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
Now open the GraphicTest code sample of the library.
To do this, click on:
File -> Examples -> U8g2 -> u8x8-> GraphicTest
Now insert the following constructor for the display into the programme, as shown
in the picture below:
U8X8_SSD1309_128X64_NONAME0_6800 u8x8(13, 11, 2, 3, 4, 5, 6,
A3, 7, 10, 9, 8);
8 bit Parallel 6800-Interface
Now you can upload the example to your Arduino.
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
8 bit Parallel 8080-Interface
Wiring
Display Pin 1245678910 11 12 13 14 15 16
Arduino Pro GND 3,3V 9 73,3V 13 11 23456A3 10 8
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
8 bit Parallel 8080-Interface
U8X8_SSD1309_128X64_NONAME0_8080 u8x8(13, 11, 2, 3, 4, 5, 6,
A3, 7, 10, 9, 8);
Now open the GraphicTest code sample of the library.
To do this, click on:
File -> Examples -> U8g2 -> u8x8-> GraphicTest
Now insert the following constructor for the display into the programme,
Now you can upload the example to your Arduino.
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
4. USE WITH THE RASPBERRY PI
First, we install the library and download the sample files, this is done
with the following commands:
To make using the display with the Raspberry Pi particularly easy, we use
the luma.oled library.
You can install the dependencies required for installation with the follo-
wing commands:
There you can now activate SPI and I2C under 3 Interface Options so
that you can use both interfaces.
Now enter the following command in the terminal:
Next, you must give the user (in this case "pi") permission to access the
required hardware. If you are not using the user "pi", change the user at
the end of the command accordingly.
sudo -H pip3 install --upgrade luma.oled
sudo git clone https://github.com/rm-hull/luma.examples.git
sudo raspi-config
sudo usermod -a -G spi,gpio,i2c pi
sudo apt-get update
sudo apt-get install git python3 python3-dev python3-pip
python3-pip python3-pil libjpeg-dev zlib1g-dev libfreetype6-dev
liblcms2-dev libopenjp2-7 libtiff5 build-essential libsdl-dev
libportmidi-dev libsdl-ttf2.0-dev libsdl-mixer1.2-dev libsdl-
image1.2-dev
sudo reboot
Then restart your Raspberry Pi with the following command:
Aer the reboot, enter following command into the terminal:
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
SPI-Interface
Wiring
Display Pin 1247815 16
Raspberry Pin GND 5V Pin 18 Pin 23 Pin 19 Pin 24 Pin 22
cd ~/luma.examples/examples/
sudo python3 demo.py -i spi
Aer you have connected the display, you can execute a sample programme with
the following two commands:
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
I2C-Interface
Wiring
Display Pin 12478916
Raspberry Pin GND 5V GND Pin 5 Pin 3 Pin 3 3,3V
cd ~/luma.examples/examples/
sudo python3 demo.py
Aer you have connected the display, you can execute a sample pro-
gramme with the following two commands:
www.joy-it.net
Pascalstr. 8 47506 Neukirchen-Vluyn
www.joy-it.net
SIMAC Electronics GmbH
Pascalstr. 8, 47506 Neukirchen-Vluyn
5. ADDITIONAL INFORMATION
Our information and take-back obligations according to
the Electrical and Electronic Equipment Act
(ElektroG)
Symbol on electrical and electronic equipment:
This crossed-out dustbin means that electrical and electronic appliances
do not belong in the household waste. You must return the old appliances
to a collection point.
Before handing over waste batteries and accumulators that are not en-
closed by waste equipment must be separated from it.
Return options:
As an end user, you can return your old device (which essentially fulfils
the same function as the new device purchased from us) free of charge for
disposal when you purchase a new device.
Small appliances with no external dimensions greater than 25 cm can be
disposed of in normal household quantities independently of the pur-
chase of a new appliance.
Possibility of return at our company location during opening hours:
SIMAC Electronics GmbH, Pascalstr. 8, D-47506 Neukirchen-Vluyn, Germa-
ny
Possibility of return in your area:
We will send you a parcel stamp with which you can return the device to
us free of charge. Please contact us by email at Service@joy-it.net or by
telephone.
Information on packaging:
If you do not have suitable packaging material or do not wish to use your
own, please contact us and we will send you suitable packaging.
6. SUPPORT
If there are still any issues pending or problems arising aer your purcha-
se, we will support you by e-mail, telephone and with our ticket support
system.
Email: service@joy-it.net
Ticket system: http://support.joy-it.net
Telephone: +49 (0)2845 98469-66 (10-17 o‘clock)
For further information please visit our website:
www.joy-it.net
Published: 25.01.2021

Other Joy-it Computer Hardware manuals

Joy-it RB-LEDMatrix User manual

Joy-it

Joy-it RB-LEDMatrix User manual

Joy-it StromPi 3 User manual

Joy-it

Joy-it StromPi 3 User manual

Joy-it COM-ZYPDS User manual

Joy-it

Joy-it COM-ZYPDS User manual

Joy-it Arcade-GameStation User manual

Joy-it

Joy-it Arcade-GameStation User manual

Joy-it StromPi 3 User manual

Joy-it

Joy-it StromPi 3 User manual

Joy-it COM-ZY12PDG User manual

Joy-it

Joy-it COM-ZY12PDG User manual

Joy-it SBC-SOUNDMODULE User manual

Joy-it

Joy-it SBC-SOUNDMODULE User manual

Joy-it EXPLORER 700 User manual

Joy-it

Joy-it EXPLORER 700 User manual

Joy-it RB-P-XPLR User manual

Joy-it

Joy-it RB-P-XPLR User manual

Joy-it RGB SHIELD User manual

Joy-it

Joy-it RGB SHIELD User manual

Joy-it EXPLORER 500 User manual

Joy-it

Joy-it EXPLORER 500 User manual

Joy-it RB-JoyPi-Addon User manual

Joy-it

Joy-it RB-JoyPi-Addon User manual

Joy-it BLOCK ACTIVE User manual

Joy-it

Joy-it BLOCK ACTIVE User manual

Joy-it SBC-LCD02 User manual

Joy-it

Joy-it SBC-LCD02 User manual

Joy-it RS232-SHIELD User manual

Joy-it

Joy-it RS232-SHIELD User manual

Joy-it MotoDriver2 User manual

Joy-it

Joy-it MotoDriver2 User manual

Joy-it StromPI V2 User manual

Joy-it

Joy-it StromPI V2 User manual

Joy-it COM-ZY12PDN User manual

Joy-it

Joy-it COM-ZY12PDN User manual

Joy-it StromPi 3 User manual

Joy-it

Joy-it StromPi 3 User manual

Joy-it StromPi3 User manual

Joy-it

Joy-it StromPi3 User manual

Joy-it Ard-CNC-Kit1 User manual

Joy-it

Joy-it Ard-CNC-Kit1 User manual

Joy-it RS485-EXTENSION Instruction manual

Joy-it

Joy-it RS485-EXTENSION Instruction manual

Popular Computer Hardware manuals by other brands

Klein Tools 60155 instructions

Klein Tools

Klein Tools 60155 instructions

Endace DAG 4.2S user guide

Endace

Endace DAG 4.2S user guide

TEDIA PCE-1613 user guide

TEDIA

TEDIA PCE-1613 user guide

Award TL-EMBSBC 795 user manual

Award

Award TL-EMBSBC 795 user manual

Huawei NetCol8000-A Series quick guide

Huawei

Huawei NetCol8000-A Series quick guide

Dutec Basic I/O Product Hardware manual

Dutec

Dutec Basic I/O Product Hardware manual

EMS VisionSwitch-32 VXSwitch32-SA user manual

EMS

EMS VisionSwitch-32 VXSwitch32-SA user manual

ekwb EK-Vector RTX Aorus 2080 installation manual

ekwb

ekwb EK-Vector RTX Aorus 2080 installation manual

ekwb EK-Classic Pump Reservoir 160 SPC PWM D-RGB Installation and mounting manuals

ekwb

ekwb EK-Classic Pump Reservoir 160 SPC PWM D-RGB Installation and mounting manuals

GIGAIPC QBi-4125A user manual

GIGAIPC

GIGAIPC QBi-4125A user manual

Humminbird SmartStrike Map Card Accessory manual

Humminbird

Humminbird SmartStrike Map Card Accessory manual

Rane HAL1 manual

Rane

Rane HAL1 manual

Esoteric Esoteric SA-10 Brochure & specs

Esoteric

Esoteric Esoteric SA-10 Brochure & specs

Synopsys DesignWare ARC AXC003 user guide

Synopsys

Synopsys DesignWare ARC AXC003 user guide

OSS OSS-PCIe-HIB38-x16 manual

OSS

OSS OSS-PCIe-HIB38-x16 manual

Emerson QuickPanel+ IC755C S06RD Series user manual

Emerson

Emerson QuickPanel+ IC755C S06RD Series user manual

Avermedia DVB-T Volar X Quick installation guide

Avermedia

Avermedia DVB-T Volar X Quick installation guide

Huawei SMU Specifications

Huawei

Huawei SMU Specifications

manuals.online logo
manuals.online logoBrands
  • About & Mission
  • Contact us
  • Privacy Policy
  • Terms and Conditions

Copyright 2025 Manuals.Online. All Rights Reserved.