0.96" I2C / IIC OLED module (HCMODU0164)

LCD, TFT, OLED, LED modules
Post Reply
admin
Site Admin
Posts: 866
Joined: Sun Aug 05, 2012 4:02 pm

0.96" I2C / IIC OLED module (HCMODU0164)

Post by admin » Thu Jun 22, 2023 4:01 pm

Image


Image

These tiny 0.96 inch uOLED displays have a resolution of 128 x 64 pixels and use a standard I2C serial interface for communication (default address = 0x3C). Based on the SSD1306 controller, the module is available in both white pixel colours. Pre-written libraries for Arduino are freely available including our own HCDisplay library for Arduino compatible development boards.



Image

Module size: 27.3*27.8mm
High pixel density
Resolution: 128X64
Super wide viewing angle: more than 160°
Ultra-low power consumption: normal display 0.06W (far below the TFT display)
Industrial grade: Operating temperature range -30 C ~ 70 C
Ultra-small size: (length) 27.8MM * (W) 27.3MM * (thickness) 4.3MM
I2C address can be changed by moving soldered resistor on the rear of the board allowing for 2 displays to share the same I2C bus.
OLED screen, internal drive chip: SSD1306

Pixel Colour: White (HCMODU0164)


Image

1....GND: Power ground
2....VCC: 3.3V power supply
3....SCL: I2C Clock
4....SDA: I2C Data



Arduino Example:


Image


  1. #include "HCDisplay.h"
  2.  
  3. // Default I2C address
  4. #define I2C_ADD 0x3C
  5.  
  6. // Creates an instance of the HCDisplay library
  7. HCDisplay HCDisplay;    
  8.  
  9.  
  10. void setup()
  11. {
  12.   // Initialise the display
  13.   HCDisplay.Init(I2C_ADD);
  14.  
  15.   // Print some text
  16.   HCDisplay.Pos(44,8);
  17.   HCDisplay.Print("Hobby");
  18.  
  19.   HCDisplay.Pos(24,18);
  20.   HCDisplay.Print("Components");
  21.  
  22.   HCDisplay.Pos(12,30);
  23.   HCDisplay.Print("0.9\" I2C OLED");
  24.  
  25.   HCDisplay.Pos(24,48);
  26.   HCDisplay.Print("HCMODU0164");
  27. }
  28.  
  29. void loop()
  30. {
  31.  
  32. }


Image

HCDisplay Arduino library:

viewtopic.php?f=58&t=2827



Libraries, example code, and diagrams are provided as an additional free service by Hobby Components and are not sold as part of this product. We do no provide any guarantees or warranties as to their accuracy or fitness for purpose.

Descriptions and diagrams on this page are copyright Hobby Components Ltd and may not be reproduced without permission.

Post Reply

Return to “Display”