summaryrefslogtreecommitdiffstats
path: root/keyboards/yosino58/lib/logo_reader.c
blob: 96c9b897ef5a875182f6b126c6f6c3d4d31ea812 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "yosino58.h"

const char *read_logo(void) {
  static char logo[] = {
    0x2B,0x2C,0x2D,0x2E,0x2F,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x3A,0x3B,0x3C,0x3D,0x3E,0x3F,
    0x4B,0x4C,0x4D,0x4E,0x4F,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5A,0x5B,0x5C,0x5D,0x5E,0x5F,
    0x6B,0x6C,0x6D,0x6E,0x6F,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7A,0x7B,0x7C,0x7D,0x7E,0x7F,
    0};

  return logo;
}