Author |
Message |
Topic: LCD Bargraph |
cyrildavids
Replies: 20
Views: 172255
|
Forum: Code Library Posted: Sat May 09, 2009 2:30 am Subject: LCD Bargraph |
How do one configure this for a 4x 20 lcd screen with the same driver? |
Topic: LCD Bargraph |
cyrildavids
Replies: 20
Views: 172255
|
Forum: Code Library Posted: Sat May 09, 2009 2:29 am Subject: LCD Bargraph |
never mind i got it working
first declare the variable
long value;
int A , percent;
float div = 10.22;
then in the while loop
while(1)
{
value=read_adc(); //re ... |
Topic: LCD Bargraph |
cyrildavids
Replies: 20
Views: 172255
|
Forum: Code Library Posted: Sat May 09, 2009 2:20 am Subject: LCD Bargraph |
How do one make the screen display percentage instead of the numbers from 0 to 1022.
i tried making another variable that will take the Value of 'value' and divide it by the maximum number and then m ... |
|