mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-22 06:29:31 -04:00
Keyboard Shift Mode (#1333)
* Add "shift" concept to keyboard * Better shift colors * Better keybaord layout for symbols * Start ShiftLocked for consistency with previous UX. * Fix number layout * PR and test-drive feedback
This commit is contained in:
parent
06b7a0419e
commit
2214533894
7 changed files with 131 additions and 43 deletions
|
@ -5607,6 +5607,44 @@ static constexpr Bitmap bitmap_icon_speaker_and_headphones_mute{
|
|||
{16, 16},
|
||||
bitmap_icon_speaker_and_headphones_mute_data};
|
||||
|
||||
static constexpr uint8_t bitmap_icon_shift_data[] = {
|
||||
0x00,
|
||||
0x00,
|
||||
0x80,
|
||||
0x00,
|
||||
0xC0,
|
||||
0x01,
|
||||
0xE0,
|
||||
0x03,
|
||||
0xF0,
|
||||
0x07,
|
||||
0xF8,
|
||||
0x0F,
|
||||
0xFC,
|
||||
0x1F,
|
||||
0xE0,
|
||||
0x03,
|
||||
0xE0,
|
||||
0x03,
|
||||
0xE0,
|
||||
0x03,
|
||||
0x20,
|
||||
0x02,
|
||||
0xE0,
|
||||
0x03,
|
||||
0x20,
|
||||
0x02,
|
||||
0xE0,
|
||||
0x03,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
static constexpr Bitmap bitmap_icon_shift{
|
||||
{16, 16},
|
||||
bitmap_icon_shift_data};
|
||||
|
||||
} /* namespace ui */
|
||||
|
||||
#endif /*__BITMAP_HPP__*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue