Skip to content

Commit

Permalink
Render Shunya logo
Browse files Browse the repository at this point in the history
ItsShunya committed Dec 12, 2024

Verified

This commit was signed with the committer’s verified signature.
StephenCWills Stephen C. Wills
1 parent d37261b commit bdf7940
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion keyboards/lily58/rev1/keymaps/shunya/keymap.c
Original file line number Diff line number Diff line change
@@ -118,10 +118,22 @@ bool oled_task_user(void) {
//oled_write_ln(read_host_led_state(), false);
//oled_write_ln(read_timelog(), false);
} else {
oled_write(read_logo(), false);
//oled_write(read_logo(), false);
render_logo();
}
return false;
}
static void render_logo(void) {
static const unsigned char PROGMEM raw_logo[] = {
161, 4,254,254, 12,224,165,180, 65,152,210,195,236,229,241,240,253,250,248,245,250,242,245,244,242,232,225,220,162,109,252,226, 33,172,254,254, 12, 37, 60, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,140, 33,255,127,224, 60,241,252,254,255,255,255,255,191,111,143,215,167,195,219,175,167, 79, 15,223, 63,255,247,255,255,252,250,192, 19,255,127,150, 49,132, 51,252,253,254,255,222,190,191,254, 63, 28,162,128,157,254,254,254,255,196,215,144,144,196,255,254,254,244,193, 20,255,254,254,245, 44,165, 48, 16,213,252,255,252,252, 42,211,254,254,253,248,244,218,208, 23, 36,253,254,252, 49, 85, 29,126,254,252,245,233,196,252,249,252,126, 94, 54,209, 86, 73, 50,222,241,254,252,254,225,210,144, 18, 2,230, 12, 8,
1,164,115,175,255,199,153,127,255,255,255,255,255,255,233,198,211,183, 79, 95,159, 95,135,170,212,230,241,255,255,255,255,255,255, 15, 70,239,255,199, 18,109, 90, 57,121,255,247,247,247,255,255,255,127, 62, 9,194,255,255,255,255, 47,167,175,191, 71,255,255,255,127, 34,140, 79,191,127,255,252,253,241,253,252,127,255, 63, 95, 78,255,255,255,255,115,151,143, 95,255,127,255,255,255, 36,169,133, 0,250, 11,255,255,255,255, 27, 65,156, 2,230,217,230,248,255,127,127,185,124,191,127,127,255,252,224,199, 24,193,
38, 80,170,197, 45,210, 5, 21,170,171, 47, 95,175,159, 95,127,127,191,127,191, 61,127,127,191, 63,127, 95,143,191,143, 55, 81, 40,128, 19,191,127,144, 27,130, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,
};
oled_write_raw_P(raw_logo, sizeof(raw_logo));
}

#endif // OLED_ENABLE

bool process_record_user(uint16_t keycode, keyrecord_t *record) {
@@ -133,3 +145,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
}
return true;
}



0 comments on commit bdf7940

Please sign in to comment.