0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

「月月火水木金金」の16ビット漢字フォントを作って遊ぶ。(土日もあるよ)

Last updated at Posted at 2024-05-31

目的
日めくりカレンダー用のフォントを作る
今は、著作権とうでいろいろうるさいのでオリジナルで作る

● データを作る

o_coq152.jpg

● 変換

o_coq153.jpg

月火水木金土日


// 'u月火水木金土日1', 16x112px
const unsigned char epd_bitmap_u_______1 [] PROGMEM = {
	0xf7, 0xff, 0xf0, 0x07, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf0, 0x07, 0xf7, 0xf7, 0xf7, 0xf7, 
	0xf7, 0xf7, 0xf0, 0x07, 0xf7, 0xf7, 0xef, 0xf7, 0xdf, 0xf7, 0xdf, 0xc7, 0xbf, 0xe7, 0xff, 0xff, 
	0xfe, 0xff, 0xfe, 0xff, 0xee, 0xf7, 0xee, 0xef, 0xee, 0xdf, 0xee, 0xbf, 0xee, 0xff, 0xfe, 0xff, 
	0xfe, 0xff, 0xfe, 0xff, 0xfd, 0x7f, 0xfb, 0xbf, 0xe7, 0xdf, 0xdf, 0xef, 0xbf, 0xe7, 0xff, 0xff, 
	0xff, 0xff, 0xfe, 0xff, 0xfe, 0xf7, 0xfe, 0xcf, 0xc0, 0xbf, 0xfc, 0x7f, 0xfc, 0x7f, 0xfa, 0x7f, 
	0xf6, 0xbf, 0xf6, 0xdf, 0xee, 0xdf, 0xee, 0xef, 0xda, 0xef, 0xfc, 0xf7, 0xfe, 0xff, 0xff, 0xff, 
	0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xc0, 0x07, 0xfc, 0x7f, 0xfc, 0x7f, 0xfa, 0xbf, 
	0xfa, 0xbf, 0xf6, 0xdf, 0xf6, 0xdf, 0xee, 0xef, 0xee, 0xef, 0xde, 0xf7, 0xfe, 0xff, 0xff, 0xff, 
	0xfe, 0x3f, 0xfd, 0xbf, 0xfb, 0xdf, 0xe7, 0xef, 0x9f, 0xf3, 0xf0, 0x1f, 0xfe, 0xff, 0xfe, 0xff, 
	0xfe, 0xff, 0xe0, 0x0f, 0xfe, 0xff, 0xfe, 0xef, 0xf6, 0xdf, 0xfa, 0xbf, 0xc0, 0x07, 0xff, 0xff, 
	0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xe0, 0x0f, 
	0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0x80, 0x03, 0xff, 0xff, 
	0xff, 0xff, 0xc0, 0x07, 0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0xc0, 0x07, 
	0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0xc0, 0x07, 0xff, 0xff
};

// Array of all bitmaps for convenience. (Total bytes used to store images in PROGMEM = 240)
const int epd_bitmap_allArray_LEN = 1;
const unsigned char* epd_bitmap_allArray[1] = {
	epd_bitmap_u_______1
};

● データを編集する



0xf7ff, 0xf007, 0xf7f7, 0xf7f7, 0xf7f7, 0xf007, 0xf7f7, 0xf7f7, //月
0xf7f7, 0xf007, 0xf7f7, 0xeff7, 0xdff7, 0xdfc7, 0xbfe7, 0xffff, 
0xfeff, 0xfeff, 0xeef7, 0xeeef, 0xeedf, 0xeebf, 0xeeff, 0xfeff, //火
0xfeff, 0xfeff, 0xfd7f, 0xfbbf, 0xe7df, 0xdfef, 0xbfe7, 0xffff, 
0xffff, 0xfeff, 0xfef7, 0xfecf, 0xc0bf, 0xfc7f, 0xfc7f, 0xfa7f, //水
0xf6bf, 0xf6df, 0xeedf, 0xeeef, 0xdaef, 0xfcf7, 0xfeff, 0xffff, 
0xffff, 0xfeff, 0xfeff, 0xfeff, 0xc007, 0xfc7f, 0xfc7f, 0xfabf, //木
0xfabf, 0xf6df, 0xf6df, 0xeeef, 0xeeef, 0xdef7, 0xfeff, 0xffff, 
0xfe3f, 0xfdbf, 0xfbdf, 0xe7ef, 0x9ff3, 0xf01f, 0xfeff, 0xfeff, //金
0xfeff, 0xe00f, 0xfeff, 0xfeef, 0xf6df, 0xfabf, 0xc007, 0xffff, 
0xffff, 0xffff, 0xfeff, 0xfeff, 0xfeff, 0xfeff, 0xfeff, 0xe00f, //土
0xfeff, 0xfeff, 0xfeff, 0xfeff, 0xfeff, 0xfeff, 0x8003, 0xffff, 
0xffff, 0xc007, 0xdff7, 0xdff7, 0xdff7, 0xdff7, 0xdff7, 0xc007, //日
0xdff7, 0xdff7, 0xdff7, 0xdff7, 0xdff7, 0xdff7, 0xc007, 0xffff


0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?