Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The way a 7 segment works is that the segments are in order:
Top
Top right
Bottom right
Bottom
Bottom left
Top left
Middle
They're in this RIGHT TO LEFT order : 0000000
So to show 7 for instance, we need to activate Top, top right and bottom right.
0000111
What about 1? Same as 7, but no top.
0000110
So what would be the closest to R?
I'd say all but bottom, so...
1110111
Or a lowercase R since that looks kind of like an A... middle and bottom left
1010000
How does this help?
Well, this is where things get complicated, as you need to count things in binary, tools for this exist, but you can also count it in your head if you're decent with powers of 2.
https://www.rapidtables.com/convert/number/binary-to-decimal.html
In order, the values i mentioned are:
0000111 = 7 (just so happens)
0000110 = 6
1110111 = 119
1010000 = 80
https://steamcommunity.com/sharedfiles/filedetails/?id=2254482440