VisualGLCD Project settings

General discussion on Visual GLCD Software.
Post Reply
Author
Message
mehamerly
Posts: 11
Joined: 07 Jan 2016 22:37

VisualGLCD Project settings

#1 Post by mehamerly » 12 Apr 2016 01:46

When starting a project in Visual GLCD, there is an option to:
'Enable automatic updates'

What does this do? I could not find any documentation for this.

Is there a pdf user manual for this program, or is the help file the only way to learn the features?

Thanks,
Mike

User avatar
biljana.nedeljkovic
mikroElektronika team
Posts: 1043
Joined: 30 Jun 2015 15:15

Re: VisualGLCD Project settings

#2 Post by biljana.nedeljkovic » 12 Apr 2016 09:12

Hello,

This option is not quite related to the project itself, but rather to the updates of the VisualGLCD.
It will enable the automatic update of the software.

There is Help file which has a great explanations, and you can also find the PDF that explains how to create the first project in the Visual GLCD.
http://download.mikroe.com/documents/ad ... t-v100.pdf

Kind regards,
Biljana

xallitic47
Posts: 25
Joined: 07 Dec 2020 23:59

Re: VisualGLCD Project settings

#3 Post by xallitic47 » 05 Dec 2021 06:39

Hi. I have my license of MikroC and Visual GLcd.
the examples on the help. The examples that are working.

I am learning to use visual glcd.
There is an example where a led is turned on with a button on the glcd (https://www.youtube.com/watch?v=bgKPzpcPn0U ).

The code of button is

void Button1OnClick() {
RC4_bit =~RC4_bit; //Toggle RC4
RC5_bit =~RC5_bit; //Toggle RC5

}

Add a line to the example to turn on two LEDs now. My problem is that it only turns on the second led in RC5. RC4 does nothing.
I have done several tests and I always see that the last line is executed :shock:

The code modifies it by writing a function. here I put the modified code and I get the same

// Event Handlers
// this my function
void leds(){
RC4_bit =~RC4_bit; //Toggle RC4
RC5_bit =~RC5_bit; //Toggle RC5
}


void Button1OnClick() {
leds();
}
what is my mistake? tanks

xallitic47
Posts: 25
Joined: 07 Dec 2020 23:59

Re: VisualGLCD Project settings

#4 Post by xallitic47 » 06 Dec 2021 17:05

I already solved the problem. I forgot that I am working on a pic of the 18f series.
The solution is that instead of using portC it should be LATC.

However, I have another question. how to use an external EEprom memory to store additional information. Visual GLCD help is not enough

User avatar
filip
mikroElektronika team
Posts: 11874
Joined: 25 Jan 2008 09:56

Re: VisualGLCD Project settings

#5 Post by filip » 07 Dec 2021 13:43

Hi,

Which external EEPROM are you referring to exactly ?
Do you wish to store Visual GLCD data there ?

Regards,
Filip.

Post Reply

Return to “Visual GLCD General”