Author |
Message |
Topic: HELP!!!! glcd problem in pic18f452 |
sudarsan
Replies: 2
Views: 4320
|
Forum: General CCS C Discussion Posted: Wed Nov 21, 2012 11:28 pm Subject: HELP!!!! glcd problem in pic18f452 |
I am using jhd24064c glcd (t6963c controller).
Datasheet for glcd jhd24064c:
http://img09.b2b.hc360.com/pic-9/handbook-pic-1/9-1-1275991.pdf
http://www.ccsinfo.com/forum/viewtopic.php?t=49389& ... |
Topic: pic16f877a and t6963 glcd c code tested and working |
sudarsan
Replies: 3
Views: 44350
|
Forum: Code Library Posted: Thu Nov 08, 2012 1:11 am Subject: font 5x7.h |
const unsigned char FONT1[51][5] =
{
0x00, 0x00, 0x00, 0x00, 0x00, // SPACE
0x00, 0x00, 0x5F, 0x00, 0x00, // !
0x00, 0x03, 0x00, 0x03, 0x00, // "
0x14, 0x3E, 0x14, ... |
Topic: pic16f877a and t6963 glcd c code tested and working |
sudarsan
Replies: 3
Views: 44350
|
Forum: Code Library Posted: Thu Nov 08, 2012 1:09 am Subject: t6963.h file |
/*
***********************************************************************************************
* PORT DEFINITION
*********************************************************************** ... |
Topic: pic16f877a and t6963 glcd c code tested and working |
sudarsan
Replies: 3
Views: 44350
|
Forum: Code Library Posted: Thu Nov 08, 2012 1:07 am Subject: t6963.c file |
/* t6963.c file */
#include "font5x7.h" //custom-defined 5x7 font, for GDispPixFontAt(...)
/*
******************************************************************************** ... |
Topic: pic16f877a and t6963 glcd c code tested and working |
sudarsan
Replies: 3
Views: 44350
|
Forum: Code Library Posted: Thu Nov 08, 2012 1:04 am Subject: pic16f877a and t6963 glcd c code tested and working |
/* main file */
/* copy this code into notepad and save as (urfilename).c */
#include <16F877a.h>
#Fuses HS,NOWDT,NOPROTECT,NOLVP,NOBROWNOUT
#use delay(clock=20000000) ... |
|