Nokia 3310 LCD Library

Nokia 3310 LCD Library

Overview

This project allows you to interface a PIC microcontroller with a Nokia 3310 LCD. This is a simple mono color lcd with a resolution of 96x48 pixels.

Images

Circuit diagram

Example application

 

program Nokia3310;
uses 
  libNokia3310, imageMikroE;

var
  i : word;

begin
  PortB := 0;
  TrisB := 0;

  ADCON1 := 6;

  Nokia3310_Init(@PortB, 3, 5, 0, 2, 1);
 
  Nokia3310_Out(0, 1, 'Nokia 3310 LCD');
  Nokia3310_Out(36, 3, 'by');
  Nokia3310_Out(0, 5, 'Anton Rieckert');

  Delay_ms(2000);

  Nokia3310_Clear();

  Nokia3310_GotoXY(0, 0);
  Nokia3310_DrawImage(84, 48, @mikro_bmp);
end.

Attachments

File name File version File size
Nokia 3310 LCD Library v1.0 147.79 KB

 
Shopping Cart
0 items
 
Riecktron Electronics © 2012