Image library for all the graph. Just test

Committer:
MYY
Date:
Sun Apr 21 00:27:47 2019 +0000
Revision:
2:b6d3420ab907
Parent:
1:298e74e9170b
Child:
3:d31341240f10
I move all the variable into a new class called "Global_my" and become a global variable.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MYY 0:da6e8a366665 1 #ifndef Image_H
MYY 0:da6e8a366665 2 #define Image_H
MYY 0:da6e8a366665 3 #include "mbed.h"
MYY 0:da6e8a366665 4 #include "N5110.h"
MYY 2:b6d3420ab907 5 #include "Global_my.h"
MYY 0:da6e8a366665 6 #include <math.h>
MYY 0:da6e8a366665 7
MYY 2:b6d3420ab907 8
MYY 0:da6e8a366665 9
MYY 2:b6d3420ab907 10 class Image {
MYY 0:da6e8a366665 11 public:
MYY 0:da6e8a366665 12 void draw_1(N5110 &lcd);
MYY 0:da6e8a366665 13 };
MYY 0:da6e8a366665 14
MYY 0:da6e8a366665 15
MYY 0:da6e8a366665 16 #endif