Page 1 of 1

LCD Greek symbols

Posted: Tue Sep 01, 2015 10:46 am
by Jan Lichtenbelt
Is there an easy way to send the Greek symbol Ω to a LCD?

Re: LCD Greek symbols

Posted: Tue Sep 01, 2015 11:25 am
by cubitus54
Hello,

We need a 5x8 matrix encoded

exemple : http://www.instructables.com/id/LED-Sco ... enerator-/

this is "é"
Image1.gif
Image1.gif (19.4 KiB) Viewed 6025 times

Re: LCD Greek symbols

Posted: Tue Sep 01, 2015 1:18 pm
by Jan Lichtenbelt
Hi Cubitus,

Thanks.

In the datasheet op de LCD block I found the value of 0xF4 for the omega symbol. But how can I use that in flowocode?

Kind regards

Jan

Re: LCD Greek symbols

Posted: Tue Sep 01, 2015 1:37 pm
by medelec35
Hi Jan,
Have you tried PrintASCII 0xF4?

Martin

Re: LCD Greek symbols

Posted: Fri Sep 04, 2015 8:32 pm
by Jan Lichtenbelt
P1060645_t.jpg
P1060645_t.jpg (64.83 KiB) Viewed 5966 times
IT WORKS!

Re: LCD Greek symbols

Posted: Mon Sep 07, 2015 5:04 pm
by Jan Lichtenbelt
How do I add greek symbols to a string?

Kind regards

Jan Lichtenbelt

Re: LCD Greek symbols

Posted: Wed Sep 09, 2015 4:04 pm
by Benj
Hello Jan,

You can add the character to the string like this.

strvar[x] = 0xf4

where x is the location in the string you want to add the symbol.

Or you can simply type in the string and at the point you want to insert the symbol hold down the Alt key and type the number 244 on the numeric keypad on your keyboard and then release the Alt key. You should get something looking like this.

String = "Test¶"

This method does not work for the numeric digits above the letters on the keyboard, just the numeric keypad.

Lastly you can use the Alt key method to assign the symbol to the location in the string array if you don't want to have to remember the hex value,

strvar[x] = '¶'

I use Alt + 248 a lot for good old °C

Re: LCD Greek symbols

Posted: Wed Sep 09, 2015 4:31 pm
by LeighM
Another way is ...

Code: Select all

mystring = "Omega=\xf4"