![]() | ![]() | ![]() |
| | #31 |
| | |
| |
| | #32 |
|
Try this one: Unicorn GLCD demo.
__________________ AtomSofts eBay Store AtomSoftTech: C18 TIPS & TRICKS v9 PDF Nokia 6100 Driver/Software My Name: Jason Lopez http://atomsofttech.info/ | My YouTube Videos! My Favorite Store: dipmicro Electronics | |
| |
| | #33 | |
| Quote:
Here is a picture of it in action:
__________________ AtomSofts eBay Store AtomSoftTech: C18 TIPS & TRICKS v9 PDF Nokia 6100 Driver/Software My Name: Jason Lopez http://atomsofttech.info/ | My YouTube Videos! My Favorite Store: dipmicro Electronics | ||
| |
| | #34 | |
|
thanks (AtomSoft) i using of GLCD.zip file for interfacing with GLCD and when i send a data or pic and other to GLCD that appear white and null pixel are black how i inverse the state of all pixel on GLCD i try to change the "ClearScreen" function on GLCD.c too: Quote:
for clear lcd with zero but it was same with 0xff. | ||
| |
| | #35 |
|
In the function, add change the following -=Bryan=- Code: void PutChar(unsigned char data){
unsigned char i,d;
if(data<32){
switch(data){
case 13:
XPos=0;
case 10:
XPos=0;
YPos+=8;
YPos=YPos&63;
}
WritePosition();
}
else{
for(i=0;i<7;i++){
d=Font[data-32][i];
if(d!=0x55){
d=~d; //ADD
GLCD_Write_Data(d);
MoveRight();
}
}
//GLCD_Write_Data(0xff);
GLCD_Write_Data(0x00); //CHANGE
MoveRight();
}
}
| |
| |
| | #36 |
|
thanks bryan i test your change and it work nice . i need problem with logo , how i change my favorite picture to code that compatible with GLCD.c (putlogo function)![]() and how work the "putlogo" function? anyone have software or converter to convert this codes. | |
| |
| | #37 |
|
anybody can help me?
| |
| |
| | #38 |
|
Not sure what you want to do. Do you want to create your own logo?
| |
| |
| | #39 |
|
I have a VB program that I wrote to convert the original logo. It's really badly written and not suitable for general use but I am happy to use it to convert your logo. If you want it converting then just attach it to a post. Mike. | |
| |
| | #40 |
|
thanks of bryan and Pommie for reply thanks Pommie, but i don't need to convert one or two logo. i need urgent a software for convert logo. can you give me your software. | |
| |
| | #41 |
|
thanks of bryan and Pommie for reply thanks Pommie, but i don't need to convert one or two logo. i need urgent a software for convert logo. can you give me your software. | |
| |
| | #42 |
|
What you can also do is use Microsoft's paintbrush program. Create a image with the attributes 128x64 pixels from Image-->Attributes. Create/import design your logo. Save as Monochrome bitmap. Once saved open up the image in a program called BMP to ASM. this program will convert the bmp to usable code. The listing at the bottom of the program should be self explanatory. The program can be found at BMP to PIC table for graphic LCD assembly utility | |
| |
| | #43 |
|
I sometimes use GLCD Generator from Mikro. mikroC - Advanced C compiler for PIC microcontrollers If you install the demo it comes with a nice GLCD image converter. You can use it for free. Its a nice tool. Converts BMP to C, BASIC, or PASCAL When you install the above find this folder: "C:\Program Files\Mikroelektronika\mikroC\tools\Graphic LCD editor" and run "glcd_editor.exe" and your set. You can always create a shortcut to it on your desktop so you can use it when ever you want. It even has a invert button! Ill post a screen shot.
__________________ AtomSofts eBay Store AtomSoftTech: C18 TIPS & TRICKS v9 PDF Nokia 6100 Driver/Software My Name: Jason Lopez http://atomsofttech.info/ | My YouTube Videos! My Favorite Store: dipmicro Electronics Last edited by AtomSoft; 14th February 2009 at 02:33 PM. | |
| |
| | #44 |
|
I think these converters will work as long as the width is a multiple of 8. Mike. | |
| |
| | #45 |
|
lol it should work on anything. As long as your Micro-Controller knows the width and height you shouldnt have a issue.
__________________ AtomSofts eBay Store AtomSoftTech: C18 TIPS & TRICKS v9 PDF Nokia 6100 Driver/Software My Name: Jason Lopez http://atomsofttech.info/ | My YouTube Videos! My Favorite Store: dipmicro Electronics | |
| |
|
| Tags |
| demo, glcd, unicorn |
| Thread Tools | |
| Display Modes | |
| |
Similar | ||||
| Title | Starter | Forum | Replies | Latest |
| Unicorn Oscilloscope running GLCD 128x64 & Photo | blueroomelectronics | Micro Controllers | 8 | 18th June 2007 03:06 PM |
| Help understanding the Unicorn | Kyle-s4h | Micro Controllers | 2 | 5th June 2007 07:09 PM |
| Open MultiSim DEMO Files | mayo | General Electronics Chat | 1 | 3rd May 2007 04:52 PM |
| mcuStudio an Eclipse based IDE for PIC: flash demo available | octal | Micro Controllers | 0 | 23rd August 2006 06:44 AM |
| Honeywell HMR3000 DEMO KIT | shermaine | General Electronics Chat | 5 | 26th May 2005 09:35 AM |