求助:跪求nokia5110曲线显示代码!

2020-01-27 11:43发布

跪求nokia5110曲线显示代码!


如何描点?

比如读取温度,并在5110上显示变化的温度曲线。


或者 y=sin(x) 函数显示。


我用的51的芯片
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
25条回答
Garbage614
1楼-- · 2020-01-27 17:09
对一列的每一个点取模(共48个),然后在循环写每一列的时候根据值的不同选用用不同的元素。
x[48][]=
{
    {……},
    {……},
    ……
}

void show()
{
       uchar i;
       for(i = 0; i < 84; i++ )
             Draw_Bmp_Pic(i,0,x[NUM],1,48);
}

其中void Draw_Bmp_Pic(uchar X,uchar Y,uchar *map,uchar Pix_x,uchar Pix_y);
millwood0
2楼-- · 2020-01-27 18:44
跪求nokia5110曲线显示代码!


1. if you had the brain to write the code yourself, you wouldn't have needed the code.
2. if you didn't have the brain to write the code yourself, you couldn't have used the code.

btw, no one should give anything to an adult who 跪求 anything.

if you are a 3-yr old, I would be happy to help you, though.
xsh2005105326
3楼-- · 2020-01-27 20:59
millwood0 发表于 2012-7-9 06:40
1. if you had the brain to write the code yourself, you wouldn't have needed the code.
2. if you d ...

现在的孩纸膝盖都不怕疼滴。
fsclub
4楼-- · 2020-01-27 21:21
线是点构成的。
我只能告诉你这个。
marshallemon
5楼-- · 2020-01-27 21:48
 精彩回答 2  元偷偷看……
BXAK
6楼-- · 2020-01-28 00:10
温度变化不快的话(比如气温)直接画点就行

一周热门 更多>