极客工坊

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 10660|回复: 1

5110做的示波器,请教点问题

[复制链接]
发表于 2014-3-18 13:36:59 | 显示全部楼层 |阅读模式
本帖最后由 zaqwsx626 于 2014-3-18 15:30 编辑

想用5110做示波器,不知道程序哪里有问题,图像总闪烁,请大家帮忙看一下。


[pre lang="arduino" line="1" file="lcd5110"]//      SCK  - Pin 8 Clk
//      MOSI - Pin 9 Din
//      DC   - Pin 10
//      RST  - Pin 11
//      CS   - Pin 12 CE
#include <LCD5110_CN.h>

LCD5110 myGLCD(2,3,4,6,5);
unsigned int Buffer[84];
int i=0;
int j=0;
int pwm=8;
extern uint8_t arduino_lo[];

void setup()
{
  myGLCD.InitLCD();
}

void loop()
{
  analogWrite(pwm,50);
  for(j=0;j<84;)
  {
    Buffer[j++] =46-(analogRead(A0)/23);
  }
  myGLCD.drawBitmap(0, 0, arduino_lo, 84, 48);//绘制边框
  for(i=0;i<84;i++)
  {
    myGLCD.drawLine(i, Buffer,i+1  , Buffer[i+1]);
  }
  myGLCD.update();
  for(i=0;i<84;i++)
  {
    myGLCD.clrLine(i, Buffer, i+1, Buffer[i+1]);
  }
  delay(40);
  myGLCD.drawBitmap(0, 0, arduino_lo, 84, 48);   
}[/code]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
回复

使用道具 举报

 楼主| 发表于 2014-3-18 13:42:51 | 显示全部楼层
接上
字模软件取得边框
  1. #include <avr/pgmspace.h>

  2. uint8_t arduino_lo[] PROGMEM={
  3. /*------------------------------------------------------------------------------
  4. ;  若数据乱码,请检查字模格式设置,注意选择正确的取模方向和字节位顺序。
  5. ;  源文件 / 文字 : C:\Documents and Settings\Administrator\桌面\未命名.bmp字模
  6. ;  宽×高(像素): 84×48
  7. ;  字模格式/大小 : 单色点阵液晶字模,纵向取模,字节倒序/504字节
  8. ;  数据转换日期  : 2014-3-11 11:21:29
  9. ------------------------------------------------------------------------------*/
  10. //0x54,0x30,0x0B,//宽的像素数,高的像素数,宽的字节数,参数设置可选
  11. 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  12. 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  13. 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  14. 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  15. 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  16. 0x01,0x01,0x01,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  17. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  18. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  19. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  20. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  21. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  22. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  23. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  24. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  25. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  26. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x00,0x00,0x00,
  27. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  28. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  29. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  30. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  31. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,
  32. 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  33. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  34. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  35. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  36. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  37. 0x00,0x00,0x00,0xFF,0xFF,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  38. 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  39. 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  40. 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  41. 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  42. 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xFF,
  43. };
复制代码
回复 支持 反对

使用道具 举报

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

本版积分规则

Archiver|联系我们|极客工坊

GMT+8, 2026-6-14 03:24 , Processed in 0.037929 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表