-
Notifications
You must be signed in to change notification settings - Fork 1
YSMenu
Georg E edited this page Jan 20, 2018
·
3 revisions
YSMenu is an alternative kernel / OS for almost all flashcards. I seems to have a good compatibility. Unfortunately YSMenu is closed source and there are not many options for theming / skinning.
A YSMenu theme basically consists of three files:
- YSMenu1.bmp,
- YSMenu2.bmp and
- YSMENU.INI.
They are placed under SD-Card://TTMenu/.
![]() |
---|
Download |
File > Export > Windows-Bitmap > Advanced Options > 24 Bit > R8 G8 B8 > Compatibility Options > Don't write Color Space Information
The color values in YSMenu are a little bit strange. The Format is
- | B | G | R |
---|---|---|---|
1 Bit | 5 Bit | 5 Bit | 5 Bit |
Examples:
Color | - | B | G | R |
---|---|---|---|---|
White | 1 | 11111 | 11111 | 11111 |
Black | 1 | 00000 | 00000 | 00000 |
Blue | 1 | 11111 | 00000 | 00000 |
Green | 1 | 00000 | 11111 | 00000 |
Red | 1 | 00000 | 00000 | 11111 |
Finally convert it to a Hex number with 4 positions.