23541浏览
查看: 23541|回复: 52

[项目] 【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块

[复制链接]
37款传感器与模块的提法,在网络上广泛流传,其实Arduino能够兼容的传感器模块肯定是不止37种的。鉴于本人手头积累了一些传感器和执行器模块,依照实践出真知(一定要动手做)的理念,以学习和交流为目的,这里准备逐一动手试试多做实验,不管成功与否,都会记录下来——小小的进步或是搞不掂的问题,希望能够抛砖引玉。

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
实验一百八十一:1.3寸OLED液晶屏  I2C IIC通信 4针模块 1106/1306驱动 128*64像素


【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图2

驴友花雕  中级技神
 楼主|

发表于 2021-9-27 11:41:08

本帖最后由 驴友花雕 于 2021-9-27 11:48 编辑

  【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  项目之六:动画:一匹走路的狼

  实验开源代码

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  3.   实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  4.   项目之六:动画:一匹走路的狼
  5.   实验接线:
  6.   oled模块    Ardunio Uno
  7.   GND---------GND接地线
  8.   VCC---------5V 接电源
  9.   SDA---------D8
  10.   SCL ------- D9
  11. */
  12. #include <ss_oled.h>
  13. // Define these pins to be -1,-1 if you're using the default hardware I2C interface
  14. // For bit bang I2C, define them to the port number and bit of the pins you choose (on AVR)
  15. // or just the pin numbers on other MCUs
  16. // My demo was run on an Arduino Pro Mini (ATmega328) with SDA connected to D8 and SCL to D9
  17. // These translate to PORT B, bit 0 (0xB0) and PORT B, bit 1 (0xB1)
  18. //#define SDA_PIN 0xb0
  19. //#define SCL_PIN 0xb1
  20. // These pin numbers are for the M5Stack Atom
  21. #define SDA_PIN 8
  22. #define SCL_PIN 9
  23. // Set this to -1 to disable or the GPIO pin number connected to the reset
  24. // line of your display if it requires an external reset
  25. #define RESET_PIN -1
  26. // let ss_oled figure out the display address
  27. #define OLED_ADDR -1
  28. // don't rotate the display
  29. #define FLIP180 0
  30. // don't invert the display
  31. #define INVERT 0
  32. // Bit-Bang the I2C bus
  33. // Set this to 1 to use the wire library
  34. #define USE_HW_I2C 0
  35. // Most people have the 0.96" 128x64 SSD1306 OLED display
  36. // Leave this line alone if you do.
  37. // For the Pimoroni 128x128, comment out this line (or delete it)
  38. #define OLED128x64 1
  39. // 128x64 animation sequence
  40. #ifdef OLED128x64
  41. #define OLED_TYPE OLED_128x64
  42. const byte bAnimation[] PROGMEM = {
  43.   0xe5,0x00,0x48,0x80,0xff,0x00,0xf9,0x00,0x40,0x0f,0xc0,0xe0,0xf0,0xfe,0xfe,0xff,
  44.   0xfe,0xfc,0xf8,0xf0,0xf0,0xe0,0xe0,0xc0,0x80,0x80,0xff,0x00,0xea,0x00,0x58,0x04,
  45.   0x0e,0x1e,0xc4,0x1f,0x50,0x3f,0x7f,0xcb,0xff,0x70,0xfe,0xf8,0xf0,0xc0,0x80,0x80,
  46.   0xff,0x00,0xed,0x00,0x48,0x01,0xdf,0xff,0xc4,0xfe,0xc2,0xff,0xc3,0x7f,0xce,0xff,
  47.   0x40,0x07,0x7f,0x7f,0x3f,0x3f,0x1f,0x0f,0x07,0x03,0xfd,0x00,0x50,0x03,0x07,0xcd,
  48.   0xff,0xc6,0x7f,0xcf,0xff,0x50,0xfc,0xe0,0xc5,0x00,0xc7,0x01,0xff,0x00,0xc8,0x00,
  49.   0x48,0xe0,0xc2,0xff,0x40,0x08,0x7f,0x1f,0x0f,0x03,0x00,0x00,0x01,0x0f,0x7f,0xc2,
  50.   0xff,0xc6,0x00,0x50,0x07,0x3f,0xc3,0xff,0x40,0x10,0x1f,0x07,0x03,0x03,0x07,0x0f,
  51.   0x0f,0x1f,0x1f,0x3f,0x3f,0x7f,0x7f,0xfc,0xf8,0xf0,0xe0,0xff,0x00,0xcc,0x00,0x40,
  52.   0x08,0x80,0x80,0xc0,0xf8,0xfe,0x7f,0x1f,0x07,0x01,0xc6,0x00,0xc1,0x80,0xc2,0xff,
  53.   0xc4,0x00,0x40,0x07,0x80,0x80,0xc0,0xf0,0xff,0xff,0x3f,0x0f,0xcc,0x00,0x68,0x01,
  54.   0x8f,0xff,0xff,0xf0,0xff,0x00,0xca,0x00,0x68,0x01,0x01,0x03,0x03,0x01,0xcb,0x00,
  55.   0xc3,0x01,0xc5,0x00,0xc4,0x01,0xcf,0x00,0xc3,0x03,0x48,0x01,0xe8,0x00,0x00,0x25,
  56.   0x48,0x00,0x00,0x79,0x4a,0x80,0x51,0xf8,0xff,0x4f,0xff,0x48,0xc0,0x00,0x6b,0x48,
  57.   0x00,0x00,0x14,0x49,0xfc,0x48,0xe0,0x00,0x70,0x48,0x00,0x00,0x1e,0x4d,0xfe,0x5a,
  58.   0xfe,0xfe,0xbe,0x95,0xff,0xc1,0xfe,0x00,0x07,0x40,0x08,0xff,0xff,0x7f,0x7f,0x3f,
  59.   0x1f,0x0f,0x06,0x02,0x00,0x3c,0x49,0x01,0x48,0xcf,0x00,0x0b,0x48,0x7f,0x00,0x1c,
  60.   0xc1,0x01,0x00,0x07,0x48,0x01,0x00,0x47,0x52,0x00,0xf0,0x54,0xff,0x3f,0x59,0x7f,
  61.   0xff,0xff,0x57,0x03,0x00,0x5b,0x00,0x0f,0x7f,0x5b,0xff,0x0f,0x07,0x49,0x1f,0x4b,
  62.   0x3f,0x68,0xfe,0xf8,0xe0,0xe0,0x00,0x00,0x4c,0x49,0x00,0x61,0x80,0xe0,0xf8,0xff,
  63.   0x57,0x0f,0x03,0x51,0x1f,0xff,0x55,0xf8,0x00,0x40,0x09,0x00,0x00,0x80,0x80,0xe0,
  64.   0xfd,0x7f,0x3f,0x0f,0x02,0x00,0x0a,0x52,0x03,0xff,0x48,0x00,0x00,0x4a,0x51,0x00,
  65.   0x03,0x49,0x01,0x48,0x01,0x00,0x0d,0x4e,0x00,0x4c,0x00,0x48,0x01,0x00,0x0e,0x68,
  66.   0x00,0x01,0x01,0x00,0x00,0x00,0x28,0x00,0xa1,0x4d,0xf0,0x49,0xfe,0x49,0xf8,0x49,
  67.   0xf0,0x48,0xe0,0x00,0x6d,0x5c,0x06,0x0e,0x0f,0x58,0x1f,0x1f,0x3f,0x00,0x09,0x4a,
  68.   0xfe,0x4a,0xf0,0x48,0x00,0x00,0x6e,0x48,0x1f,0x00,0x1c,0x4c,0xfe,0x4b,0xfc,0xc2,
  69.   0x7e,0xc6,0xfe,0x10,0xc2,0xfe,0x20,0xc2,0xfe,0x70,0x7e,0x7e,0x3e,0x3e,0x1e,0x0e,
  70.   0x00,0x3e,0x50,0x03,0x87,0x00,0x12,0x50,0x3f,0x7f,0x00,0x0e,0x53,0xf8,0x00,0x48,
  71.   0x01,0x00,0x0a,0xc1,0x01,0x00,0x46,0x4b,0xe0,0x49,0x7f,0x49,0x01,0x91,0xff,0x58,
  72.   0x3f,0x07,0x00,0x00,0x08,0x5b,0x03,0x1f,0x7f,0x79,0xff,0x0f,0x0f,0x1f,0x1f,0x3f,
  73.   0x3f,0x78,0x7f,0x7f,0xfc,0xf0,0xe0,0x00,0x00,0x00,0x4e,0x49,0x00,0x7c,0x80,0xe0,
  74.   0xfc,0xff,0x3f,0x0f,0x01,0x70,0x0f,0x3f,0xff,0xf0,0xe0,0x00,0x00,0x07,0x40,0x07,
  75.   0x00,0x00,0x80,0xe0,0xff,0x7f,0x1f,0x07,0x00,0x09,0x68,0xff,0xff,0x7f,0x00,0x00,
  76.   0x00,0x4c,0x53,0x00,0x01,0x48,0x01,0x00,0x09,0x48,0x00,0x00,0x09,0x70,0x00,0x03,
  77.   0x03,0x03,0x03,0x01,0x00,0x0d,0x58,0x01,0x00,0x00,0x00,0x2a,0x00,0x26,0x48,0x80,
  78.   0x00,0x79,0x4a,0xe0,0x4b,0xfc,0x49,0xfc,0x49,0xf8,0x49,0xf0,0x50,0xe0,0xc0,0x00,
  79.   0x6b,0x4a,0x02,0x78,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x1f,0x00,0x09,0x70,0xff,0xfe,
  80.   0xfc,0xf8,0xe0,0xc0,0x00,0x6f,0x48,0x0f,0x00,0x13,0xac,0xfe,0x4c,0xff,0x4b,0xfe,
  81.   0x48,0x3e,0x00,0x0d,0xa3,0xfe,0x49,0xfe,0x4a,0x7e,0x50,0x1e,0x0c,0x00,0x3c,0x49,
  82.   0x00,0x48,0x07,0x00,0x0a,0x4f,0x7f,0x48,0x7f,0x00,0x0e,0x93,0x00,0x4a,0x01,0xca,
  83.   0x03,0x09,0x01,0x00,0x45,0x52,0x00,0xf8,0x62,0xff,0x1f,0x03,0xe1,0x58,0x7f,0x1f,
  84.   0x03,0x00,0x0b,0x48,0x3f,0x00,0x07,0x4a,0x1f,0x68,0x7e,0xf8,0xf0,0xe0,0x00,0x00,
  85.   0x53,0x73,0x80,0xe0,0xfe,0x7f,0x1f,0x07,0x70,0x1f,0xff,0xff,0xf0,0x00,0x00,0x00,
  86.   0x0a,0x7f,0x00,0x80,0xc0,0xff,0xff,0x3f,0x06,0x51,0x7f,0xff,0xc1,0x00,0x00,0x4f,
  87.   0x4c,0x00,0x48,0x01,0x00,0x07,0x60,0x01,0x01,0x00,0x00,0x00,0x08,0x52,0x00,0x01,
  88.   0x58,0x03,0x03,0x01,0x00,0x0b,0x48,0x00,0x00,0x2c,0x00,0x25,0x50,0x80,0xc0,0x00,
  89.   0x79,0x4d,0xf0,0x55,0xff,0xfe,0x49,0xc0,0x48,0x80,0x00,0x6b,0x4f,0x06,0x48,0x3f,
  90.   0x00,0x0e,0x48,0x80,0x00,0x6f,0x48,0x01,0x00,0x12,0x4a,0xfe,0xc2,0xff,0x00,0x08,
  91.   0x4b,0xfc,0x49,0x7e,0x4a,0xfe,0xd3,0xfc,0x58,0x7c,0x3c,0x1c,0x00,0x53,0x50,0x3f,
  92.   0xff,0x00,0x11,0x49,0x01,0x91,0x03,0xc8,0x07,0x0c,0x03,0x03,0x01,0x01,0x00,0x44,
  93.   0x4b,0xf0,0xc2,0xff,0x68,0x7f,0x1f,0x07,0x01,0x00,0x00,0x09,0x4e,0x07,0x40,0x0a,
  94.   0xff,0x3f,0x3f,0x7f,0x7f,0xff,0xff,0xf0,0x60,0x00,0x00,0x00,0x52,0x4a,0x00,0x70,
  95.   0xc0,0xf8,0xff,0xff,0x1f,0x1f,0xc2,0xff,0x58,0xc0,0x00,0x00,0x00,0x0d,0x59,0x00,
  96.   0x80,0xc3,0x5b,0xff,0x7f,0x06,0x70,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x52,0x74,
  97.   0x00,0x03,0x03,0x03,0x03,0x01,0x68,0x01,0x01,0x01,0x00,0x00,0x00,0x0b,0x53,0x00,
  98.   0x02,0x96,0x03,0xc1,0x01,0x00,0x30,0x00,0x27,0x48,0x80,0x00,0x76,0x53,0x80,0xc0,
  99.   0x4c,0xff,0x49,0xfc,0x4a,0xf8,0x48,0xe0,0x00,0x6c,0x5c,0x00,0x07,0x07,0x49,0x07,
  100.   0x50,0x1f,0x3f,0x00,0x09,0x68,0xff,0xfe,0xfc,0xf0,0xc0,0x00,0x6f,0x50,0x00,0x7f,
  101.   0x00,0x10,0x4b,0xfe,0x4f,0xfe,0x92,0xff,0x54,0xfe,0xfc,0x4a,0x7e,0xc3,0xfe,0x00,
  102.   0x51,0x5f,0x01,0x03,0x07,0x9f,0x7f,0x49,0x3f,0x48,0x3f,0x00,0x0b,0x54,0x3f,0x07,
  103.   0x49,0x00,0x91,0x01,0x9c,0x03,0xc1,0x03,0x00,0x48,0x49,0x80,0x4a,0xfe,0x78,0x7f,
  104.   0x0f,0x07,0x03,0x01,0x00,0x00,0x00,0x0a,0x64,0x01,0x07,0x1f,0x7f,0xc3,0xff,0x48,
  105.   0xe0,0xc2,0x00,0x00,0x55,0x49,0x00,0x52,0x80,0xe7,0x70,0xff,0xc7,0x00,0x00,0x00,
  106.   0x00,0x00,0x10,0x59,0x00,0x81,0xc7,0xc2,0xff,0x68,0x1f,0x07,0x01,0x00,0x00,0x00,
  107.   0x56,0x4a,0x01,0x4d,0x01,0xc2,0x00,0x00,0x0e,0x76,0x00,0x00,0x01,0x01,0x01,0x01,
  108.   0xc1,0x00,0x00,0x30,0x00,0x27,0x48,0x00,0x00,0x79,0x4e,0xf8,0x4c,0xf8,0x48,0xc0,
  109.   0x00,0x6c,0x4a,0x02,0x49,0x07,0x91,0x07,0x50,0x07,0x0f,0x00,0x0c,0x4a,0xf8,0x48,
  110.   0x80,0x00,0x86,0xc1,0xfe,0x00,0x0b,0x57,0x7e,0x3e,0x48,0xfc,0x00,0x12,0x48,0x00,
  111.   0x00,0x3f,0x4e,0xef,0x97,0x3f,0x93,0x3f,0x48,0x3f,0x00,0x0a,0x55,0x1f,0x00,0x4a,
  112.   0x00,0x4b,0x01,0xa3,0x03,0xc1,0x01,0x00,0x44,0x62,0xf0,0xfc,0xff,0xff,0x68,0xff,
  113.   0xff,0x1f,0x01,0x00,0x00,0x0c,0x7c,0x00,0x00,0x03,0x07,0x0f,0x1f,0x7f,0x50,0x80,
  114.   0x00,0x00,0x59,0x5a,0x00,0x87,0xbf,0x58,0x7f,0x1f,0x07,0x00,0x14,0x5c,0x00,0xf0,
  115.   0xfc,0xc1,0x00,0x00,0x58,0x5a,0x00,0x01,0x01,0x48,0x01,0x00,0x16,0x92,0x00,0xc1,
  116.   0x01,0x00,0x36,0x00,0x24,0x49,0x80,0x48,0x80,0x00,0x7f,0x59,0xfe,0xfc,0xfc,0x49,
  117.   0xf0,0x68,0xf0,0xe0,0xe0,0xc0,0x80,0x00,0x6c,0x49,0x0f,0x70,0x0f,0x0f,0x0f,0x0f,
  118.   0x1f,0x7f,0x00,0x0a,0x50,0xff,0xfe,0x00,0x84,0xbe,0xff,0x4a,0xfe,0x49,0xfc,0x53,
  119.   0xfc,0x3c,0x93,0x7e,0xce,0xfe,0x5a,0x7e,0x7e,0x3c,0x48,0x08,0x00,0x3d,0x58,0x81,
  120.   0xc7,0xf7,0x00,0x0e,0x48,0x7f,0x00,0x0f,0x4f,0x7f,0xc2,0x00,0xc9,0x01,0x10,0xc1,
  121.   0x00,0x00,0x40,0x7b,0xe0,0xf8,0x7e,0x3f,0x1f,0x07,0x87,0x50,0x7f,0x03,0x00,0x12,
  122.   0x54,0x9f,0xff,0x48,0xff,0x00,0x59,0x40,0x09,0x3f,0x7f,0x00,0x00,0x80,0xe0,0xff,
  123.   0xff,0x3f,0x0f,0x00,0x11,0x40,0x09,0x78,0x3c,0x1e,0x0f,0x87,0x81,0xc0,0xf9,0xff,
  124.   0x0f,0x00,0x5a,0x93,0x00,0x48,0x01,0x00,0x17,0x4b,0x00,0x48,0x01,0x00,0x35,0x00,
  125.   0x24,0x49,0x00,0x48,0x00,0x00,0x81,0x49,0xf8,0x49,0xf8,0x49,0xe0,0x58,0xc0,0x80,
  126.   0x00,0x00,0x6b,0x4d,0x0f,0x58,0x1f,0x3f,0xff,0x00,0x0a,0x50,0xfc,0xf8,0x00,0x71,
  127.   0x50,0x07,0xff,0x00,0x0f,0xc3,0xfe,0x00,0x07,0xc1,0xfe,0x00,0x0a,0x48,0xfe,0x00,
  128.   0x10,0x49,0x7e,0x49,0x3e,0x58,0x1c,0x0c,0x00,0x00,0x3c,0x66,0x80,0xc3,0xf3,0xff,
  129.   0x50,0xff,0x7f,0x00,0x17,0x50,0xff,0x08,0x00,0x08,0x4e,0x00,0xc4,0x00,0x00,0x40,
  130.   0x79,0xc0,0xf0,0xfc,0x3f,0x3f,0x1f,0x0f,0x4b,0x07,0x58,0xff,0x3f,0x01,0x00,0x0e,
  131.   0x61,0x07,0x8f,0xff,0xff,0x61,0x7f,0x3f,0x7f,0x7f,0x58,0xff,0xf0,0xc0,0x00,0x52,
  132.   0x73,0x70,0x7e,0x7f,0x1f,0x01,0x00,0x51,0x80,0xc0,0x58,0xff,0x3f,0x07,0x00,0x0d,
  133.   0x78,0x70,0x7c,0x3e,0x1f,0x0f,0x07,0x03,0xc2,0x00,0x70,0x80,0x80,0xff,0xff,0x7f,
  134.   0x0f,0x00,0x59,0x52,0x00,0x03,0x48,0x01,0x00,0x17,0x78,0x00,0x00,0x00,0x03,0x01,
  135.   0x01,0x01,0x00,0x32,0x00,0xa0,0x5d,0x80,0xe0,0xf0,0x4a,0xf8,0x4a,0xf0,0x58,0xc0,
  136.   0x80,0x00,0x00,0x6a,0x55,0x06,0x0e,0x58,0x1f,0x3f,0x7f,0x00,0x0a,0x4a,0xfe,0x48,
  137.   0xe0,0x00,0x70,0x48,0x1f,0x00,0x10,0xa7,0xff,0x4e,0xfe,0xc2,0xfe,0x00,0x18,0x58,
  138.   0x1e,0x0e,0x04,0x00,0x3d,0x58,0x00,0x03,0xc7,0x00,0x07,0x48,0xff,0x00,0x07,0x4b,
  139.   0x7f,0x48,0xff,0x00,0x0b,0x5d,0xff,0xfe,0xe0,0x9e,0x01,0xc1,0x01,0x00,0x43,0x40,
  140.   0x0b,0x00,0x80,0xf0,0xf8,0xfe,0x7f,0x3f,0x1f,0x0f,0x07,0x03,0x7f,0x08,0xc2,0xff,
  141.   0x00,0x0c,0x5b,0x07,0x1f,0xff,0x40,0x0b,0x07,0x0f,0x1f,0x3f,0x3f,0x7f,0x7f,0xff,
  142.   0xff,0xf0,0xc0,0xc0,0x00,0x4e,0x72,0x80,0xe0,0xfc,0xff,0x3f,0x07,0xc2,0x00,0x78,
  143.   0x80,0x80,0xe0,0xff,0xff,0x3f,0x0f,0x00,0x09,0x79,0xc0,0xe0,0xf0,0x7c,0x3f,0x1f,
  144.   0x0f,0x4a,0x01,0xc3,0x00,0x70,0x80,0x80,0xc1,0xff,0xff,0x1f,0x00,0x56,0x99,0x00,
  145.   0xc3,0x01,0x00,0x16,0xc3,0x00,0xc4,0x01,0x00,0x2d,0x00,0x9f,0x57,0x00,0xc0,0x68,
  146.   0xfc,0xf0,0xf0,0xe0,0xe0,0x00,0x6d,0x58,0x04,0x0e,0x1e,0xc4,0x1f,0x11,0xff,0x00,
  147.   0x0c,0x48,0xf0,0x00,0x70,0x50,0x01,0x7f,0x00,0x1b,0x94,0xff,0x4a,0xfe,0x60,0xff,
  148.   0xff,0x7f,0x7f,0xc7,0xff,0x18,0xc7,0xff,0x60,0x7f,0x7f,0x3f,0x1f,0x0a,0x06,0x02,
  149.   0x00,0x3c,0x60,0x01,0x07,0x87,0xef,0x00,0x07,0xb3,0xff,0x58,0x7f,0x7f,0xff,0x00,
  150.   0x0d,0x5b,0xff,0xfc,0x80,0x48,0x01,0x00,0x0a,0x48,0x01,0x00,0x43,0x40,0x0d,0x00,
  151.   0x00,0xe0,0xf8,0xfe,0xff,0x7f,0x1f,0x0f,0x07,0x03,0x01,0x00,0x0f,0x08,0xc2,0xff,
  152.   0x00,0x07,0x62,0x07,0x3f,0x7f,0xff,0x52,0x9f,0x07,0x40,0x0b,0x0f,0x1f,0x1f,0x3f,
  153.   0x3f,0x7f,0x7f,0xff,0xfc,0xf0,0xe0,0xe0,0x00,0x4d,0x7b,0xc0,0xe0,0xf8,0xff,0x7f,
  154.   0x1f,0x07,0xc4,0x00,0xc1,0x80,0xc2,0xff,0x4d,0x0e,0x6c,0xc0,0xe0,0xf0,0xf8,0x7e,
  155.   0x4e,0x00,0xc3,0x00,0x48,0x83,0xc2,0xff,0x00,0x4c,0xa7,0x01,0xa1,0x00,0x60,0x01,
  156.   0x03,0x03,0x01,0x00,0x16,0x99,0x00,0x60,0x03,0x03,0x03,0x01,0x00,0x2a
  157. };
  158. #endif
  159. // 128x128 animation sequence
  160. // for Pimoroni 128x128
  161. #ifndef OLED128x64
  162. #define OLED_TYPE OLED_128x128
  163. const byte bAnimation[] PROGMEM = {
  164.   0xff,0xff,0xff,0xff,0xfe,0xff,0xc2,0x7f,0xff,0xff,0xde,0xff,0x48,0xbf,0xc8,0x3f,
  165.   0xc7,0x7f,0x40,0x0a,0x3f,0x3f,0x1f,0x4f,0x67,0x67,0x73,0x71,0x79,0x7c,0x7c,0xc3,
  166.   0x7e,0x40,0x07,0x7c,0x78,0x79,0x33,0x23,0x07,0x0f,0x1f,0xc3,0x0f,0xc1,0x27,0xc9,
  167.   0x67,0x70,0xe7,0xe7,0x4f,0x4f,0x1f,0x9f,0xff,0xff,0xc2,0xff,0x40,0x10,0xfe,0xfc,
  168.   0xf9,0xf3,0xe7,0xe7,0xc7,0xd7,0x97,0xb7,0x37,0x27,0x27,0x87,0xc7,0xcf,0xef,0xc2,
  169.   0xcf,0x48,0xdf,0xc3,0x9f,0xc2,0x3f,0xc2,0x7f,0xcd,0xff,0x40,0x0d,0xfe,0xfe,0xfc,
  170.   0xf1,0xc3,0x04,0x31,0xf0,0xf1,0xf9,0xf9,0xfc,0xfc,0xfe,0xff,0xff,0xc6,0xff,0x40,
  171.   0x11,0x3f,0x1f,0x8f,0xe7,0xf3,0xf9,0xf8,0xf8,0xf2,0x67,0x07,0x0f,0x1f,0x1f,0x3f,
  172.   0x7f,0xff,0xff,0xc4,0x7f,0xc3,0x3f,0xc1,0x3e,0xc2,0x3c,0x40,0x0c,0x39,0x79,0x7b,
  173.   0xf3,0xf7,0xe7,0xe7,0x8f,0x1f,0x1f,0x3f,0x7f,0x7f,0xc2,0xff,0x58,0xfe,0xf0,0x01,
  174.   0xff,0xff,0xc8,0xff,0x70,0x3f,0x07,0x41,0x78,0x7c,0x7f,0xc4,0xff,0xc1,0x1f,0xc3,
  175.   0x00,0x48,0xf0,0xc2,0xff,0x58,0xfe,0xfc,0x06,0xc4,0x00,0x50,0x01,0x03,0xcd,0xff,
  176.   0x40,0x09,0xfc,0xf0,0x81,0x06,0x64,0xe1,0xe3,0xe7,0xf1,0xf8,0xff,0xff,0xc7,0xff,
  177.   0x40,0x10,0x03,0x00,0xfc,0xf0,0xe2,0xce,0x9e,0x1c,0x3c,0x79,0x79,0x73,0xe6,0xc0,
  178.   0xc8,0x98,0xbc,0xc5,0xff,0x50,0xf9,0xe0,0xc2,0xc0,0x60,0xe0,0xe0,0xf8,0xfe,0xc8,
  179.   0xff,0x40,0x0a,0x0f,0x07,0xf3,0x73,0x33,0x33,0x47,0x0f,0x38,0x00,0x9f,0xf2,0xff,
  180.   0x40,0x0f,0x7f,0x1f,0x8f,0xc7,0xe3,0xe3,0xe1,0xc9,0x99,0x31,0x73,0xe3,0xc7,0x8f,
  181.   0x1f,0x7f,0xc8,0xff,0x60,0xfc,0xe0,0x03,0x3f,0xc4,0xff,0xc1,0xfe,0xc2,0xfc,0x40,
  182.   0x0f,0x3c,0x1d,0x8f,0xc7,0xe7,0xf3,0xf3,0xb3,0xb3,0x93,0x93,0xe7,0xe7,0xcf,0x8f,
  183.   0x9f,0xc6,0x3f,0x40,0x12,0x9f,0x9f,0x1f,0x3f,0x7c,0xf8,0x7b,0x13,0x00,0x01,0x00,
  184.   0x04,0x80,0xf0,0xff,0xff,0x3f,0x3f,0x8f,0xc2,0x87,0xc2,0x93,0x40,0x08,0x27,0x27,
  185.   0x67,0x4f,0x8f,0x9f,0x3f,0x3f,0x7f,0xdd,0xff,0x60,0x1f,0x01,0xe0,0xfe,0xc7,0xff,
  186.   0x40,0x07,0xf8,0x81,0x07,0x7f,0xfe,0xc0,0x01,0x0f,0xc2,0xcf,0x58,0xdf,0x9f,0x9f,
  187.   0xc3,0x3f,0x40,0x14,0xbc,0x98,0x91,0x87,0x8f,0x1f,0x1f,0x3f,0x7f,0x7f,0x40,0x00,
  188.   0x0e,0xc7,0xf1,0xf8,0x7c,0x3e,0x3f,0x9f,0xdf,0xc6,0xff,0x58,0xfe,0xfc,0xf9,0xc5,
  189.   0xff,0x40,0x10,0xf8,0x00,0x00,0x02,0x01,0x00,0x20,0x24,0x26,0x67,0xcf,0xc7,0xc0,
  190.   0xc0,0xa7,0xe7,0xcf,0xc7,0xff,0x40,0x08,0xfe,0xf7,0xef,0xef,0xce,0x84,0x00,0x03,
  191.   0x47,0xda,0xff,0x40,0x09,0xf8,0x80,0x03,0x13,0xdb,0xcb,0x4b,0x6b,0x6b,0x6f,0xc2,
  192.   0x3f,0x78,0xff,0x00,0x80,0xff,0x03,0x00,0x1e,0xc6,0xff,0x78,0xfe,0xfc,0xf8,0xf1,
  193.   0xc1,0x0c,0x3c,0xc6,0xfe,0xc2,0xfc,0x40,0x09,0xf8,0xf0,0xe6,0xc7,0x97,0x93,0x93,
  194.   0x99,0x99,0x9d,0xc2,0xcf,0x50,0x87,0x97,0xc6,0x9f,0x40,0x1d,0x87,0x80,0x20,0x26,
  195.   0x00,0x43,0x4e,0x4f,0x4f,0x4e,0x26,0x24,0x21,0x83,0x87,0x1f,0x7f,0xff,0xff,0x07,
  196.   0x0f,0x01,0x07,0x7f,0xff,0xff,0x9f,0x83,0x03,0x87,0xc2,0xff,0x40,0x07,0xfe,0xfc,
  197.   0xf8,0xf1,0xe3,0x87,0x1f,0x3f,0xd6,0xff,0x40,0x19,0xfe,0xf8,0xe0,0xc2,0x06,0x12,
  198.   0x03,0x0b,0x0b,0x03,0x81,0x85,0x84,0x47,0x1f,0x3f,0x7f,0xfe,0xff,0xff,0x0b,0x03,
  199.   0x07,0x9f,0x3f,0x3f,0xc2,0x9f,0x58,0xc7,0xe0,0xf0,0xe4,0xff,0x40,0x19,0xfe,0xfe,
  200.   0xfc,0xf8,0xf0,0xe3,0xc7,0xcf,0x8f,0x9f,0x80,0xc8,0xc3,0xf0,0xf8,0xfe,0xff,0xfe,
  201.   0xfc,0xfc,0xf9,0xf1,0xe3,0xc0,0x93,0x3f,0xc7,0xff,0x58,0x3e,0x00,0x81,0xda,0xff,
  202.   0x40,0x11,0xfc,0xf9,0xf3,0xe7,0xcf,0x8f,0x9f,0x3f,0x3f,0x3e,0x7c,0x78,0x70,0x20,
  203.   0x05,0xc0,0xe0,0xfe,0xff,0xff,0xc6,0xff,0x58,0xfc,0xf8,0xf9,0xc3,0xf3,0x60,0xf9,
  204.   0xf8,0xfc,0xfe,0xe5,0xff,0xc1,0xfe,0xff,0xff,0xd8,0xff,0x50,0x7f,0x3f,0xff,0xff,
  205.   0xf1,0xff,0x68,0xfb,0xfd,0x4c,0x24,0x00,0xc2,0x01,0x40,0x0a,0x47,0x73,0x1b,0x01,
  206.   0x00,0x20,0x18,0xcf,0x07,0x87,0x5f,0xff,0xff,0xec,0xff,0x60,0xfd,0xfc,0xf0,0xf9,
  207.   0xc2,0xfc,0x40,0x0c,0xf8,0xf8,0xfc,0xfa,0xf0,0xf8,0xfe,0xfd,0xfc,0xfe,0xf8,0xf8,
  208.   0xfc,0xff,0xff,0xff,0xff,0xc6,0xff,0x00,0xbe,0x48,0xff,0x00,0x60,0x68,0xff,0xdf,
  209.   0x1f,0x5f,0xdf,0xc4,0x9f,0xc1,0xbf,0xc5,0x3f,0x08,0x40,0x08,0x1f,0x0f,0x0f,0x27,
  210.   0x23,0x33,0x39,0x39,0x7d,0x09,0x7c,0x21,0x7c,0x09,0x73,0x18,0x40,0x13,0x4f,0x47,
  211.   0x67,0x63,0x73,0x33,0x31,0x19,0x99,0xc9,0xcc,0xc4,0x04,0x44,0x10,0x38,0x1c,0x8c,
  212.   0xc0,0xf1,0xc2,0xff,0x00,0x42,0x40,0x0e,0xff,0xfe,0xfc,0xf9,0xf1,0xf3,0xe3,0xeb,
  213.   0xcb,0x9b,0x93,0xb3,0x33,0x33,0x77,0xc2,0x27,0xc3,0x8f,0x19,0xbf,0x00,0x0e,0xa1,
  214.   0xfe,0x40,0x07,0xfc,0xf8,0xe1,0x81,0x08,0x7c,0xfe,0xfe,0xc4,0xff,0x00,0x46,0x40,
  215.   0x0f,0xff,0x3f,0x1f,0x8f,0xc7,0xe3,0xf3,0xf9,0xec,0xcc,0x1e,0x1e,0x3e,0x7f,0x7f,
  216.   0xff,0x10,0xc7,0xff,0xc2,0x7e,0x40,0x0a,0x7c,0xfc,0xfd,0xf9,0xf3,0xf3,0xf7,0xe7,
  217.   0xef,0xcf,0x1f,0x0c,0x3f,0x7f,0xff,0xff,0x1b,0xfc,0x00,0x0f,0x00,0x48,0x75,0x7f,
  218.   0x1f,0x87,0xe1,0xf8,0xfe,0x54,0x7f,0x37,0x59,0xc0,0xfe,0xfe,0x64,0xf9,0xf9,0x09,
  219.   0x04,0x50,0x00,0x06,0xc7,0xfe,0x28,0x40,0x07,0xfe,0xf8,0xe0,0x06,0x0d,0xe9,0xcf,
  220.   0xcf,0x0a,0xf0,0xfc,0x00,0x47,0x49,0x07,0x40,0x0f,0xf8,0xe1,0x84,0x1c,0x38,0x79,
  221.   0x71,0xf3,0xe3,0xe7,0xcc,0x90,0x10,0x30,0x70,0xfc,0x28,0x50,0xe3,0xc1,0xc3,0x80,
  222.   0x58,0xc0,0xe0,0xfc,0x00,0x08,0x40,0x08,0x3f,0x0f,0xcf,0x67,0x27,0x67,0x0f,0x1f,
  223.   0xe0,0x09,0x3f,0x00,0x32,0xcf,0xff,0x00,0x08,0x63,0xf8,0x80,0x0f,0x7f,0x60,0xfe,
  224.   0xfc,0xfc,0xf8,0xc2,0xf9,0x58,0xfb,0xfb,0xfe,0xc6,0xff,0x68,0x7f,0x7f,0x3f,0x3f,
  225.   0x7f,0xcb,0xff,0x40,0x09,0xf8,0xf0,0xe7,0xec,0xe0,0xc0,0x04,0x70,0x00,0x00,0x10,
  226.   0xd1,0xff,0x00,0x18,0xe1,0xff,0x40,0x08,0xfc,0xf8,0xf1,0xc7,0x8f,0x1f,0x3f,0x7f,
  227.   0x7f,0xc7,0xff,0x40,0x0b,0xcf,0xc3,0xf1,0xf8,0xfc,0xfe,0xfe,0xff,0xff,0xfe,0xff,
  228.   0xff,0xc2,0x7f,0xc4,0x3f,0x60,0x1f,0x0f,0x4f,0xcf,0xc2,0xe7,0x60,0xc3,0xc0,0x98,
  229.   0x1f,0x08,0x48,0xf0,0xff,0xff,0xd4,0xff,0x40,0x18,0xfe,0xfc,0xfc,0x7c,0x39,0x19,
  230.   0x83,0x43,0x23,0x03,0x87,0xc7,0xc7,0xe7,0xe7,0x27,0x07,0x87,0xc7,0xe1,0xe0,0xf0,
  231.   0xf2,0xfa,0xfe,0xc5,0xff,0x60,0xfe,0xfe,0xfc,0xfd,0xc5,0xff,0x50,0xfc,0x70,0x08,
  232.   0x40,0x09,0x04,0xec,0xcc,0xfc,0xf9,0xf1,0xe3,0xc7,0x0f,0x3f,0xf6,0xff,0x70,0x1f,
  233.   0x0f,0xc7,0xe7,0xf3,0xf3,0xc2,0xe7,0x60,0xcf,0x8f,0x1f,0x31,0x08,0x48,0x0e,0xc5,
  234.   0xfc,0x40,0x08,0xf9,0xf8,0xf2,0xf3,0xe0,0xc4,0x8e,0x1f,0x3f,0xc3,0xff,0x40,0x09,
  235.   0xf0,0xe0,0xc7,0x07,0x27,0x67,0x77,0x7f,0x73,0xf3,0xc9,0xff,0x40,0x16,0x7f,0x1f,
  236.   0x8f,0x9f,0x4f,0x07,0x23,0x38,0x0c,0xff,0xff,0x7f,0x3f,0x3f,0x5f,0xff,0xfc,0xf8,
  237.   0xf0,0xe3,0xc7,0x1f,0x3f,0xf1,0xff,0x40,0x11,0xf3,0xc0,0x02,0x3a,0x72,0xf2,0xe4,
  238.   0xcd,0x89,0x93,0x37,0x3f,0x7f,0xfe,0xfc,0xf0,0xc0,0x8d,0xc6,0xff,0x78,0xdf,0x1f,
  239.   0x1f,0x0f,0xc7,0xe0,0xf0,0xc7,0xff,0x40,0x07,0xfe,0xfc,0xf8,0xf0,0xf3,0xe3,0xe3,
  240.   0xe1,0xc2,0xe7,0x58,0xf3,0xf3,0xf9,0xc3,0xf8,0xc1,0xfc,0xc2,0xfe,0x70,0xf8,0xe0,
  241.   0x83,0x02,0x30,0x7c,0xc5,0xff,0x70,0xfe,0xf1,0x02,0x10,0x03,0x1f,0xf1,0xff,0x40,
  242.   0x13,0xfe,0xfc,0xf8,0xf9,0xf3,0xf3,0xe3,0xe3,0xc2,0xc4,0x84,0x81,0x03,0x03,0x27,
  243.   0x0f,0x1f,0x3f,0x3f,0xff,0xc3,0xbf,0x58,0x3c,0x00,0xc1,0xe4,0xff,0x78,0xfe,0xfc,
  244.   0xf8,0xf9,0xf9,0xf1,0xf3,0xc2,0xf9,0x58,0xfc,0xfc,0xfe,0xcb,0xff,0x50,0x7f,0x3f,
  245.   0xd7,0xff,0x08,0xc2,0xff,0x08,0xc2,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,
  246.   0x20,0x58,0xfe,0xfc,0xfc,0xc2,0xf8,0x48,0xf2,0xc4,0xf3,0xc1,0xf8,0xf2,0xff,0x68,
  247.   0xfb,0xfd,0x4c,0x24,0x00,0xc2,0x01,0x60,0x47,0x73,0x1b,0x01,0x08,0x70,0x20,0x18,
  248.   0xcf,0x07,0x87,0x5f,0xc9,0xff,0x08,0xc7,0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,0x19,
  249.   0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xf4,0xff,0x60,0xfd,0xfc,0xf0,0xf9,0xc2,
  250.   0xfc,0x40,0x0c,0xf8,0xf8,0xfc,0xfa,0xf0,0xf8,0xfe,0xfd,0xfc,0xfe,0xf8,0xf8,0xfc,
  251.   0xd1,0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,
  252.   0xff,0xd3,0xff,0x08,0xd2,0xff,0x09,0xff,0x09,0xff,0x09,0xff,0x00,0x09,0x4f,0xff,
  253.   0xcf,0xff,0x00,0xbf,0xc1,0xff,0x00,0x5f,0xd4,0xff,0x40,0x10,0x7f,0x3f,0x3f,0x9f,
  254.   0x9f,0xcf,0xcf,0xe7,0xe7,0xf7,0xe7,0xe7,0xcf,0x9f,0x1f,0x3f,0x7f,0xc3,0xff,0xc4,
  255.   0x7f,0xc7,0x3f,0xc3,0x7f,0x00,0x44,0x78,0xf3,0xe3,0xcb,0x9b,0x9b,0x33,0x73,0xc4,
  256.   0x33,0xc5,0x73,0x60,0xf1,0xf0,0xf0,0xf2,0xce,0xf3,0xc5,0xf0,0xc3,0xf2,0x40,0x0e,
  257.   0xe3,0xc3,0x83,0x13,0x63,0x13,0x23,0x93,0x96,0x8e,0xce,0xe6,0xe2,0xf0,0xf9,0x00,
  258.   0x45,0x40,0x0b,0xff,0xff,0x7e,0x3e,0x9c,0xc9,0xa1,0x23,0x33,0x79,0x79,0xfc,0xc3,
  259.   0xfe,0xc2,0xfc,0x48,0xfd,0xc2,0xf9,0x40,0x0e,0xfb,0xf3,0xf3,0xf7,0xe7,0xe7,0xef,
  260.   0xcf,0xcf,0x9f,0x9f,0xbf,0x3f,0x3f,0x7f,0xc3,0xff,0x23,0xfc,0xf0,0x01,0x00,0x49,
  261.   0x40,0x07,0xff,0x7f,0x1f,0x87,0xe3,0xf1,0xfc,0xfe,0x1c,0xff,0xdf,0x07,0x02,0x13,
  262.   0x01,0xf3,0xfb,0x08,0x60,0xe7,0xe7,0x27,0x07,0xc4,0x03,0x50,0x33,0xf3,0xc5,0xfb,
  263.   0x48,0xf7,0x18,0x40,0x0c,0xfe,0xfc,0xf0,0xe1,0x81,0x13,0x27,0x6f,0x1f,0x3f,0x7f,
  264.   0x1f,0x80,0x00,0x47,0x40,0x11,0x3f,0x01,0xc0,0x06,0x03,0x73,0xe7,0xe7,0xcf,0xcf,
  265.   0x9f,0x1f,0x31,0x40,0x80,0x80,0xc0,0xf0,0x28,0x48,0x8f,0xc5,0x00,0x50,0x80,0xf0,
  266.   0x00,0x08,0x40,0x0a,0xff,0x7f,0x3f,0xbf,0x9f,0x3f,0x3f,0x7c,0x80,0x03,0xff,0x00,
  267.   0x4b,0x40,0x09,0xe0,0x00,0x3f,0xff,0xfe,0xfc,0xf8,0xf9,0xf3,0xf3,0xc2,0xe7,0x60,
  268.   0xce,0xcc,0xed,0xf9,0x3d,0xff,0xfe,0xfe,0xfe,0xfe,0x00,0x0b,0x40,0x0f,0xe0,0xc0,
  269.   0x9f,0xbf,0xa1,0xa1,0x84,0xc4,0x04,0x04,0x64,0x49,0x11,0x23,0x07,0x0f,0x00,0x26,
  270.   0xe0,0xff,0x78,0xfe,0xf0,0xc1,0x87,0x1f,0x3f,0x7f,0xcb,0xff,0x40,0x09,0xbf,0x8f,
  271.   0xc7,0xe3,0xf1,0xf9,0xf8,0xfc,0xfc,0xfd,0xc8,0xff,0x40,0x0b,0x7f,0x1f,0x0f,0x07,
  272.   0xe7,0xe3,0xf3,0xf1,0xf0,0xe4,0xe4,0xce,0xc3,0xfe,0x70,0xfc,0xfc,0xf9,0xe3,0x07,
  273.   0x0f,0xff,0xff,0xc8,0xff,0x40,0x08,0xfe,0xfc,0x18,0x01,0xe1,0xf3,0xe7,0x67,0x07,
  274.   0xc2,0x0f,0x68,0x1f,0x1f,0x9f,0x1f,0x9f,0xc5,0x3f,0xc4,0x1f,0x78,0x9f,0xcf,0x07,
  275.   0x01,0xf0,0xfc,0xfe,0xc2,0xff,0x58,0x7f,0x7f,0x3f,0xc6,0xff,0x78,0xfe,0x71,0x03,
  276.   0x8f,0xe3,0xf0,0xf8,0xff,0xff,0xca,0xff,0x40,0x11,0xfc,0xfc,0xf9,0xf9,0xf1,0xc0,
  277.   0x8e,0x1f,0x37,0x73,0x08,0x40,0x61,0x04,0x08,0x21,0x47,0x80,0x10,0x40,0x1c,0x7e,
  278.   0xc0,0x80,0x06,0x3e,0x3e,0x3c,0x19,0x82,0x04,0x10,0xc1,0xc9,0x99,0x9c,0x9c,0x1e,
  279.   0x1e,0x4e,0x7f,0x3f,0x1f,0x7f,0x3f,0x1f,0x8f,0xc3,0xf0,0xfc,0xff,0xff,0xd7,0xff,
  280.   0x40,0x08,0xfe,0xf0,0xc0,0x82,0x12,0x33,0x73,0xf8,0xf8,0xc3,0xfc,0xc2,0xf9,0x40,
  281.   0x10,0xf1,0xe0,0xe0,0xe1,0xc4,0x06,0x07,0x03,0xf3,0xf9,0xf0,0xf0,0xe0,0xe2,0xef,
  282.   0xff,0xfe,0x10,0xff,0xff,0xda,0xff,0x58,0x83,0x01,0x78,0xc6,0xfc,0xc2,0xf9,0x60,
  283.   0xf1,0xf0,0xf4,0xe5,0xc2,0xff,0x40,0x07,0x7f,0x3f,0xbf,0xfe,0xf0,0x60,0x07,0x1f,
  284.   0xc4,0x9f,0x60,0xcf,0xe3,0xf0,0xfc,0xdc,0xff,0x50,0x7f,0x3f,0xd7,0xff,0x08,0xc2,
  285.   0xff,0x08,0xc2,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,
  286.   0x58,0xfe,0xf0,0xf0,0xc5,0xe1,0x40,0x0c,0xe5,0xe5,0xf1,0xf0,0xf2,0xf0,0xf9,0xf9,
  287.   0xf8,0xfc,0xfc,0xf9,0xf9,0xc2,0xfc,0x48,0xfe,0xda,0xff,0x68,0xfb,0xfd,0x4c,0x24,
  288.   0x00,0xc2,0x01,0x61,0x47,0x73,0x1b,0x01,0x70,0x20,0x18,0xcf,0x07,0x87,0x5f,0xc9,
  289.   0xff,0x08,0xc7,0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,
  290.   0x07,0x4f,0xff,0xf4,0xff,0x60,0xfd,0xfc,0xf0,0xf9,0xc2,0xfc,0x40,0x0c,0xf8,0xf8,
  291.   0xfc,0xfa,0xf0,0xf8,0xfe,0xfd,0xfc,0xfe,0xf8,0xf8,0xfc,0xd1,0xff,0x08,0xc6,0xff,
  292.   0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xd3,0xff,0x08,0xd2,
  293.   0xff,0x09,0xff,0x09,0xff,0x09,0xff,0x00,0x09,0x4f,0xff,0xcf,0xff,0x00,0xff,0x00,
  294.   0x34,0x40,0x09,0x7f,0x3f,0x9f,0x9f,0xcf,0xc7,0xe7,0xf3,0xf3,0xfb,0xc2,0xf9,0x40,
  295.   0x07,0xf3,0xf3,0xe7,0xcf,0x8f,0x1f,0x3f,0x7f,0xc3,0x3f,0xcd,0x9f,0x60,0xbf,0x3f,
  296.   0x7f,0x7f,0x00,0x40,0x40,0x0a,0xfe,0xfc,0xf8,0xf2,0xe4,0xcc,0x9c,0x9c,0x0c,0x5c,
  297.   0x5c,0xc2,0xdc,0x48,0x9c,0xc2,0x1c,0x48,0xbc,0xc3,0x3c,0xc3,0x7d,0xc7,0xfd,0xcb,
  298.   0xfc,0x40,0x0f,0xf9,0xf9,0xf1,0xc1,0x0d,0x11,0xc5,0xc1,0xc5,0xe5,0xe7,0xf3,0xf1,
  299.   0xf8,0xfc,0xfe,0x00,0x45,0x40,0x0c,0x7f,0x3f,0x9f,0xcf,0xe7,0xe2,0xe2,0xc8,0x9c,
  300.   0x9e,0x3e,0x3f,0x7f,0xc5,0xff,0xc2,0xfe,0xc2,0xfc,0x40,0x0f,0xfd,0xf9,0xf9,0xfb,
  301.   0xf3,0xf3,0xe7,0xe7,0xef,0xcf,0xcf,0x9f,0x9f,0x3f,0x7f,0x7f,0x2c,0xff,0xf8,0xc0,
  302.   0x07,0x00,0x49,0x7b,0x1f,0x07,0xe3,0xf8,0xfc,0xfe,0xff,0x62,0x7f,0x7f,0x01,0x00,
  303.   0x59,0xc0,0xfc,0xfd,0x58,0xfb,0xf9,0x19,0xc2,0x01,0xc2,0x00,0x48,0x0c,0xc5,0xfc,
  304.   0x93,0xfd,0x40,0x0c,0xff,0xff,0xfc,0xf0,0xc0,0x04,0x19,0xd3,0xc7,0x8f,0x9f,0xc7,
  305.   0xe0,0x00,0x47,0x40,0x11,0x0f,0x00,0xf0,0xc1,0x89,0x39,0x79,0x71,0xf3,0xe3,0xe7,
  306.   0xcf,0x88,0x00,0x20,0x60,0xf0,0xfc,0x2a,0xe3,0x80,0x1c,0x80,0xc0,0xe0,0xf8,0x00,
  307.   0x08,0x40,0x09,0x3f,0x1f,0xcf,0xcf,0x4f,0x0f,0x9f,0x1e,0x00,0x01,0xc6,0x0f,0x40,
  308.   0x0f,0x4f,0x07,0x87,0x03,0x03,0x43,0xe3,0x63,0x03,0x03,0x93,0xf3,0xf3,0xc7,0x0f,
  309.   0x3f,0x00,0x35,0x59,0xf0,0x80,0x0f,0x68,0xff,0xff,0xfe,0xfc,0xfc,0xc2,0xf9,0xc2,
  310.   0xf3,0x50,0xf2,0xfe,0x00,0x07,0xc3,0xff,0x00,0x0b,0x40,0x0a,0xf0,0xe0,0xef,0xcc,
  311.   0xc8,0xc8,0xe4,0x30,0x00,0xc0,0xfe,0xc2,0xff,0x70,0xe0,0x02,0x13,0xb2,0xb2,0xf0,
  312.   0xc2,0xf8,0x5b,0xfc,0xfc,0xfe,0x60,0x7f,0x0f,0x80,0xf0,0x00,0x15,0xd3,0xff,0x40,
  313.   0x08,0x3f,0x1f,0x87,0xe3,0xf3,0x79,0x79,0x39,0x38,0xc2,0x39,0x40,0x09,0x33,0x23,
  314.   0x00,0x10,0xe3,0x87,0x1f,0x3f,0x7f,0x7f,0xc9,0xff,0x60,0xcf,0xe3,0xf1,0xf9,0xc4,
  315.   0xfc,0xcc,0xff,0x40,0x0a,0x7f,0x7f,0x3f,0x8f,0xc7,0xe1,0xf8,0xfe,0xff,0xff,0x03,
  316.   0x08,0x58,0xf8,0x7c,0x3e,0xcc,0xff,0x50,0xfe,0xf8,0x08,0x48,0x0f,0xe9,0xff,0x40,
  317.   0x2f,0xe0,0xc0,0x0f,0x33,0xf8,0xfc,0x3e,0x8e,0xc7,0xe7,0xf3,0x73,0x39,0x19,0x90,
  318.   0xc0,0x01,0x19,0xf8,0xfc,0xe0,0xfc,0xfc,0xf8,0xf9,0x61,0x03,0x13,0x87,0xc7,0x67,
  319.   0x27,0x37,0x93,0x93,0x43,0x03,0x07,0x87,0x87,0xc7,0xcf,0xcf,0x87,0x07,0x27,0x67,
  320.   0xe7,0xc2,0xf3,0x68,0xf9,0xf9,0xfc,0xfc,0xfe,0xc8,0xff,0x48,0xc0,0x08,0x50,0x38,
  321.   0x78,0xc5,0xff,0x40,0x0a,0x7f,0x3f,0xff,0xff,0x7f,0x3f,0x1f,0x8f,0xc7,0xe0,0xf8,
  322.   0xec,0xff,0x40,0x26,0xfc,0xf8,0xf1,0xf3,0xe7,0xe7,0xcf,0xcd,0xcc,0xce,0xc7,0xc3,
  323.   0xc1,0xe0,0xe0,0xf1,0xe3,0xe1,0xe4,0xe7,0xe7,0xf3,0xf0,0xc0,0x86,0x1f,0x3f,0x60,
  324.   0x40,0xc3,0x91,0x9c,0x3e,0x39,0x3d,0x8c,0xc4,0xe0,0xf9,0xc2,0xff,0x13,0xe0,0xc0,
  325.   0xc0,0x08,0x40,0x08,0x30,0x3c,0xf8,0xf1,0xe3,0x07,0x1f,0x9f,0x3f,0xc3,0x7f,0xc2,
  326.   0xff,0x48,0xfe,0xca,0xfc,0xc1,0xfe,0xff,0xff,0xc8,0xff,0x40,0x0f,0x7f,0x3f,0x1f,
  327.   0x98,0x90,0x82,0xc4,0xcc,0xcc,0xce,0xce,0xcf,0x9f,0x1f,0x3f,0x7f,0xc2,0xff,0x78,
  328.   0xfe,0xff,0x3f,0x37,0x30,0x18,0x07,0x08,0x68,0x80,0x87,0x41,0x68,0x7e,0xc2,0x7f,
  329.   0x78,0x7c,0xf0,0x80,0xf8,0xe1,0x03,0x0f,0xff,0xff,0xd4,0xff,0x68,0xf8,0xe0,0xe2,
  330.   0xcf,0x0f,0xc3,0x1f,0x40,0x11,0x5f,0x7f,0x7f,0x3f,0x3f,0xbf,0x9f,0x9f,0xcf,0xe7,
  331.   0xf3,0xf9,0x8c,0x06,0x62,0xf0,0xf8,0xf8,0xc2,0xfc,0xc4,0xfe,0xc2,0xff,0x68,0x7f,
  332.   0x08,0x80,0xe4,0xfc,0xd8,0xff,0x50,0x7f,0x3f,0xd7,0xff,0x08,0xc2,0xff,0x08,0xc2,
  333.   0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xc3,0xff,0xc2,
  334.   0xfe,0xcb,0xff,0x68,0xfe,0xfc,0xf0,0xf1,0xf1,0xc3,0xe1,0x40,0x08,0xf1,0xf1,0xf3,
  335.   0xf3,0xf9,0xf8,0xfc,0xfc,0xfe,0xcf,0xff,0x68,0xfb,0xfd,0x4c,0x24,0x00,0xc2,0x01,
  336.   0x61,0x47,0x73,0x1b,0x01,0x70,0x20,0x18,0xcf,0x07,0x87,0x5f,0xc9,0xff,0x08,0xc7,
  337.   0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,
  338.   0xf4,0xff,0x60,0xfd,0xfc,0xf0,0xf9,0xc2,0xfc,0x40,0x0c,0xf8,0xf8,0xfc,0xfa,0xf0,
  339.   0xf8,0xfe,0xfd,0xfc,0xfe,0xf8,0xf8,0xfc,0xd1,0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,
  340.   0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xd3,0xff,0x08,0xd2,0xff,0x09,0xff,
  341.   0x09,0xff,0x09,0xff,0x00,0x09,0x4f,0xff,0xcf,0xff,0x00,0xbc,0xc5,0x7f,0x00,0x5e,
  342.   0x60,0x9f,0x1f,0x9f,0x9f,0xc2,0xbf,0xca,0x3f,0x40,0x14,0x1f,0x0f,0x07,0x27,0x33,
  343.   0x31,0x39,0x3c,0x3c,0x3e,0x3e,0x3f,0x3f,0x3e,0x3e,0x3c,0x38,0x39,0xb3,0x87,0x87,
  344.   0xc2,0x8f,0x60,0x87,0x87,0xa7,0x27,0xc7,0x33,0x40,0x07,0xb3,0x33,0xe7,0xe7,0x67,
  345.   0x2f,0x0f,0xcf,0x00,0x40,0x40,0x10,0xff,0xff,0xfe,0xfc,0xfd,0xf9,0xf3,0xe3,0xe3,
  346.   0xcb,0xd3,0x13,0x33,0x33,0x97,0xd7,0xc7,0xc2,0xe7,0xc1,0xef,0xc2,0xcf,0x48,0xdf,
  347.   0xc2,0x9f,0xc2,0x3f,0xc2,0x7f,0xcc,0xff,0x40,0x0b,0xfe,0xfc,0xf8,0xe1,0x02,0x10,
  348.   0xf2,0xf8,0xf9,0xfc,0xfc,0xfe,0xc2,0xff,0x00,0x2a,0x58,0x3f,0x1f,0x8f,0xc2,0xcf,
  349.   0x60,0x8f,0x9f,0x1f,0x3f,0xc2,0x7f,0x00,0x0b,0x40,0x10,0x7f,0x3f,0x8f,0xc7,0xe3,
  350.   0xf1,0xf9,0xfc,0xfa,0xfb,0x33,0x27,0x07,0x0f,0x1f,0x9f,0xbf,0x08,0xc2,0x7f,0xc5,
  351.   0x3f,0x40,0x12,0xbf,0x9f,0x9e,0xbe,0xbe,0xbc,0xbc,0xbd,0xb9,0xf9,0xf3,0xf3,0xe7,
  352.   0xc7,0x8f,0x1f,0x1f,0x3f,0x7f,0x1b,0xff,0xf0,0x00,0x18,0xc2,0x7f,0xc2,0x3f,0xc3,
  353.   0x7f,0x00,0x22,0x40,0x0a,0x3f,0x0f,0xc7,0xe0,0xe0,0x73,0x73,0xc3,0x03,0x00,0x7c,
  354.   0xc2,0x7e,0x70,0x3e,0x1c,0xc0,0xc1,0x0f,0x1f,0x28,0x68,0x1f,0x07,0x61,0x38,0x3e,
  355.   0xc2,0x7f,0x1b,0x1f,0x0d,0x00,0x1b,0xf0,0xff,0xff,0x0e,0xfe,0xfe,0x02,0x00,0x00,
  356.   0x00,0x18,0x48,0x03,0xc7,0xff,0x28,0x40,0x1f,0xff,0xfe,0xf8,0xc1,0x03,0x32,0xf0,
  357.   0x73,0x73,0x71,0x3c,0x0f,0x01,0x90,0x80,0x00,0x18,0x18,0x59,0x58,0x50,0x52,0x06,
  358.   0x06,0x1c,0xfc,0xf9,0xf1,0xf1,0xe1,0xcc,0xdc,0xc2,0xfc,0x40,0x07,0xf9,0xf9,0xf1,
  359.   0xf3,0xe3,0x87,0x1f,0x3f,0x00,0x0f,0x40,0x0f,0x02,0x00,0x3d,0xbc,0x9e,0x9e,0x1e,
  360.   0x3c,0x3c,0x30,0x80,0x80,0x38,0x7e,0x7f,0x7f,0x17,0x80,0xc0,0xf8,0xfc,0xfc,0xfc,
  361.   0x00,0x08,0x40,0x0f,0xfe,0xf0,0xe1,0xc7,0x8e,0x9e,0x3c,0x3c,0x79,0x71,0x73,0xe4,
  362.   0xcc,0xcc,0x9c,0xff,0x28,0x50,0xf8,0xf0,0xc3,0xe0,0x58,0xf0,0xf8,0xff,0x00,0x08,
  363.   0x40,0x1f,0x0f,0x03,0xf3,0x19,0x09,0x23,0x93,0x01,0x08,0x04,0xc0,0xf2,0xf2,0xf8,
  364.   0xf9,0xf8,0xfc,0xf8,0xf0,0xc2,0x8e,0x1e,0x3e,0x3b,0x67,0xe7,0xe7,0xe3,0xe0,0x78,
  365.   0x3f,0x3f,0x0a,0x1f,0x8f,0x00,0x09,0x60,0xef,0xc8,0x00,0x07,0x00,0x0d,0x40,0x15,
  366.   0xfc,0xf8,0xe3,0xc3,0xc3,0x93,0x93,0xb2,0x30,0x3c,0x3f,0x1f,0x1f,0x0e,0x46,0x4e,
  367.   0xcf,0x8f,0x9f,0x1f,0x3f,0x7f,0x0e,0x7f,0x1e,0x00,0x03,0x1f,0x7f,0x08,0xc3,0xff,
  368.   0xc5,0xfe,0x48,0xff,0x30,0xc1,0x7f,0xc3,0x3f,0xc1,0x7f,0x00,0x09,0x40,0x31,0xfe,
  369.   0xfc,0xf9,0xfb,0xfb,0xf9,0x39,0x0c,0xc0,0xf0,0xff,0x7f,0x3f,0x0f,0x07,0x87,0xa7,
  370.   0xb3,0x33,0x27,0x67,0xe7,0xc7,0xce,0x9e,0x1c,0x7c,0xfc,0xfc,0xfe,0xfe,0xfc,0xf8,
  371.   0xf1,0xe7,0xe7,0xc7,0xcf,0xcf,0xc7,0xe7,0xe0,0xe0,0xc7,0xcf,0xcf,0xc7,0xe7,0xf0,
  372.   0xfe,0x28,0xce,0xff,0x08,0x48,0x00,0xc7,0xfc,0x40,0x15,0xf8,0xf3,0xc7,0x0e,0x78,
  373.   0xe0,0x02,0x1e,0xff,0xff,0xfe,0xf8,0xf1,0xe3,0xc7,0x8f,0x9f,0x1f,0x3f,0x3f,0x7f,
  374.   0x7f,0xc4,0xff,0x40,0x0a,0x43,0x61,0x60,0x72,0x72,0x79,0x78,0x78,0x7c,0xfc,0xfc,
  375.   0xc5,0xff,0xc2,0x7f,0x40,0x08,0x3f,0x3f,0x9f,0x8f,0xc7,0xe3,0xf0,0xfc,0xfe,0xc2,
  376.   0xff,0x70,0x20,0x00,0x1f,0x1f,0x9f,0xbf,0xc6,0xff,0x40,0x09,0xf9,0xf0,0xf0,0xe3,
  377.   0xe7,0xcf,0x8f,0x1f,0x3f,0x7f,0xe3,0xff,0x48,0xc0,0x08,0x40,0x0a,0x1f,0x9f,0x5f,
  378.   0x0f,0x2f,0x87,0x17,0x57,0x3f,0xbf,0xbf,0x11,0xff,0x10,0x70,0x07,0x63,0xf3,0xf1,
  379.   0xf9,0xf8,0xc3,0xfc,0x40,0x07,0xf8,0xf9,0xf0,0xe0,0xc4,0x8c,0x04,0x64,0xc3,0xf2,
  380.   0xc5,0xf8,0x40,0x0a,0xe0,0xc0,0x89,0x11,0x21,0x4c,0x4c,0x9c,0x9c,0x9e,0x9e,0xc4,
  381.   0x3f,0x40,0x09,0x07,0x01,0x99,0x8c,0x84,0xc4,0xc4,0x0e,0x1e,0x7e,0xc2,0xfe,0xc3,
  382.   0xff,0x70,0x3f,0x07,0x0f,0x1f,0x0f,0x87,0xc4,0xff,0x40,0x07,0xfe,0xfc,0xf8,0xf1,
  383.   0x83,0x0f,0x1f,0x7f,0xde,0xff,0x40,0x16,0xfe,0xf8,0xe0,0xc2,0x89,0x0d,0x04,0x12,
  384.   0x82,0xc9,0xc5,0xe7,0xe0,0xcc,0x19,0x18,0x3f,0x7f,0xfe,0xff,0x7f,0x3f,0x3f,0xc9,
  385.   0x7f,0x58,0x7e,0x30,0x01,0xcd,0xff,0xc1,0xfe,0xc2,0xfc,0xc8,0xf9,0x50,0xe1,0x80,
  386.   0x0b,0x06,0x0e,0xf8,0x08,0x48,0x07,0xc3,0xff,0x40,0x0a,0x3f,0x07,0x80,0xf8,0xfc,
  387.   0xf0,0xe2,0xc7,0xcf,0x9f,0x9f,0xc5,0x3f,0x60,0x9f,0x80,0xe6,0xe0,0xe2,0xff,0x78,
  388.   0xfc,0xf0,0xc6,0xcf,0x9f,0x3f,0x3f,0xc2,0x7f,0x48,0x3f,0x10,0x40,0x07,0x80,0xc3,
  389.   0xe0,0xf0,0xfc,0xfc,0xff,0xff,0xc8,0xfe,0xdf,0xff,0x40,0x0b,0xfe,0xf8,0xf0,0xe3,
  390.   0xc4,0xce,0xcf,0xe7,0xe3,0xf0,0xfc,0xfe,0xfc,0xff,0x08,0x48,0xfe,0xff,0xff,0xd3,
  391.   0xff,0x50,0x7f,0x3f,0xd7,0xff,0x08,0xc2,0xff,0x08,0xc2,0xff,0x10,0xc3,0xff,0x19,
  392.   0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xf4,0xff,0x68,0xfb,0xfd,0x4c,0x24,0x00,
  393.   0xc2,0x01,0x61,0x47,0x73,0x1b,0x01,0x70,0x20,0x18,0xcf,0x07,0x87,0x5f,0xc9,0xff,
  394.   0x08,0xc7,0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,
  395.   0x4f,0xff,0xf4,0xff,0x60,0xfd,0xfc,0xf0,0xf9,0xc2,0xfc,0x40,0x0c,0xf8,0xf8,0xfc,
  396.   0xfa,0xf0,0xf8,0xfe,0xfd,0xfc,0xfe,0xf8,0xf8,0xfc,0xd1,0xff,0x08,0xc6,0xff,0x10,
  397.   0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xd3,0xff,0x08,0xd2,0xff,
  398.   0x09,0xff,0x09,0xff,0x09,0xff,0x00,0x09,0x4f,0xff,0xcf,0xff,0x00,0xbc,0x9a,0xff,
  399.   0x48,0xff,0x00,0x5e,0x49,0xdf,0x50,0x5f,0xdf,0xc4,0x9f,0xc1,0xbf,0x00,0x08,0x49,
  400.   0x0f,0x51,0x23,0x33,0x60,0x39,0x7d,0x7c,0x7c,0xc2,0x7e,0x40,0x1a,0x7c,0x7c,0x79,
  401.   0x73,0x23,0x07,0x0f,0x4f,0x47,0x67,0x63,0x73,0x33,0x31,0x19,0x99,0xc9,0xcc,0xc4,
  402.   0x04,0x44,0x10,0x38,0x1c,0x8c,0xc0,0xf1,0xc2,0xff,0x00,0x42,0x59,0xff,0xfe,0xfc,
  403.   0x51,0xf1,0xf3,0x40,0x07,0xeb,0xcb,0x9b,0x93,0xb3,0x33,0x33,0x77,0xc2,0x27,0xc3,
  404.   0x8f,0x91,0x9f,0x51,0xbf,0x3f,0x91,0x7f,0xc1,0xff,0x00,0x07,0xc4,0xfe,0x40,0x07,
  405.   0xfc,0xf8,0xe1,0x81,0x08,0x7c,0xfe,0xfe,0xc3,0xff,0x00,0x2d,0xcc,0xff,0x00,0x0b,
  406.   0x40,0x10,0xff,0xff,0x3f,0x1f,0x8f,0xc7,0xe3,0xf3,0xf9,0xec,0xcc,0x1e,0x1e,0x3e,
  407.   0x7f,0x7f,0xff,0x08,0xc8,0xff,0xc2,0x7e,0x40,0x0f,0x7c,0xfc,0xfd,0xf9,0xf3,0xf3,
  408.   0xf7,0xe7,0xef,0xcf,0x1f,0x1f,0x3f,0x7f,0xff,0xff,0x1b,0xfc,0x00,0x0f,0x18,0xc9,
  409.   0xff,0x00,0x22,0xd3,0xff,0x28,0x40,0x07,0x7f,0x1f,0x87,0xe1,0xf8,0xfe,0xff,0xff,
  410.   0x1a,0x7f,0x37,0x23,0xc0,0xfe,0xfe,0x0c,0xf9,0xf9,0x09,0x04,0x28,0x48,0x06,0xc7,
  411.   0xfe,0x28,0x40,0x0a,0xfe,0xf8,0xe0,0x06,0x0d,0xe9,0xcf,0xcf,0xe7,0xf0,0xfc,0xdf,
  412.   0xff,0x00,0x0f,0xcf,0xff,0x17,0xff,0xff,0xff,0xff,0xff,0xff,0x07,0x08,0x40,0x0f,
  413.   0xf8,0xe1,0x84,0x1c,0x38,0x79,0x71,0xf3,0xe3,0xe7,0xcc,0x90,0x10,0x30,0x70,0xfc,
  414.   0x28,0x50,0xe3,0xc1,0xc3,0x80,0x58,0xc0,0xe0,0xfc,0x00,0x08,0x58,0x3f,0x0f,0xcf,
  415.   0xc2,0x67,0x68,0x0f,0x1f,0x20,0x00,0x3f,0xc2,0x7f,0xd4,0xff,0x00,0x09,0xc3,0xff,
  416.   0x00,0x0d,0xd2,0xff,0x49,0x7f,0x91,0x3f,0x6a,0xf8,0x80,0x0f,0x7f,0xff,0x60,0xfe,
  417.   0xfc,0xfc,0xf8,0xc2,0xf9,0x5e,0xfb,0xfb,0xfe,0xc7,0xff,0x00,0x09,0x40,0x13,0xf8,
  418.   0xf0,0xe6,0xec,0xec,0xe4,0xe4,0x30,0x00,0xc0,0xf8,0xf8,0xf2,0xf2,0xe0,0xe4,0xc8,
  419.   0x89,0x11,0x33,0x08,0x40,0x07,0x07,0x0f,0x9f,0x8f,0xcf,0xe7,0xe7,0xe3,0xc4,0xf3,
  420.   0x48,0xe3,0x10,0x50,0x0f,0x3f,0xca,0xff,0x28,0xd1,0xff,0x40,0x18,0x3f,0x0f,0xcf,
  421.   0xe7,0xe3,0xf3,0x73,0x79,0x00,0x00,0x1e,0x3f,0x3e,0x3c,0x00,0xc1,0xf0,0xe0,0xc1,
  422.   0x07,0x0f,0x1f,0x3f,0x7f,0x7f,0xc8,0xff,0x60,0xe7,0xe3,0xf3,0xf1,0xc2,0xf8,0xc3,
  423.   0xfc,0xc9,0xff,0x40,0x07,0x7f,0x7f,0x3f,0x1f,0x8f,0xc3,0xf0,0xf8,0xc2,0xff,0xc5,
  424.   0x7f,0x78,0x0f,0x03,0x30,0x78,0x1e,0x1f,0x4f,0xca,0xff,0x70,0xfb,0xf3,0xe2,0xc0,
  425.   0x0f,0x1f,0xdf,0xff,0x40,0x3c,0xfc,0xf8,0xf1,0x83,0x01,0x78,0xbc,0x9e,0xce,0xc7,
  426.   0xe7,0xf3,0x73,0x33,0x10,0x84,0x3f,0x3f,0xff,0x7c,0x30,0x0f,0x8f,0x9e,0x9c,0x1c,
  427.   0x3c,0x01,0x01,0x43,0xc3,0xc3,0x63,0x27,0x07,0x87,0xc7,0x47,0x27,0x27,0x93,0x13,
  428.   0x43,0xc3,0x83,0x07,0x27,0x67,0x73,0x73,0xf3,0x81,0x01,0x01,0xe0,0x40,0x08,0x1c,
  429.   0x3d,0xfd,0xfd,0xc3,0xf9,0x50,0xf8,0xfc,0xc3,0xfe,0x68,0xfc,0xbc,0x38,0x70,0x40,
  430.   0x08,0x68,0x3c,0xff,0xff,0x0f,0x1f,0xc6,0xff,0x70,0x3f,0x3f,0xff,0xff,0x7f,0x1f,
  431.   0x08,0x48,0xe0,0xe3,0xff,0x40,0x07,0xfc,0x38,0x03,0xc3,0xe7,0xe7,0xe4,0xe6,0xc2,
  432.   0xe7,0x58,0xc0,0xc0,0x80,0x08,0x50,0x3e,0x7f,0xc4,0xff,0x40,0x16,0xfe,0xfe,0xfc,
  433.   0xf8,0xf0,0xe0,0xc6,0x03,0x01,0x78,0xfc,0xfe,0xff,0xff,0xfe,0xfc,0xf8,0xf1,0xf3,
  434.   0xe3,0xe6,0xe6,0xce,0xc3,0xcc,0x40,0x07,0xce,0x0e,0x0f,0xe7,0xf4,0xf0,0x01,0x0f,
  435.   0xc2,0xff,0x40,0x0f,0x0f,0x1f,0x07,0x07,0x3f,0x1f,0x9f,0x9f,0xdf,0xff,0xfe,0xfc,
  436.   0xf8,0xf0,0xc0,0x80,0x08,0x50,0x41,0xcf,0xc2,0x9f,0x40,0x07,0x8f,0xcf,0xc7,0xe2,
  437.   0xf1,0xf1,0xf8,0xfe,0xe5,0xff,0x68,0xf4,0x80,0x01,0x7b,0xfb,0xc2,0xf3,0x40,0x0b,
  438.   0xe7,0xe7,0xcf,0x8f,0x1f,0x3f,0x7f,0xfe,0xfc,0xf0,0xe3,0xcf,0xc6,0xff,0x58,0x5f,
  439.   0x1f,0x3f,0x08,0x48,0xc0,0xd2,0xff,0x40,0x10,0xfc,0xf8,0xf1,0xe3,0xe7,0xe4,0xe7,
  440.   0xe3,0xf0,0xf8,0xfe,0xfe,0xf0,0xc0,0x07,0x3f,0x7f,0xc7,0xff,0x60,0xfe,0x60,0x01,
  441.   0x1f,0xf1,0xff,0x08,0x40,0x12,0xfc,0xf8,0xf1,0xe3,0xc7,0xcf,0x9f,0x9f,0x1f,0x1f,
  442.   0x1e,0x1e,0x18,0x31,0x33,0x47,0x8f,0x9f,0x3f,0xc4,0xff,0x60,0xfe,0xf8,0x00,0x07,
  443.   0xe2,0xff,0x68,0xfe,0xfc,0xf9,0xf1,0xf3,0xc4,0xe7,0x58,0xf3,0xf0,0xf8,0xca,0xff,
  444.   0x50,0x7f,0x3f,0xd7,0xff,0x08,0xc2,0xff,0x08,0xc2,0xff,0x10,0xc3,0xff,0x19,0xff,
  445.   0x08,0xc1,0xff,0x20,0x60,0xfe,0xfe,0xf8,0xf0,0xc2,0xe0,0x40,0x0a,0xc0,0xc8,0xca,
  446.   0xc8,0xc9,0xcb,0x93,0x83,0xc4,0xc0,0xf3,0xee,0xff,0x68,0xfb,0xfd,0x4c,0x24,0x00,
  447.   0xc2,0x01,0x60,0x47,0x73,0x1b,0x01,0x08,0x70,0x20,0x18,0xcf,0x07,0x87,0x5f,0xc9,
  448.   0xff,0x08,0xc7,0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,
  449.   0x07,0x4f,0xff,0xf4,0xff,0x60,0xfd,0xfc,0xf0,0xf9,0xc2,0xfc,0x40,0x0c,0xf8,0xf8,
  450.   0xfc,0xfa,0xf0,0xf8,0xfe,0xfd,0xfc,0xfe,0xf8,0xf8,0xfc,0xd1,0xff,0x08,0xc6,0xff,
  451.   0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xd3,0xff,0x08,0xd2,
  452.   0xff,0x09,0xff,0x09,0xff,0x09,0xff,0x00,0x09,0x4f,0xff,0xcf,0xff,0x00,0xbf,0xc1,
  453.   0xff,0x00,0x5f,0xd4,0xff,0x40,0x10,0x7f,0x3f,0x3f,0x9f,0x9f,0xcf,0xcf,0xe7,0xe7,
  454.   0xf7,0xe7,0xe7,0xcf,0x9f,0x1f,0x3f,0x7f,0xc3,0xff,0xc4,0x7f,0xc7,0x3f,0xc3,0x7f,
  455.   0x00,0x44,0x78,0xf3,0xe3,0xcb,0x9b,0x9b,0x33,0x73,0xc4,0x33,0xc5,0x73,0x60,0xf1,
  456.   0xf0,0xf0,0xf2,0xce,0xf3,0xc5,0xf0,0xc3,0xf2,0x40,0x0e,0xe3,0xc3,0x83,0x13,0x63,
  457.   0x13,0x23,0x93,0x96,0x8e,0xce,0xe6,0xe2,0xf0,0xf9,0x00,0x45,0x40,0x0b,0xff,0xff,
  458.   0x7e,0x3e,0x9c,0xc9,0xa1,0x23,0x33,0x79,0x79,0xfc,0xc3,0xfe,0xc2,0xfc,0x48,0xfd,
  459.   0xc2,0xf9,0x40,0x0e,0xfb,0xf3,0xf3,0xf7,0xe7,0xe7,0xef,0xcf,0xcf,0x9f,0x9f,0xbf,
  460.   0x3f,0x3f,0x7f,0xc3,0xff,0x23,0xfc,0xf0,0x01,0x00,0x49,0x40,0x07,0xff,0x7f,0x1f,
  461.   0x87,0xe3,0xf1,0xfc,0xfe,0x1c,0xff,0xdf,0x07,0x02,0x13,0x01,0xf3,0xfb,0x08,0x60,
  462.   0xe7,0xe7,0x27,0x07,0xc4,0x03,0x50,0x33,0xf3,0xc5,0xfb,0x48,0xf7,0x18,0x40,0x0c,
  463.   0xfe,0xfc,0xf0,0xe1,0x81,0x13,0x27,0x6f,0x1f,0x3f,0x7f,0x1f,0x80,0x00,0x47,0x40,
  464.   0x11,0x3f,0x01,0xc0,0x06,0x03,0x73,0xe7,0xe7,0xcf,0xcf,0x9f,0x1f,0x31,0x40,0x80,
  465.   0x80,0xc0,0xf0,0x28,0x48,0x8f,0xc5,0x00,0x50,0x80,0xf0,0x00,0x08,0x40,0x09,0xff,
  466.   0x7f,0x3f,0xbf,0x9f,0x3f,0x3f,0x7c,0x80,0x03,0xc3,0xff,0x00,0x43,0xc4,0xff,0x40,
  467.   0x09,0xe0,0x00,0x3f,0xff,0xfe,0xfc,0xf8,0xf9,0xf3,0xf3,0xc2,0xe7,0x60,0xce,0xcc,
  468.   0xed,0xf9,0x00,0x07,0x68,0xfe,0x7e,0x7e,0x7e,0x7f,0x00,0x0a,0x40,0x0f,0xe0,0xc0,
  469.   0x9f,0xb1,0xb0,0xb8,0x92,0xc2,0x04,0x04,0xc8,0x89,0x33,0xc7,0x8f,0x3f,0xd6,0xff,
  470.   0x00,0x0f,0xe0,0xff,0x78,0xfe,0xf0,0xc1,0x87,0x1f,0x3f,0x7f,0xcb,0xff,0x70,0xe7,
  471.   0xe3,0xf1,0xf9,0xfc,0xfc,0xc3,0xfe,0xcd,0xff,0x40,0x14,0x7f,0x3f,0x0f,0x83,0xe0,
  472.   0x08,0x03,0xf3,0xf9,0xf8,0xf8,0xf9,0xf8,0xf8,0xf3,0xf3,0xe7,0xc7,0x8f,0x1f,0x7f,
  473.   0xff,0xff,0xc2,0xff,0x40,0x0e,0x7f,0x3f,0x1e,0x9c,0xd8,0x09,0x03,0x73,0xe7,0xe7,
  474.   0xc7,0xcf,0x0f,0x0f,0x9f,0xc3,0x1f,0xc5,0x3f,0xc3,0x1f,0x40,0x09,0x9f,0x9f,0x8f,
  475.   0xcf,0x4f,0x07,0x87,0xe3,0xf3,0xf1,0xc2,0xf8,0xc2,0xf9,0xc2,0xf8,0x58,0xfc,0xfc,
  476.   0xfd,0xc3,0xff,0x48,0x7f,0xc2,0xff,0x50,0xfe,0x78,0x08,0x48,0x83,0xff,0xff,0x40,
  477.   0x0c,0xe0,0xc0,0x8e,0x9f,0x1f,0x07,0x63,0xf0,0xf8,0x08,0xc1,0xe1,0xf1,0x0a,0xe4,
  478.   0x67,0x10,0x40,0x0b,0x0f,0x38,0x70,0x03,0x81,0xf8,0x0e,0x02,0x80,0x8c,0x9f,0x9c,
  479.   0x08,0x40,0x0d,0x03,0xff,0xff,0xf0,0xe0,0xcf,0x8f,0x0f,0x67,0xe7,0xf7,0x7b,0x7c,
  480.   0xfc,0xc8,0xff,0x48,0x3f,0x08,0x78,0xe0,0xe7,0xf3,0xf3,0xf9,0xfc,0xfe,0xff,0xff,
  481.   0xc5,0xff,0x48,0xfe,0xc2,0xfc,0x68,0xe0,0xc0,0x8c,0x3c,0x70,0xc7,0xf0,0xc1,0xf3,
  482.   0xc2,0xf0,0xc2,0xf8,0x40,0x18,0x20,0x02,0xe7,0x83,0x01,0x70,0xf8,0xff,0xfe,0xfc,
  483.   0xfc,0xf8,0xf0,0xf3,0xf3,0xe3,0xe1,0x85,0x07,0xe7,0xf3,0xf3,0xf9,0xfc,0xfe,0xff,
  484.   0xff,0xce,0xff,0x50,0x0f,0x07,0xc4,0xf3,0x68,0xf0,0xf0,0xf1,0xf3,0xf3,0xc2,0xe7,
  485.   0x60,0xcf,0xcf,0x9f,0xbf,0xc2,0xff,0x40,0x0b,0xf3,0xf9,0xf8,0xf4,0xf4,0xf1,0xe6,
  486.   0xe0,0x81,0x13,0x67,0xe7,0xc5,0xcf,0x58,0xe7,0xe1,0xf0,0xdc,0xff,0x50,0x7f,0x3f,
  487.   0xd7,0xff,0x08,0xc2,0xff,0x08,0xc2,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,
  488.   0x00,0x07,0x40,0x0a,0xff,0xfe,0xf8,0xe1,0xc3,0xc7,0x87,0x8f,0x8f,0x9f,0x1f,0xc6,
  489.   0x3f,0xc3,0x9f,0x58,0xcf,0xcf,0x8f,0xc2,0x9f,0x70,0x9b,0xcb,0xc9,0xc1,0xe0,0xf0,
  490.   0xda,0xff,0x68,0xfb,0xfd,0x4c,0x24,0x00,0xc2,0x01,0x60,0x47,0x73,0x1b,0x01,0x08,
  491.   0x70,0x20,0x18,0xcf,0x07,0x87,0x5f,0xc9,0xff,0x08,0xc7,0xff,0x08,0xc6,0xff,0x10,
  492.   0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xf4,0xff,0x60,0xfd,0xfc,
  493.   0xf0,0xf9,0xc2,0xfc,0x40,0x0c,0xf8,0xf8,0xfc,0xfa,0xf0,0xf8,0xfe,0xfd,0xfc,0xfe,
  494.   0xf8,0xf8,0xfc,0xd1,0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,
  495.   0x00,0x07,0x4f,0xff,0xd3,0xff,0x08,0xd2,0xff,0x09,0xff,0x09,0xff,0x09,0xff,0x00,
  496.   0x09,0x4f,0xff,0xcf,0xff,0x00,0xff,0x00,0x34,0x40,0x09,0x7f,0x3f,0x9f,0x9f,0xcf,
  497.   0xc7,0xe7,0xf3,0xf3,0xfb,0xc2,0xf9,0x40,0x07,0xf3,0xf3,0xe7,0xcf,0x8f,0x1f,0x3f,
  498.   0x7f,0xc3,0x3f,0xcd,0x9f,0x60,0xbf,0x3f,0x7f,0x7f,0x00,0x40,0x40,0x0a,0xfe,0xfc,
  499.   0xf8,0xf2,0xe4,0xcc,0x9c,0x9c,0x0c,0x5c,0x5c,0xc2,0xdc,0x48,0x9c,0xc2,0x1c,0x48,
  500.   0xbc,0xc3,0x3c,0xc3,0x7d,0xc7,0xfd,0xcb,0xfc,0x40,0x0f,0xf9,0xf9,0xf1,0xc1,0x0d,
  501.   0x11,0xc5,0xc1,0xc5,0xe5,0xe7,0xf3,0xf1,0xf8,0xfc,0xfe,0x00,0x45,0x40,0x0c,0x7f,
  502.   0x3f,0x9f,0xcf,0xe7,0xe2,0xe2,0xc8,0x9c,0x9e,0x3e,0x3f,0x7f,0xc5,0xff,0xc2,0xfe,
  503.   0xc2,0xfc,0x40,0x0f,0xfd,0xf9,0xf9,0xfb,0xf3,0xf3,0xe7,0xe7,0xef,0xcf,0xcf,0x9f,
  504.   0x9f,0x3f,0x7f,0x7f,0x2c,0xff,0xf8,0xc0,0x07,0x00,0x49,0x7b,0x1f,0x07,0xe3,0xf8,
  505.   0xfc,0xfe,0xff,0x62,0x7f,0x7f,0x01,0x00,0x59,0xc0,0xfc,0xfd,0x58,0xfb,0xf9,0x19,
  506.   0xc2,0x01,0xc2,0x00,0x48,0x0c,0xc5,0xfc,0x93,0xfd,0x40,0x0c,0xff,0xff,0xfc,0xf0,
  507.   0xc0,0x04,0x19,0xd3,0xc7,0x8f,0x9f,0xc7,0xe0,0x00,0x47,0x40,0x11,0x0f,0x00,0xf0,
  508.   0xc1,0x89,0x39,0x79,0x71,0xf3,0xe3,0xe7,0xcf,0x88,0x00,0x20,0x60,0xf0,0xfc,0x2a,
  509.   0xe3,0x80,0x1c,0x80,0xc0,0xe0,0xf8,0x00,0x08,0x50,0x3f,0x1f,0xc3,0xcf,0x68,0x1f,
  510.   0x3e,0xe0,0x01,0x7f,0x00,0x4b,0x59,0xf0,0x80,0x0f,0x68,0xff,0xff,0xfe,0xfc,0xfc,
  511.   0xc2,0xf9,0xc2,0xf3,0x50,0xf2,0xfe,0x00,0x07,0x60,0xff,0x7f,0x7f,0x7f,0x00,0x0b,
  512.   0x40,0x0b,0xf0,0xe0,0xef,0xc8,0xc0,0xc4,0x0c,0x38,0xf0,0xc0,0x0e,0x3f,0xc3,0xff,
  513.   0x00,0x26,0xe1,0xff,0x40,0x07,0xfc,0xf0,0xe3,0xc7,0x9f,0x3f,0x7f,0x7f,0xc9,0xff,
  514.   0x40,0x0c,0xf7,0xf3,0xf9,0x78,0x3c,0x1c,0x8e,0xce,0xe6,0xe6,0xe4,0x67,0x67,0xc3,
  515.   0xe7,0x60,0xcf,0xcf,0xc7,0x87,0xc4,0xf3,0x40,0x07,0xe3,0xe1,0xe0,0xcf,0x87,0x80,
  516.   0x38,0x7f,0xff,0xff,0xcf,0xff,0x40,0x10,0x3f,0x0f,0xce,0x64,0x24,0x90,0xc1,0xc1,
  517.   0x43,0x63,0x27,0x27,0x07,0x07,0x87,0x8f,0x01,0x08,0x40,0x08,0x1e,0x0f,0xe7,0xf3,
  518.   0xf9,0x7c,0x3e,0x9e,0xdf,0xd2,0xff,0x50,0xfe,0xf8,0x08,0x48,0x03,0xff,0xff,0xcd,
  519.   0xff,0x40,0x24,0xf8,0x30,0x03,0x0c,0x10,0x23,0x09,0x8c,0xcc,0xc6,0xe2,0xf0,0xf8,
  520.   0xfe,0xff,0x7f,0x7f,0xfe,0xe0,0xc0,0xe3,0xe3,0xc0,0x1c,0x9f,0x07,0x23,0x39,0x7c,
  521.   0x3f,0x3f,0xbf,0x1f,0x0f,0x87,0x83,0x01,0x08,0x68,0xc1,0xcf,0x0f,0x0f,0xcf,0xc2,
  522.   0xe7,0x60,0xf3,0xf1,0xf8,0xfc,0xff,0xff,0xcf,0xff,0x40,0x0b,0xfc,0x7c,0x18,0x89,
  523.   0xc1,0xe1,0xf1,0xf9,0xf9,0xfd,0xfc,0xfc,0xc2,0xfe,0xc2,0xff,0x40,0x11,0x7f,0x03,
  524.   0x82,0x02,0x21,0x58,0xd8,0xcc,0xce,0xec,0xe0,0xe1,0xf3,0xf2,0xf8,0xf8,0xfc,0xfe,
  525.   0xc2,0xff,0x40,0x08,0xe0,0xe1,0xe3,0xf3,0xe3,0xe7,0xcf,0x1f,0x7f,0xff,0xff,0xd0,
  526.   0xff,0x68,0xfc,0xf0,0xe1,0xe7,0xc7,0xc2,0xcf,0xc2,0x9f,0x40,0x0e,0x8f,0x8f,0xc7,
  527.   0xc3,0xe3,0xf1,0xf8,0xfe,0x0f,0x07,0xe6,0xf0,0xf0,0xf1,0xf1,0xc8,0xf9,0xc1,0xfb,
  528.   0xc2,0xff,0x40,0x07,0x7f,0x3f,0x0f,0x37,0x11,0x84,0xc0,0xf8,0xd7,0xff,0x50,0x7f,
  529.   0x3f,0xd7,0xff,0x08,0xc2,0xff,0x08,0xc2,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,
  530.   0xff,0x00,0x07,0x4f,0xff,0xcb,0xff,0x68,0xfe,0xf8,0xf1,0xe3,0xc7,0xc3,0x8f,0x40,
  531.   0x0c,0x87,0x87,0x97,0x97,0xcb,0xcf,0xcf,0xc7,0xe7,0xe3,0xf1,0xf9,0xfc,0xc2,0xfe,
  532.   0xcf,0xff,0x68,0xfb,0xfd,0x4c,0x24,0x00,0xc2,0x01,0x61,0x47,0x73,0x1b,0x01,0x70,
  533.   0x20,0x18,0xcf,0x07,0x87,0x5f,0xc9,0xff,0x08,0xc7,0xff,0x08,0xc6,0xff,0x10,0xc3,
  534.   0xff,0x19,0xff,0x08,0xc1,0xff,0x00,0x07,0x4f,0xff,0xf4,0xff,0x60,0xfd,0xfc,0xf0,
  535.   0xf9,0xc2,0xfc,0x40,0x0c,0xf8,0xf8,0xfc,0xfa,0xf0,0xf8,0xfe,0xfd,0xfc,0xfe,0xf8,
  536.   0xf8,0xfc,0xd1,0xff,0x08,0xc6,0xff,0x10,0xc3,0xff,0x19,0xff,0x08,0xc1,0xff,0x00,
  537.   0x07,0x4f,0xff,0xd3,0xff,0x08,0xd2,0xff,0x09,0xff,0x09,0xff,0x09,0xff,0x00,0x09,
  538.   0x4f,0xff,0xcf,0xff
  539. };
  540. #endif
  541. SSOLED ssoled; // single display structure
  542. void setup() {
  543. int rc;
  544.   rc = oledInit(&ssoled, OLED_TYPE, OLED_ADDR, FLIP180, INVERT, USE_HW_I2C, SDA_PIN, SCL_PIN, RESET_PIN, 400000L);
  545. } /* setup() */
  546. void loop() {
  547. uint8_t *pAnim = (uint8_t *)bAnimation; // point to first frame
  548.   while (1)
  549.   { // play all frames (automatically starts over when it reaches the end)
  550.     pAnim = oledPlayAnimFrame(&ssoled, (uint8_t *)bAnimation, pAnim, sizeof(bAnimation));
  551.     delay(20); // simplistic rate control; should manage the variable time per frame
  552.   }
  553. } /* loop() */
复制代码

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 19:59:41

  【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  项目之三:基于Adafruit_SH1106库的标准屏幕测试

  实验开源代码

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  3.   实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  4.   项目之三:基于Adafruit_SH1106库的标准屏幕测试
  5.   实验接线:
  6.   oled模块    Ardunio Uno
  7.   GND---------GND接地线
  8.   VCC---------5V 接电源
  9.   SDA---------D6
  10.   SCL ------- D4
  11. */
  12. //#include <SPI.h>
  13. #include <Wire.h>
  14. #include <Adafruit_GFX.h>
  15. #include <Adafruit_SH1106.h>
  16. #define OLED_RESET 4
  17. Adafruit_SH1106 display(OLED_RESET);
  18. #define NUMFLAKES 10
  19. #define XPOS 0
  20. #define YPOS 1
  21. #define DELTAY 2
  22. #define LOGO16_GLCD_HEIGHT 16
  23. #define LOGO16_GLCD_WIDTH  16
  24. static const unsigned char PROGMEM logo16_glcd_bmp[] =
  25. { B00000000, B11000000,
  26.   B00000001, B11000000,
  27.   B00000001, B11000000,
  28.   B00000011, B11100000,
  29.   B11110011, B11100000,
  30.   B11111110, B11111000,
  31.   B01111110, B11111111,
  32.   B00110011, B10011111,
  33.   B00011111, B11111100,
  34.   B00001101, B01110000,
  35.   B00011011, B10100000,
  36.   B00111111, B11100000,
  37.   B00111111, B11110000,
  38.   B01111100, B11110000,
  39.   B01110000, B01110000,
  40.   B00000000, B00110000
  41. };
  42. #if (SH1106_LCDHEIGHT != 64)
  43. #error("Height incorrect, please fix Adafruit_SH1106.h!");
  44. #endif
  45. void setup()   {
  46.   Serial.begin(9600);
  47.   // by default, we'll generate the high voltage from the 3.3v line internally! (neat!)
  48.   display.begin(SH1106_SWITCHCAPVCC, 0x3C);  // initialize with the I2C addr 0x3D (for the 128x64)
  49.   // init done
  50.   // Show image buffer on the display hardware.
  51.   // Since the buffer is intialized with an Adafruit splashscreen
  52.   // internally, this will display the splashscreen.
  53.   display.display();
  54.   delay(2000);
  55.   // Clear the buffer.
  56.   display.clearDisplay();
  57.   // draw a single pixel
  58.   display.drawPixel(10, 10, WHITE);
  59.   // Show the display buffer on the hardware.
  60.   // NOTE: You _must_ call display after making any drawing commands
  61.   // to make them visible on the display hardware!
  62.   display.display();
  63.   delay(2000);
  64.   display.clearDisplay();
  65.   // draw many lines
  66.   testdrawline();
  67.   display.display();
  68.   delay(2000);
  69.   display.clearDisplay();
  70.   // draw rectangles
  71.   testdrawrect();
  72.   display.display();
  73.   delay(2000);
  74.   display.clearDisplay();
  75.   // draw multiple rectangles
  76.   testfillrect();
  77.   display.display();
  78.   delay(2000);
  79.   display.clearDisplay();
  80.   // draw mulitple circles
  81.   testdrawcircle();
  82.   display.display();
  83.   delay(2000);
  84.   display.clearDisplay();
  85.   // draw a white circle, 10 pixel radius
  86.   display.fillCircle(display.width() / 2, display.height() / 2, 10, WHITE);
  87.   display.display();
  88.   delay(2000);
  89.   display.clearDisplay();
  90.   testdrawroundrect();
  91.   delay(2000);
  92.   display.clearDisplay();
  93.   testfillroundrect();
  94.   delay(2000);
  95.   display.clearDisplay();
  96.   testdrawtriangle();
  97.   delay(2000);
  98.   display.clearDisplay();
  99.   testfilltriangle();
  100.   delay(2000);
  101.   display.clearDisplay();
  102.   // draw the first ~12 characters in the font
  103.   testdrawchar();
  104.   display.display();
  105.   delay(2000);
  106.   display.clearDisplay();
  107.   // draw scrolling text
  108.   /* testscrolltext();
  109.     delay(2000);
  110.     display.clearDisplay();*/
  111.   // text display tests
  112.   display.setTextSize(1);
  113.   display.setTextColor(WHITE);
  114.   display.setCursor(0, 0);
  115.   display.println("Hello, world!");
  116.   display.setTextColor(BLACK, WHITE); // 'inverted' text
  117.   display.println(3.141592);
  118.   display.setTextSize(2);
  119.   display.setTextColor(WHITE);
  120.   display.print("0x"); display.println(0xDEADBEEF, HEX);
  121.   display.display();
  122.   delay(2000);
  123.   // miniature bitmap display
  124.   display.clearDisplay();
  125.   display.drawBitmap(30, 16,  logo16_glcd_bmp, 16, 16, 1);
  126.   display.display();
  127.   // invert the display
  128.   display.invertDisplay(true);
  129.   delay(1000);
  130.   display.invertDisplay(false);
  131.   delay(1000);
  132.   // draw a bitmap icon and 'animate' movement
  133.   testdrawbitmap(logo16_glcd_bmp, LOGO16_GLCD_HEIGHT, LOGO16_GLCD_WIDTH);
  134. }
  135. void loop() {
  136. }
  137. void testdrawbitmap(const uint8_t *bitmap, uint8_t w, uint8_t h) {
  138.   uint8_t icons[NUMFLAKES][3];
  139.   // initialize
  140.   for (uint8_t f = 0; f < NUMFLAKES; f++) {
  141.     icons[f][XPOS] = random(display.width());
  142.     icons[f][YPOS] = 0;
  143.     icons[f][DELTAY] = random(5) + 1;
  144.     Serial.print("x: ");
  145.     Serial.print(icons[f][XPOS], DEC);
  146.     Serial.print(" y: ");
  147.     Serial.print(icons[f][YPOS], DEC);
  148.     Serial.print(" dy: ");
  149.     Serial.println(icons[f][DELTAY], DEC);
  150.   }
  151.   while (1) {
  152.     // draw each icon
  153.     for (uint8_t f = 0; f < NUMFLAKES; f++) {
  154.       display.drawBitmap(icons[f][XPOS], icons[f][YPOS], logo16_glcd_bmp, w, h, WHITE);
  155.     }
  156.     display.display();
  157.     delay(200);
  158.     // then erase it + move it
  159.     for (uint8_t f = 0; f < NUMFLAKES; f++) {
  160.       display.drawBitmap(icons[f][XPOS], icons[f][YPOS],  logo16_glcd_bmp, w, h, BLACK);
  161.       // move it
  162.       icons[f][YPOS] += icons[f][DELTAY];
  163.       // if its gone, reinit
  164.       if (icons[f][YPOS] > display.height()) {
  165.         icons[f][XPOS] = random(display.width());
  166.         icons[f][YPOS] = 0;
  167.         icons[f][DELTAY] = random(5) + 1;
  168.       }
  169.     }
  170.   }
  171. }
  172. void testdrawchar(void) {
  173.   display.setTextSize(1);
  174.   display.setTextColor(WHITE);
  175.   display.setCursor(0, 0);
  176.   for (uint8_t i = 0; i < 168; i++) {
  177.     if (i == '\n') continue;
  178.     display.write(i);
  179.     if ((i > 0) && (i % 21 == 0))
  180.       display.println();
  181.   }
  182.   display.display();
  183. }
  184. void testdrawcircle(void) {
  185.   for (int16_t i = 0; i < display.height(); i += 2) {
  186.     display.drawCircle(display.width() / 2, display.height() / 2, i, WHITE);
  187.     display.display();
  188.   }
  189. }
  190. void testfillrect(void) {
  191.   uint8_t color = 1;
  192.   for (int16_t i = 0; i < display.height() / 2; i += 3) {
  193.     // alternate colors
  194.     display.fillRect(i, i, display.width() - i * 2, display.height() - i * 2, color % 2);
  195.     display.display();
  196.     color++;
  197.   }
  198. }
  199. void testdrawtriangle(void) {
  200.   for (int16_t i = 0; i < min(display.width(), display.height()) / 2; i += 5) {
  201.     display.drawTriangle(display.width() / 2, display.height() / 2 - i,
  202.                          display.width() / 2 - i, display.height() / 2 + i,
  203.                          display.width() / 2 + i, display.height() / 2 + i, WHITE);
  204.     display.display();
  205.   }
  206. }
  207. void testfilltriangle(void) {
  208.   uint8_t color = WHITE;
  209.   for (int16_t i = min(display.width(), display.height()) / 2; i > 0; i -= 5) {
  210.     display.fillTriangle(display.width() / 2, display.height() / 2 - i,
  211.                          display.width() / 2 - i, display.height() / 2 + i,
  212.                          display.width() / 2 + i, display.height() / 2 + i, WHITE);
  213.     if (color == WHITE) color = BLACK;
  214.     else color = WHITE;
  215.     display.display();
  216.   }
  217. }
  218. void testdrawroundrect(void) {
  219.   for (int16_t i = 0; i < display.height() / 2 - 2; i += 2) {
  220.     display.drawRoundRect(i, i, display.width() - 2 * i, display.height() - 2 * i, display.height() / 4, WHITE);
  221.     display.display();
  222.   }
  223. }
  224. void testfillroundrect(void) {
  225.   uint8_t color = WHITE;
  226.   for (int16_t i = 0; i < display.height() / 2 - 2; i += 2) {
  227.     display.fillRoundRect(i, i, display.width() - 2 * i, display.height() - 2 * i, display.height() / 4, color);
  228.     if (color == WHITE) color = BLACK;
  229.     else color = WHITE;
  230.     display.display();
  231.   }
  232. }
  233. void testdrawrect(void) {
  234.   for (int16_t i = 0; i < display.height() / 2; i += 2) {
  235.     display.drawRect(i, i, display.width() - 2 * i, display.height() - 2 * i, WHITE);
  236.     display.display();
  237.   }
  238. }
  239. void testdrawline() {
  240.   for (int16_t i = 0; i < display.width(); i += 4) {
  241.     display.drawLine(0, 0, i, display.height() - 1, WHITE);
  242.     display.display();
  243.   }
  244.   for (int16_t i = 0; i < display.height(); i += 4) {
  245.     display.drawLine(0, 0, display.width() - 1, i, WHITE);
  246.     display.display();
  247.   }
  248.   delay(250);
  249.   display.clearDisplay();
  250.   for (int16_t i = 0; i < display.width(); i += 4) {
  251.     display.drawLine(0, display.height() - 1, i, 0, WHITE);
  252.     display.display();
  253.   }
  254.   for (int16_t i = display.height() - 1; i >= 0; i -= 4) {
  255.     display.drawLine(0, display.height() - 1, display.width() - 1, i, WHITE);
  256.     display.display();
  257.   }
  258.   delay(250);
  259.   display.clearDisplay();
  260.   for (int16_t i = display.width() - 1; i >= 0; i -= 4) {
  261.     display.drawLine(display.width() - 1, display.height() - 1, i, 0, WHITE);
  262.     display.display();
  263.   }
  264.   for (int16_t i = display.height() - 1; i >= 0; i -= 4) {
  265.     display.drawLine(display.width() - 1, display.height() - 1, 0, i, WHITE);
  266.     display.display();
  267.   }
  268.   delay(250);
  269.   display.clearDisplay();
  270.   for (int16_t i = 0; i < display.height(); i += 4) {
  271.     display.drawLine(display.width() - 1, 0, 0, i, WHITE);
  272.     display.display();
  273.   }
  274.   for (int16_t i = 0; i < display.width(); i += 4) {
  275.     display.drawLine(display.width() - 1, 0, i, display.height() - 1, WHITE);
  276.     display.display();
  277.   }
  278.   delay(250);
  279. }
  280. /*void testscrolltext(void) {
  281.   display.setTextSize(2);
  282.   display.setTextColor(WHITE);
  283.   display.setCursor(10,0);
  284.   display.clearDisplay();
  285.   display.println("scroll");
  286.   display.display();
  287.   display.startscrollright(0x00, 0x0F);
  288.   delay(2000);
  289.   display.stopscroll();
  290.   delay(1000);
  291.   display.startscrollleft(0x00, 0x0F);
  292.   delay(2000);
  293.   display.stopscroll();
  294.   delay(1000);
  295.   display.startscrolldiagright(0x00, 0x07);
  296.   delay(2000);
  297.   display.startscrolldiagleft(0x00, 0x07);
  298.   delay(2000);
  299.   display.stopscroll();
  300.   }*/
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-27 11:08:52

  【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  项目之五:I2C 检测器 - 使用 BitBang_I2C 库扫描和识别 I2C 总线上的设备

  实验开源代码

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  3.   实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  4.   项目之五:I2C 检测器 - 使用 BitBang_I2C 库扫描和识别 I2C 总线上的设备
  5.   实验接线:
  6.   oled模块    Ardunio Uno
  7.   GND---------GND接地线
  8.   VCC---------5V 接电源
  9.   SDA---------D6
  10.   SCL ------- D4
  11. */
  12. // I2C Detector - scan and identify devices on an I2C bus using the BitBang_I2C library
  13. //
  14. // The purpose of this code is to provide a sample sketch which can serve
  15. // to detect not only the addresses of I2C devices, but what type of device each one is.
  16. // So far, I've added the 25 devices I've personally used or found to be reliably detected
  17. // based on their register contents. I encourage people to do pull requests to add support
  18. // for more devices to make this code have wider appeal.
  19. // There are plenty of I2C devices which appear at fixed addresses, yet don't have unique
  20. // "Who_Am_I" registers or other data to reliably identify them. It's certainly possible to
  21. // write code which initializes these devices and tries to verify their identity. This can
  22. // potentially damage them and would necessarily increase the code size. I would like to keep
  23. // the size of this code small enough so that it can be included in many microcontroller
  24. // projects where code space is scarce.
  25. // Copyright (c) 2019 BitBank Software, Inc.
  26. // Written by Larry Bank
  27. // email: bitbank@pobox.com
  28. // Project started 25/02/2019
  29. //
  30. // This program is free software: you can redistribute it and/or modify
  31. // it under the terms of the GNU General Public License as published by
  32. // the Free Software Foundation, either version 3 of the License, or
  33. // (at your option) any later version.
  34. //
  35. // This program is distributed in the hope that it will be useful,
  36. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  37. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  38. // GNU General Public License for more details.
  39. //
  40. // You should have received a copy of the GNU General Public License
  41. // along with this program.  If not, see <http://www.gnu.org/licenses/>.
  42. //
  43. // Uses my Bit Bang I2C library. You can find it here:
  44. // https://github.com/bitbank2/BitBang_I2C
  45. #include <BitBang_I2C.h>
  46. // Arbitrary pins I used for testing with an ATmega328p
  47. // Define as -1, -1 to use the Wire library over the default I2C interface
  48. #define SDA_PIN A4
  49. #define SCL_PIN A5
  50. // M5Stack Atom Grove connector pin assignments
  51. //#define SDA_PIN 32
  52. //#define SCL_PIN 26
  53. // M5Stack Atom internal I2C connected to the IMU
  54. //#define SDA_PIN 25
  55. //#define SCL_PIN 21
  56. // M5Stack Core2 internal I2C
  57. #define SDA_PIN 8
  58. #define SCL_PIN 9
  59. //
  60. // If you don't need the explicit device names displayed, disable this code by
  61. // commenting out the next line
  62. //
  63. #define SHOW_NAME
  64. #ifdef SHOW_NAME
  65. const char *szNames[]  = {"Unknown","SSD1306","SH1106","VL53L0X","BMP180", "BMP280","BME280",
  66.                 "MPU-60x0", "MPU-9250", "MCP9808","LSM6DS3", "ADXL345", "ADS1115","MAX44009",
  67.                 "MAG3110", "CCS811", "HTS221", "LPS25H", "LSM9DS1","LM8330", "DS3231", "LIS3DH",
  68.                 "LIS3DSH","INA219","SHT3X","HDC1080","MPU6886","BME680", "AXP202", "AXP192", "24AA02XEXX",
  69.                 "DS1307", "MPU688X", "FT6236G", "FT6336G", "FT6336U", "FT6436", "BM8563","BNO055"};
  70. #endif
  71. BBI2C bbi2c;
  72. void setup() {
  73.   Serial.begin(115200);
  74.   memset(&bbi2c, 0, sizeof(bbi2c));
  75.   bbi2c.bWire = 0; // use bit bang, not wire library
  76.   bbi2c.iSDA = SDA_PIN;
  77.   bbi2c.iSCL = SCL_PIN;
  78.   I2CInit(&bbi2c, 100000L);
  79.   delay(100); // allow devices to power up
  80. }
  81. void loop() {
  82. uint8_t map[16];
  83. uint8_t i;
  84. int iDevice, iCount;
  85.   Serial.println("Starting I2C Scan");
  86.   I2CScan(&bbi2c, map); // get bitmap of connected I2C devices
  87.   if (map[0] == 0xfe) // something is wrong with the I2C bus
  88.   {
  89.     Serial.println("I2C pins are not correct or the bus is being pulled low by a bad device; unable to run scan");
  90.   }
  91.   else
  92.   {
  93.     iCount = 0;
  94.     for (i=1; i<128; i++) // skip address 0 (general call address) since more than 1 device can respond
  95.     {
  96.       if (map[i>>3] & (1 << (i & 7))) // device found
  97.       {
  98.         iCount++;
  99.         Serial.print("Device found at 0x");
  100.         Serial.print(i, HEX);
  101.         iDevice = I2CDiscoverDevice(&bbi2c, i);
  102.         Serial.print(", type = ");
  103.   #ifdef SHOW_NAME
  104.         Serial.println(szNames[iDevice]); // show the device name as a string
  105.   #else
  106.         Serial.println(iDevice); // show the device name as the enum index
  107.   #endif
  108.       }
  109.     } // for i
  110.     Serial.print(iCount, DEC);
  111.     Serial.println(" device(s) found");
  112.   }
  113.   delay(5000);
  114. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 13:37:32

SH1106 是一款带有控制器的单芯片 CMOS OLED/PLED 驱动器,用于有机/聚合物发光二极管点阵图形显示系统。 SH1106由132段、64个公共端组成,可支持最大132 X 64的显示分辨率。专为共阴极型 OLED 面板设计。SH1106 内嵌对比度控制、显示 RAM 振荡器和高效的 DC-DC 转换器,减少了外部元件和功耗。 SH1106 适用于各种紧凑型便携式应用,例如手机、计算器、MP3播放器等副显示。

SH1106功能框图

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 13:43:18

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1

SH1106的主要特征
„ 支持最大 132 X 64 点阵面板
„ 嵌入式 132 X 64 位 SRAM
„ 工作电压:
- 逻辑电压供应:VDD1 = 1.65V - 3.5V
- DC-DC 电压供应:VDD2 = 3.0V – 4.2V
- OLED 工作电压供应:
外部 VPP 电源 = 6.4V - 13.0V
内部 VPP 发生器 = 6.4V - 9.0V
„ 最大段输出电流:200μA
„ 最大公共吸收电流:27mA
„ 8 位 6800 系列并行接口,8 位 8080 系列
并行接口,3 线和 4 线串行外设
接口,400KHz快速I2
C总线接口
„ 可编程帧频和复用率
„ 行重映射和列重映射 (ADC)
„ 垂直滚动
„ 片上振荡器
„ 可编程内部电荷泵电路输出
„ 单色无源 OLED 上的 256 级对比度控制
控制板
„ 低功耗
- 睡眠模式:<5μA
- VDD1=0V,VDD2=3.0V – 4.2V: <5μA
- VDD1,2=0V,VPP=3.0V – 4.2V: <5μA
„ 工作温度范围广:-40 至 +85°C
„ 可提供 COG 形式,厚度:300μm

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 14:10:11

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 14:12:05

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 14:12:48

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 14:19:27

I2C接口电路


【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 15:05:38

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图2
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 15:11:51

1.3寸OLED液晶屏  I2C IIC通信 4针模块 1106/1306驱动 132*64像素

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图2
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 15:24:35

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图2
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 15:26:21

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 15:28:56

电原理图

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 15:30:06

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 19:08:49

  【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  项目之一:点亮SH1106屏幕
  实验接线:
  oled模块    Ardunio Uno
  GND---------GND接地线
  VCC---------5V 接电源
  SDA---------D6
  SCL ------- D4

  实验开源代码

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  3.   实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  4.   项目之一:点亮SH1106屏幕
  5.   实验接线:
  6.   oled模块    Ardunio Uno
  7.   GND---------GND接地线
  8.   VCC---------5V 接电源
  9.   SDA---------D6
  10.   SCL ------- D4
  11. */
  12. #include <Wire.h>
  13. #include <sh1106.h>
  14. volatile boolean g_writeValue = false;
  15. volatile int g_displayValue = 0;
  16. sh1106_lcd *g_pLCD = NULL;
  17. void setup() {
  18.   Serial.begin(9600);
  19.   g_pLCD = sh1106_lcd::getInstance();
  20.   if (g_pLCD != NULL)
  21.   {
  22.     g_pLCD->ClearScreen();
  23.   }
  24.   g_writeValue = true;
  25. }
  26. // Quick sketch showing functionality of library
  27. void loop() {
  28.   if (g_writeValue == true) {
  29.     g_pLCD->DrawRectangle(2, 2, 128, 62, 2);// draw a box from 0, 0 to 100, 48
  30.     g_pLCD->DrawRectangle(20, 20, 108, 42, 2);
  31.     g_pLCD->FillRectangle(25, 25, 30, 30);
  32.     g_pLCD->FillRectangle(80, 45, 100, 60);
  33.     g_pLCD->Show();
  34.     delay(1000);
  35.     g_pLCD->PrintLine("0123456789");
  36.     g_pLCD->PrintLine("aBcDEF GHIJK");
  37.     g_pLCD->PrintLine("LMNOP QRSTUV");
  38.     g_pLCD->PrintLine("WXYZ");
  39.     g_pLCD->PrintLine("AAAA");
  40.     g_pLCD->PrintLine("EEEE");
  41.     g_pLCD->PrintLine("FFFF");
  42.     g_pLCD->PrintLine("GGGG");
  43.     delay(1000);
  44.     g_pLCD->PrintLine("HHHH");
  45.     g_pLCD->DrawPixel(10, 2, true);
  46.     g_pLCD->DrawPixel(127, 0, true);
  47.     g_pLCD->DrawPixel(127, 63, true);
  48.     g_pLCD->DrawPixel(10, 63, true);
  49.     g_pLCD->DrawPixel(0, 63, true);
  50.     g_pLCD->DrawPixel(63, 3, true);
  51.     g_pLCD->Show();
  52.     delay(1000);
  53.     g_writeValue = false;
  54.   }
  55.   else {
  56.     g_pLCD->ClearScreen();
  57.     g_pLCD->DrawLine(20, 31, 127, 31);
  58.     g_pLCD->DrawLine(0, 0, 115, 50);
  59.     g_pLCD->DrawLine(50, 50, 20, 20);
  60.     g_pLCD->DrawLine(0, 50, 0, 120);
  61.     g_pLCD->DrawLine(64, 0, 64, 64);
  62.     g_pLCD->DrawLine(0, 80, 6, 110);
  63.     g_pLCD->Show();
  64.     while (1);
  65.   }
  66. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 19:13:30

  实验场景图

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 19:15:14

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图2

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 19:42:28

  【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  项目之二:显示二行字符
  实验接线:
  oled模块    Ardunio Uno
  GND---------GND接地线
  VCC---------5V 接电源
  SDA---------D6
  SCL ------- D4

实验开源仿真编程(Linkboy V4.62)

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 19:44:04

  实验场景图

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 20:18:52

  实验场景图

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图2

【Arduino】168种传感器系列实验(181)---1.3寸OLED液晶屏模块图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-9-26 20:23:59

  【Arduino】168种传感器模块系列实验(资料代码+图形编程+仿真编程)
  实验一百八十一:1.3寸OLED液晶屏 I2C IIC通信 4针模块 1106/1306驱动 132*64像素
  项目之三:基于Adafruit_SH1106库的标准屏幕测试显示

  实验视频剪辑

https://v.youku.com/v_show/id_XNTgwOTMyMTk3Ng==.html?firsttime=0



回复

使用道具 举报

123下一页
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

为本项目制作心愿单
购买心愿单
心愿单 编辑
[[wsData.name]]

硬件清单

  • [[d.name]]
btnicon
我也要做!
点击进入购买页面
上海智位机器人股份有限公司 沪ICP备09038501号-4

© 2013-2024 Comsenz Inc. Powered by Discuz! X3.4 Licensed

mail