LCD Greek symbols
Moderator: Benj
- Jan Lichtenbelt
- Posts: 797
- Joined: Tue Feb 17, 2009 8:35 pm
- Location: Haren GN, the Netherlands
- Has thanked: 128 times
- Been thanked: 264 times
- Contact:
- cubitus54
- Flowcode v5 User
- Posts: 110
- Joined: Wed Jun 19, 2013 7:18 am
- Has thanked: 7 times
- Been thanked: 32 times
Re: LCD Greek symbols
Hello,
We need a 5x8 matrix encoded
exemple : http://www.instructables.com/id/LED-Sco ... enerator-/
this is "é"
We need a 5x8 matrix encoded
exemple : http://www.instructables.com/id/LED-Sco ... enerator-/
this is "é"
Flowcode V6.1.2.0(11 05 2015)
- Jan Lichtenbelt
- Posts: 797
- Joined: Tue Feb 17, 2009 8:35 pm
- Location: Haren GN, the Netherlands
- Has thanked: 128 times
- Been thanked: 264 times
- Contact:
Re: LCD Greek symbols
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
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
-
- Matrix Staff
- Posts: 9521
- Joined: Sat May 05, 2007 2:27 pm
- Location: Northamptonshire, UK
- Has thanked: 2585 times
- Been thanked: 3815 times
- Jan Lichtenbelt
- Posts: 797
- Joined: Tue Feb 17, 2009 8:35 pm
- Location: Haren GN, the Netherlands
- Has thanked: 128 times
- Been thanked: 264 times
- Contact:
- Jan Lichtenbelt
- Posts: 797
- Joined: Tue Feb 17, 2009 8:35 pm
- Location: Haren GN, the Netherlands
- Has thanked: 128 times
- Been thanked: 264 times
- Contact:
- Benj
- Matrix Staff
- Posts: 15312
- Joined: Mon Oct 16, 2006 10:48 am
- Location: Matrix TS Ltd
- Has thanked: 4803 times
- Been thanked: 4314 times
- Contact:
Re: LCD Greek symbols
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
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
Regards Ben Rowland - MatrixTSL
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel
Flowcode Product Page - Flowcode Help Wiki - Flowcode Examples - Flowcode Blog - Flowcode Course - My YouTube Channel