Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

OLED Display Library for PIC Micro-Controller

Actual_1.PNG
In this blog post i will share the OLED libraries with you, which are written for mikroC compiler and can be used with any other C compiler.

Following are the functions which are currently present.

Code:
void OLED_Init( void );
uint8_t OLED_Width( void );
uint8_t OLED_Height( void );
void OLED_Update( void );
void OLED_SetContrast( uint8_t contrast );
void OLED_ClearDisplay( void );
void OLED_FillDisplay( void );
void OLED_DrawPixel( uint8_t x, uint8_t y, uint8_t color);
void OLED_InvertDisplay( uint8_t value );
void OLED_SetFont( const uint8_t *font);
void OLED_InvertFont( uint8_t invert_status );
void OLED_Circle( int8_t x_center, int8_t y_center, uint8_t radius, uint8_t color);
void OLED_Line( int8_t x_start, int8_t y_start, int8_t x_end, int8_t y_end, uint8_t color);
void OLED_V_Line ( uint8_t y_start, uint8_t y_end, uint8_t x_pos, uint8_t color);
void OLED_H_Line( uint8_t x_start, uint8_t x_end, uint8_t y_pos, uint8_t color);
void OLED_Rectangle( uint8_t x1, uint8_t y1, uint8_t x2, uint8_t y2, uint8_t color);
void OLED_FillRectangle( uint8_t x1, uint8_t y1, uint8_t x2, uint8_t y2, uint8_t color);
void OLED_Triangle(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1, uint8_t x2, uint8_t y2, uint8_t color);
void OLED_Circle( int8_t x0, int8_t y, uint8_t r, uint8_t color );
void OLED_Image( const uint8_t *image);
void OLED_Write( uint8_t x, uint8_t y, uint8_t value );
void OLED_Write_Text(uint8_t x, uint8_t y, uint8_t *text);

The following are the snaps taken from the actual hardware.

Actual_1.PNG



Actual_2.PNG



Actual_3.PNG



Actual_4.PNG



Actual_5.PNG



Video Demo:

[video=youtube_share;UkfC5rhX8vs]

Download Link

DHT11 Interfacing with PIC and updating Values on OLED
DHT11 Temperature and Humidity Sensor is used and the sensed temperature and humidity values are updated on OLED using the libraries.

Demo Video

Software Attached
View attachment OLEDv1.0.zip

View attachment DHT11_OLEDv1.0.zip

Comments

Part and Inventory Search

Blog entry information

Author
xpress_embedo
Read time
2 min read
Views
63,963
Comments
1
Last update

Downloads

  • OLEDv1.0.zip
    871 KB · Views: 1,011
  • DHT11_OLEDv1.0.zip
    506 KB · Views: 682

More entries in Uncategorized

More entries from xpress_embedo

Share this entry

Back
Top