Junichi Katsu / Mbed 2 deprecated BLE_MPU6050_test6_challenge_sb

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pictLIB.h Source File

pictLIB.h

00001 
00002 #ifndef MBED_PICTLIB_H
00003 #define MBED_PICTLIB_H
00004 
00005 #include "mbed.h"
00006 
00007 class PICTLIB {
00008 public:
00009 
00010     PICTLIB(int _dsp_x,int _dsp_y);
00011     void scroll(char* in_pic, char* out_pic);
00012     void rotation(float rad, char* in_pic, char* out_pic);
00013     float pi;
00014     
00015 protected:
00016 
00017     
00018     int dsp_x;
00019     int dsp_y;
00020     float dsp_center_x;
00021     float dsp_center_y;
00022 };
00023 
00024 #endif