TOP Contributors

  1. MIKROE (2655 codes)
  2. Alcides Ramos (353 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (136783 times)
  2. FAT32 Library (69980 times)
  3. Network Ethernet Library (55950 times)
  4. USB Device Library (46274 times)
  5. Network WiFi Library (41889 times)
  6. FT800 Library (41184 times)
  7. GSM click (28988 times)
  8. PID Library (26419 times)
  9. mikroSDK (26374 times)
  10. microSD click (25382 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
Project

NOKIA 6100 LCD UTILITY

Rating:

0

Author: NART SCHINACKOW

Last Updated: 2014-01-05

Package Version: 1.0.0.0

Category: Other Codes

Downloaded: 1145 times

Not followed.

License: MIT license  

An application developed in VISUAL C# 2010 EXPRESS EDITION, used for reading JPEG files and exporting them either to MMC hence readable through MIKROE FAT16 LIBRARY or exporting them to a 2d unsigned int C ARRAY.
NOTE: THIS APP IS USED WITH A NOKIA 6100 LCD 132x132 PIXELS.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "NOKIA 6100 LCD UTILITY" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "NOKIA 6100 LCD UTILITY" changes.

Do you want to report abuse regarding "NOKIA 6100 LCD UTILITY".

  • Information
  • Comments (1)
DOWNLOAD LINK RELATED COMPILER CONTAINS
Other Compiler
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

Project Blog

THIS UTILITY IS USED WITH NOKIA 6100 LIBRARY , it converts a 24-bit colored image to a 4-bit colored image which is the bit-depth of the NOKIA 6100 LCD.

application image

application image

application image

View full image

DEMO

DEMO

Watch on YouTube

IMAGE FROM FILE

IMAGE FROM FILE

Watch on YouTube

Their are two ways for displaying an image on the screen using this utility:

1) by exporting the image as a 2d array, hence using the built-in FUNCTION
GRAPHICS_DRAW_IMAGE

NOTE : The 2d array export is a C array.

2) by exporting the image as a byte FILE, using this way you must add the following code

void ReadFromFile(char* FILE_NAME)
{
  char i,j,xx,yy;
  unsigned long SIZE;
  unsigned int FINAL_COLOR;
  mmc_fat_assign(FILE_NAME,0);
  mmc_fat_reset(&SIZE);
  for(i=0;i<132;i++)
  {
     for(j=0;j<132;j++)
     {
         Mmc_Fat_Read(&xx);
         Mmc_Fat_Read(&yy);
         FINAL_COLOR=xx;
         FINAL_COLOR=FINAL_COLOR<<8;
         FINAL_COLOR=FINAL_COLOR|yy;
         NOKIA_LCD_PIXEL(FINAL_COLOR,j,i);
     }
  }
}


The image below shows how your code must look like.


mikroC example

mikroC example

mikroC example

View full image

Note: This Project May Be Optimized And Changed Any Time So Stay Tuned

CHECK OUT MY WEBSITE FOR MORE CODES AND PROJECTS

ALSO FROM THIS AUTHOR

(SOFTWARE VERSION) MAX7219 Seven-Segment Wrapped Library

10

This is a software version structured based MAX7219 IC wrapped library, all you have to do is include the two files in your project folder and include the ".h" file in your source code. This version uses software SPI hence you dont need to use a PIC with hardware SPI!!

[Learn More]

NS73M FM TRANSMITTER LIBRARY

0

Simple library for the NS73M FM transmitter, the library contains functions to communicate with the module, all you need is a PIC and the module which can be found at http://www.sparkfun.com/products/8482 , a simple wire of 31 inch long and you are ready to go. just copy the two files into your project folder and include "NS73M.h".

[Learn More]

Application Project On W5100 SoftLib, DS1307, SoftMax7219

5

This is an application project that uses software W5100 library for network connections, DS1307 for displaying time, software MAX7219 for displaying on 7-segment digits. This project displays a web page where you read the time and change the 7-segment values. Uses PIC16f877A @ 10MHZ Clock

[Learn More]