English 中文(简体)
ASCII 7x5 主导单元的副手标记
原标题:ASCII 7x5 side-feeding characters for led modules

I am looking at the code for the font file here: http://www.openobject.org/opensourceurbanism/Bike_POV_Beta_4

守则就是这样:

const byte font[][5] = {
  {0x00,0x00,0x00,0x00,0x00},   //   0x20 32
  {0x00,0x00,0x6f,0x00,0x00},   // ! 0x21 33
  {0x00,0x07,0x00,0x07,0x00},   // " 0x22 34
  {0x14,0x7f,0x14,0x7f,0x14},   // # 0x23 35
  {0x00,0x07,0x04,0x1e,0x00},   // $ 0x24 36
  {0x23,0x13,0x08,0x64,0x62},   // % 0x25 37
  {0x36,0x49,0x56,0x20,0x50},   // & 0x26 38
  {0x00,0x00,0x07,0x00,0x00},   //   0x27 39
  {0x00,0x1c,0x22,0x41,0x00},   // ( 0x28 40
  {0x00,0x41,0x22,0x1c,0x00},   // ) 0x29 41
  {0x14,0x08,0x3e,0x08,0x14},   // * 0x2a 42
  {0x08,0x08,0x3e,0x08,0x08},   // + 0x2b 43

目 录

我非常混淆了这一法典是如何运作的——有人可以向我解释它吗?

感谢

Majd

最佳回答

每一组5英特=40比特,标出7x5 = 特性网中的35皮克(大概为5个未使用的比特)。

当你想展示一种特性时,你将相应的五幅照相图复制到适当的记忆地点。 显示<代码> 页: 1 页: 1

问题回答

暂无回答




相关问题
Percent Encoded UTF-8 to Ascii(8-bit) conversion

Im reading in urls and they often have percent encoded characters. Example: %C3%A9 is actually é According to http://www.microsystools.com/products/sitemap-generator/faq/character-percentage-url-...

US-ASCII encoding with Odd and Even numbers?

I splitted the list of numbers 1-100 to files of 2 bytes. Then, I noticed that each odd number btw 11-99 needs 2 files, ie 4bytes, while each even number btw 11-99 needs 1 file, 2bytes. A file is ...

Issues with Chr(0) in SQL INSERT script

We currently use the SQL Publishing Wizard to back up our database schemas and data, however we have some database tables with hashed passwords that contain the null character (chr(0)). When SQL ...

Encoding a string to ascii

I have a long string that I want to encode to ascii. I m doing: s = s.encode( ascii , replace ) but I get: ascii codec can t decode byte 0xc3 in position 2646: ordinal not in range(128) (I ve ...

热门标签