TOP Contributors

  1. MIKROE (2784 codes)
  2. Alcides Ramos (385 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (118 codes)
  5. Bugz Bensce (97 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 (139843 times)
  2. FAT32 Library (72209 times)
  3. Network Ethernet Library (57392 times)
  4. USB Device Library (47740 times)
  5. Network WiFi Library (43364 times)
  6. FT800 Library (42700 times)
  7. GSM click (29980 times)
  8. mikroSDK (28440 times)
  9. PID Library (26989 times)
  10. microSD click (26398 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: 1163 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

Physics Library

0

This is a simple Physics library that uses the Vector Library in its calculations, till now its has a simple projectile motion which can be simulated easily using the built int functions.

[Learn More]

c# Networks Api Demo Example

0

This Example shows you an example on how to use the c# networks library Api, as it is a multi-threaded networks api that uses the windows sockets programming. there are two applications in this example: chat server, chat client.

[Learn More]

Ultrasonic sensor (RANGE FINDER) library

0

This is a simple structure based library for an ultrasonic range finder, all you need to do is copy the two files your project and include the "DistanceLib.h" in your main code. The module could be found at : http://www.futurlec.com/Distance_Sensors.shtml

[Learn More]