7 segment display and alphabet...
eagletalontim
Posts: 1,399
Is there a way to display letters on a 7 segment display via a DATA variable that is easier than ' Send_To_Display("letter", number_of_letter_in_alphabet) '? What I am trying to accomplish is to send a STRING to the single 7 segment display via a function and it split the string and display it letter by letter with a small delay between letters so it is readable. Any help is greatly appreciated!
*** EDIT : Nevermind, I figured it out
*** EDIT : Nevermind, I figured it out
Comments
A
b
C
c
d
E
F
H
I (same as one)
J
L
n
o
0 (same as zero)
P
r
S (same as five)
t
u
If you cannot build your string with this set then a different display is in order. If these letter work, you'll need to build an array of segment masks to create the letters -- so long as you have individual segment control over the LEDs.
Right now, I am having difficulty sending menu data to the function.
I just noticed that you want to display "menu 0" -- this cannot be done on a 7-segment display as there is no way to do a "m". You might consider a 13-segment display if you really want to display words like this.
Now, could you help me figure out how to use my display function like this :
Or....
number_value := 3
Display(number_value)
I can't seem to figure out what I am missing besides all values sent to the Display function must be sent using string("stuff")
Jon,
There is at least 300 of us here that owe you a beer.
Not at the same time, of course.
Not to mention those that owe you from your various article over the years.
Thank You,
Jim
Back in the day a couple of us were trying to use a 7 segment LED calculator display as the output of a forth like controller. This language would use single character words.
Since 7 segments can display 127 characters, 255 if you include the decimal point.
Here is something we came up with.
We never went very far with this, but it was a cool thought experiment.
Duane J
I have gotten everything to work good so far until I ran into this issue....
If I need to post more code, please let me know. All the functions are the pretty much the same.