查看: 4752|回复: 2

pcduino nokia 5110 便宜的显示LCD

[复制链接]
  • TA的每日心情
    开心
    2013-8-16 17:14
  • 签到天数: 3 天

    连续签到: 1 天

    [LV.2]偶尔看看I

    发表于 2013-8-16 17:21:21 | 显示全部楼层 |阅读模式
    分享到:
    本人移植了NOKia5110的程序到了pcduino上,用的是模拟IO实现,不过I2C协议也是可以的,在本版本还未实现。共三个文件LCD5110.cpp  LCD5110.h LCD5110_Test.c,用的是c_environment 例程。
    1. /* File:LCD5110.cpp
    2. * Version:A001
    3. * Author:Jacob
    4. * Date: 2013.8
    5. * Contact:iamlvshijie@gmail.com
    6. * Usage: this file has no relationship with mcu target,just need to modify LCD5110.h
    7. * History:
    8. * --A001:
    9. *    Initial Release based on mcs-51 codes;
    10. *    Only IO_MODE working;
    11. * */

    12. #include "LCD5110.h"

    13. //LCD5110Class LCD5110();


    14. /*------------Public Function ----------*/
    15. LCD5110Class::LCD5110Class(void)
    16. {
    17.        
    18. }
    19. LCD5110Class::~LCD5110Class(void)
    20. {
    21.        
    22. }
    23. void LCD5110Class::Clear(void)
    24. {
    25.   unsigned int i;

    26.   WriteByte(0x0c, 0);                       
    27.   WriteByte(0x80, 0);               
    28.   
    29.   for (i=0; i<504; i++)
    30.     WriteByte(0, 1);       
    31. }
    32. void LCD5110Class::Init(void)
    33. {
    34.   printf("Init OK!\n");
    35.   LCD_IO_CONF;
    36.        
    37.   //Issue a reset pulse
    38.   LCD_RST_LOW;
    39.     DelayUs(10);
    40.   LCD_RST_HIGH;   
    41.   //Enable LCD
    42.   LCD_CE_LOW;
    43.   DelayUs(1);
    44.   //Disable LCD
    45.   LCD_CE_HIGH;
    46.   DelayUs(1);

    47.   WriteByte(0x21, 0);        // 使用扩展命令设置LCD模式
    48.   WriteByte(0xc8, 0);        // 设置偏置电压
    49.   WriteByte(0x06, 0);        // 温度校正
    50.   WriteByte(0x13, 0);        // 1:48
    51.   WriteByte(0x20, 0);        // 使用基本命令
    52.   Clear();                    // 清屏
    53.   WriteByte(0x0c, 0);        // 设定显示模式,正常显示
    54.         
    55.   //Enable LCD
    56.   LCD_CE_LOW;       
    57. }


    58. /*-------------Private Function ----------*/
    59. void LCD5110Class::WriteByte(unsigned char dat, unsigned char command)
    60. {
    61.   unsigned char i;
    62.   //Enable LCD                         
    63.   LCD_CE_LOW;

    64.   if (command == 0)
    65.     //Command Mode
    66.     LCD_DC_LOW;
    67.   else
    68.    //Data Mode
    69.    LCD_DC_HIGH;
    70.    
    71.   //Send Data
    72.   LCD_SEND_DATA;

    73.   //Disable Lcd
    74.   LCD_CE_HIGH;       
    75. }

    76. void LCD5110Class::SendChar(unsigned char c)
    77. {
    78.     unsigned char line;
    79.     c -= 32;
    80.     for (line=0; line<6; line++)
    81.       WriteByte(font6x8[c][line], 1);         
    82. }
    83. void LCD5110Class::SendString(unsigned char X,unsigned char Y,unsigned char *s)
    84. {  
    85.   printf("send string!\n");
    86.   //set axis: (x,y)
    87.   WriteByte(0x40 | Y, 0);                // column
    88.   WriteByte(0x80 | X, 0);              // row
    89.   //send char
    90.   while (*s)
    91.   {
    92.     SendChar(*s);
    93.     s++;
    94.   }       
    95. }
    复制代码
    -----------------------------------------------------------------------------------------------------------------------------------------------
    1. /* File:LCD5110.h
    2. * Version:A001
    3. * Author:Jacob
    4. * Date: 2013.8
    5. * Contact:iamlvshijie@gmail.com
    6. * Usage:this file has relationship with mcu hardware target:
    7. *       First,define or undefine to choose your boards;
    8. *       then, modify gpio, i2c operations .etc
    9. * History:
    10. * --A001:
    11. *    Initial Release based pcduino c_environment(https://github.com/pcduino/c_enviroment);
    12. *    Only IO_MODE working;
    13. * */
    14. #ifndef _LCD5110_H_
    15. #define _LCD5110_H_

    16. class LCD5110Class{
    17. public:
    18.   LCD5110Class();
    19.   ~LCD5110Class();
    20.   void Clear();
    21.   void Init(void);
    22.   void SendChar(unsigned char c);
    23.   void SendString(unsigned char X,unsigned char Y,unsigned char *s);
    24. private:
    25.   void WriteByte(unsigned char dat, unsigned char command);
    26.        
    27. };
    28. //extern LCD5110Class LCD5110;
    29. /*------------Board ----------------*/
    30. #define PCDUINO
    31. /*----------GPIO Settings-----------*/



    32. #ifdef PCDUINO
    33. #include <SPI.h>
    34. #include "Arduino.h"
    35. #include <stdio.h>
    36. #include <stdlib.h>
    37. #include <string.h>
    38. #include <Wire.h>
    39. #define IO_MODE
    40. //#define SPI_MODE

    41. #define LCD_CE_PIN    4
    42. #define LCD_RST_PIN   7
    43. #define LCD_DC_PIN    8

    44. #ifdef IO_MODE
    45.   #define LCD_SDA_PIN   15
    46.   #define LCD_SCLK_PIN  14
    47. #endif


    48. #define LCD_CE_HIGH  digitalWrite(LCD_CE_PIN, HIGH)
    49. #define LCD_CE_LOW   digitalWrite(LCD_CE_PIN, LOW)
    50. #define LCD_RST_HIGH digitalWrite(LCD_RST_PIN,HIGH)
    51. #define LCD_RST_LOW  digitalWrite(LCD_RST_PIN,LOW)
    52. #define LCD_DC_HIGH  digitalWrite(LCD_DC_PIN,HIGH)
    53. #define LCD_DC_LOW   digitalWrite(LCD_DC_PIN,LOW)


    54. #ifdef  IO_MODE
    55.   #define LCD_SDA_HIGH   digitalWrite(LCD_SDA_PIN, HIGH)
    56.   #define LCD_SDA_LOW    digitalWrite(LCD_SDA_PIN, LOW)
    57.   #define LCD_SCLK_HIGH  digitalWrite(LCD_SCLK_PIN, HIGH)
    58.   #define LCD_SCLK_LOW   digitalWrite(LCD_SCLK_PIN,LOW)
    59. #elif  SPI_MODE
    60.   #define SerialSendData(x)  SPI.transfer(x, SPI_CONTINUE)
    61. #endif


    62. #ifdef IO_MODE
    63.   #define LCD_IO_CONF  pinMode(LCD_RST_PIN , OUTPUT); \
    64.                                            pinMode(LCD_DC_PIN , OUTPUT);  \
    65.                                            pinMode(LCD_CE_PIN  , OUTPUT); \
    66.                                            pinMode(LCD_SDA_PIN , OUTPUT); \
    67.                        pinMode(LCD_SCLK_PIN  , OUTPUT)
    68. #elif SPI_MODE
    69.   #define LCD_IO_CONF  pinMode(LCD_RST_PIN , OUTPUT); \
    70.                                            pinMode(LCD_DC_PIN , OUTPUT); \
    71.                                            pinMode(LCD_CE_PIN  , OUTPUT); \
    72.                                            SPI.begin(); \
    73.                        SPI.setDataMode(SPI_MODE2); \
    74.                        SPI.setBitOrder(MSBFIRST); \
    75.                        SPI.setClockDivider(SPI_CLOCK_DIV32)
    76.   
    77. #elif I2C_MODE

    78. #endif

    79. #ifdef IO_MODE  
    80. #define LCD_SEND_DATA  for(i=0;i<8;i++)\
    81.                                           { \
    82.                                                 if(dat&0x80) \
    83.                                                         LCD_SDA_HIGH; \
    84.                                                 else \
    85.                                                         LCD_SDA_LOW; \
    86.                                                 LCD_SCLK_LOW; \
    87.                                                 dat = dat << 1; \
    88.                                                 DelayUs(3);\
    89.                                                 LCD_SCLK_HIGH;\
    90.                                           }
    91. #elif SPI_MODE

    92. #elif I2C_MODE
    93.    
    94. #endif  

    95. /*---------- Macro -----------------*/
    96. #define DelayUs(x)  usleep(x)
    97. /*---------- 6 x 8 font  -----------*/
    98. // 1 pixel space at left and bottom
    99. // index = ASCII - 32
    100. const unsigned char font6x8[][6] =
    101. {
    102.     { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },   // sp
    103.     { 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00 },   // !
    104.     { 0x00, 0x00, 0x07, 0x00, 0x07, 0x00 },   // "
    105.     { 0x00, 0x14, 0x7f, 0x14, 0x7f, 0x14 },   // #
    106.     { 0x00, 0x24, 0x2a, 0x7f, 0x2a, 0x12 },   // $
    107.     { 0x00, 0x62, 0x64, 0x08, 0x13, 0x23 },   // %
    108.     { 0x00, 0x36, 0x49, 0x55, 0x22, 0x50 },   // &
    109.     { 0x00, 0x00, 0x05, 0x03, 0x00, 0x00 },   // '
    110.     { 0x00, 0x00, 0x1c, 0x22, 0x41, 0x00 },   // (
    111.     { 0x00, 0x00, 0x41, 0x22, 0x1c, 0x00 },   // )
    112.     { 0x00, 0x14, 0x08, 0x3E, 0x08, 0x14 },   // *
    113.     { 0x00, 0x08, 0x08, 0x3E, 0x08, 0x08 },   // +
    114.     { 0x00, 0x00, 0x00, 0xA0, 0x60, 0x00 },   // ,
    115.     { 0x00, 0x08, 0x08, 0x08, 0x08, 0x08 },   // -
    116.     { 0x00, 0x00, 0x60, 0x60, 0x00, 0x00 },   // .
    117.     { 0x00, 0x20, 0x10, 0x08, 0x04, 0x02 },   // /
    118.     { 0x00, 0x3E, 0x51, 0x49, 0x45, 0x3E },   // 0
    119.     { 0x00, 0x00, 0x42, 0x7F, 0x40, 0x00 },   // 1
    120.     { 0x00, 0x42, 0x61, 0x51, 0x49, 0x46 },   // 2
    121.     { 0x00, 0x21, 0x41, 0x45, 0x4B, 0x31 },   // 3
    122.     { 0x00, 0x18, 0x14, 0x12, 0x7F, 0x10 },   // 4
    123.     { 0x00, 0x27, 0x45, 0x45, 0x45, 0x39 },   // 5
    124.     { 0x00, 0x3C, 0x4A, 0x49, 0x49, 0x30 },   // 6
    125.     { 0x00, 0x01, 0x71, 0x09, 0x05, 0x03 },   // 7
    126.     { 0x00, 0x36, 0x49, 0x49, 0x49, 0x36 },   // 8
    127.     { 0x00, 0x06, 0x49, 0x49, 0x29, 0x1E },   // 9
    128.     { 0x00, 0x00, 0x36, 0x36, 0x00, 0x00 },   // :
    129.     { 0x00, 0x00, 0x56, 0x36, 0x00, 0x00 },   // ;
    130.     { 0x00, 0x08, 0x14, 0x22, 0x41, 0x00 },   // <
    131.     { 0x00, 0x14, 0x14, 0x14, 0x14, 0x14 },   // =
    132.     { 0x00, 0x00, 0x41, 0x22, 0x14, 0x08 },   // >
    133.     { 0x00, 0x02, 0x01, 0x51, 0x09, 0x06 },   // ?
    134.     { 0x00, 0x32, 0x49, 0x59, 0x51, 0x3E },   // @
    135.     { 0x00, 0x7C, 0x12, 0x11, 0x12, 0x7C },   // A
    136.     { 0x00, 0x7F, 0x49, 0x49, 0x49, 0x36 },   // B
    137.     { 0x00, 0x3E, 0x41, 0x41, 0x41, 0x22 },   // C
    138.     { 0x00, 0x7F, 0x41, 0x41, 0x22, 0x1C },   // D
    139.     { 0x00, 0x7F, 0x49, 0x49, 0x49, 0x41 },   // E
    140.     { 0x00, 0x7F, 0x09, 0x09, 0x09, 0x01 },   // F
    141.     { 0x00, 0x3E, 0x41, 0x49, 0x49, 0x7A },   // G
    142.     { 0x00, 0x7F, 0x08, 0x08, 0x08, 0x7F },   // H
    143.     { 0x00, 0x00, 0x41, 0x7F, 0x41, 0x00 },   // I
    144.     { 0x00, 0x20, 0x40, 0x41, 0x3F, 0x01 },   // J
    145.     { 0x00, 0x7F, 0x08, 0x14, 0x22, 0x41 },   // K
    146.     { 0x00, 0x7F, 0x40, 0x40, 0x40, 0x40 },   // L
    147.     { 0x00, 0x7F, 0x02, 0x0C, 0x02, 0x7F },   // M
    148.     { 0x00, 0x7F, 0x04, 0x08, 0x10, 0x7F },   // N
    149.     { 0x00, 0x3E, 0x41, 0x41, 0x41, 0x3E },   // O
    150.     { 0x00, 0x7F, 0x09, 0x09, 0x09, 0x06 },   // P
    151.     { 0x00, 0x3E, 0x41, 0x51, 0x21, 0x5E },   // Q
    152.     { 0x00, 0x7F, 0x09, 0x19, 0x29, 0x46 },   // R
    153.     { 0x00, 0x46, 0x49, 0x49, 0x49, 0x31 },   // S
    154.     { 0x00, 0x01, 0x01, 0x7F, 0x01, 0x01 },   // T
    155.     { 0x00, 0x3F, 0x40, 0x40, 0x40, 0x3F },   // U
    156.     { 0x00, 0x1F, 0x20, 0x40, 0x20, 0x1F },   // V
    157.     { 0x00, 0x3F, 0x40, 0x38, 0x40, 0x3F },   // W
    158.     { 0x00, 0x63, 0x14, 0x08, 0x14, 0x63 },   // X
    159.     { 0x00, 0x07, 0x08, 0x70, 0x08, 0x07 },   // Y
    160.     { 0x00, 0x61, 0x51, 0x49, 0x45, 0x43 },   // Z
    161.     { 0x00, 0x00, 0x7F, 0x41, 0x41, 0x00 },   // [
    162.     { 0x00, 0x55, 0x2A, 0x55, 0x2A, 0x55 },   // 55
    163.     { 0x00, 0x00, 0x41, 0x41, 0x7F, 0x00 },   // ]
    164.     { 0x00, 0x04, 0x02, 0x01, 0x02, 0x04 },   // ^
    165.     { 0x00, 0x40, 0x40, 0x40, 0x40, 0x40 },   // _
    166.     { 0x00, 0x00, 0x01, 0x02, 0x04, 0x00 },   // '
    167.     { 0x00, 0x20, 0x54, 0x54, 0x54, 0x78 },   // a
    168.     { 0x00, 0x7F, 0x48, 0x44, 0x44, 0x38 },   // b
    169.     { 0x00, 0x38, 0x44, 0x44, 0x44, 0x20 },   // c
    170.     { 0x00, 0x38, 0x44, 0x44, 0x48, 0x7F },   // d
    171.     { 0x00, 0x38, 0x54, 0x54, 0x54, 0x18 },   // e
    172.     { 0x00, 0x08, 0x7E, 0x09, 0x01, 0x02 },   // f
    173.     { 0x00, 0x18, 0xA4, 0xA4, 0xA4, 0x7C },   // g
    174.     { 0x00, 0x7F, 0x08, 0x04, 0x04, 0x78 },   // h
    175.     { 0x00, 0x00, 0x44, 0x7D, 0x40, 0x00 },   // i
    176.     { 0x00, 0x40, 0x80, 0x84, 0x7D, 0x00 },   // j
    177.     { 0x00, 0x7F, 0x10, 0x28, 0x44, 0x00 },   // k
    178.     { 0x00, 0x00, 0x41, 0x7F, 0x40, 0x00 },   // l
    179.     { 0x00, 0x7C, 0x04, 0x18, 0x04, 0x78 },   // m
    180.     { 0x00, 0x7C, 0x08, 0x04, 0x04, 0x78 },   // n
    181.     { 0x00, 0x38, 0x44, 0x44, 0x44, 0x38 },   // o
    182.     { 0x00, 0xFC, 0x24, 0x24, 0x24, 0x18 },   // p
    183.     { 0x00, 0x18, 0x24, 0x24, 0x18, 0xFC },   // q
    184.     { 0x00, 0x7C, 0x08, 0x04, 0x04, 0x08 },   // r
    185.     { 0x00, 0x48, 0x54, 0x54, 0x54, 0x20 },   // s
    186.     { 0x00, 0x04, 0x3F, 0x44, 0x40, 0x20 },   // t
    187.     { 0x00, 0x3C, 0x40, 0x40, 0x20, 0x7C },   // u
    188.     { 0x00, 0x1C, 0x20, 0x40, 0x20, 0x1C },   // v
    189.     { 0x00, 0x3C, 0x40, 0x30, 0x40, 0x3C },   // w
    190.     { 0x00, 0x44, 0x28, 0x10, 0x28, 0x44 },   // x
    191.     { 0x00, 0x1C, 0xA0, 0xA0, 0xA0, 0x7C },   // y
    192.     { 0x00, 0x44, 0x64, 0x54, 0x4C, 0x44 },   // z
    193.     { 0x14, 0x14, 0x14, 0x14, 0x14, 0x14 }    // horiz lines
    194. };

    195. #endif //PCDUINO
    196. #endif //_LCD5110_H_
    复制代码
    -------------------------------------------------------------------------------------------------------------------------------------------------
    1. #include "LCD5110.h"
    2. #include <core.h>
    3. #include <stdio.h>
    4. #include <stdlib.h>
    5. #include <string.h>

    6. unsigned char * s=(unsigned char *)"12345678901234";
    7. LCD5110Class LCD5110;

    8. void setup(void)
    9. {
    10.   LCD5110.Init();
    11. }
    12. void loop()
    13. {
    14.   LCD5110.SendString(0,0,s);
    15.   LCD5110.SendString(0,1,s);
    16.   LCD5110.SendString(0,2,s);
    17.   LCD5110.SendString(0,3,s);  
    18.   LCD5110.SendString(0,4,s);
    19.   LCD5110.SendString(0,5,s);   
    20.   LCD5110.Clear();
    21.   
    22. }
    复制代码
    LCD5110.cpp  LCD5110.h 我放在了/libraries 下面,LCD5110_Test.c我放在了/sample下面。修改两个Makefile就行了。
    回复

    使用道具 举报

  • TA的每日心情
    开心
    2015-11-30 11:39
  • 签到天数: 359 天

    连续签到: 1 天

    [LV.8]以坛为家I

    发表于 2013-8-19 17:01:38 | 显示全部楼层
    楼主是高手啊
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    奋斗
    2015-1-22 18:04
  • 签到天数: 189 天

    连续签到: 1 天

    [LV.7]常住居民III

    发表于 2013-12-29 17:56:09 | 显示全部楼层
    5110很好用~很便宜
    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 注册/登录

    本版积分规则

    关闭

    站长推荐上一条 /4 下一条

    手机版|小黑屋|与非网

    GMT+8, 2024-11-20 01:42 , Processed in 0.123771 second(s), 19 queries , MemCache On.

    ICP经营许可证 苏B2-20140176  苏ICP备14012660号-2   苏州灵动帧格网络科技有限公司 版权所有.

    苏公网安备 32059002001037号

    Powered by Discuz! X3.4

    Copyright © 2001-2024, Tencent Cloud.