1
0
mirror of https://github.com/s00500/SimpleExpressions synced 2024-06-02 15:23:27 +00:00
SimpleExpressions/Shapes.h

43 lines
707 B
C
Raw Normal View History

2017-11-20 13:59:19 +00:00
#ifndef Shapes_h
#define Shapes_h
2017-11-21 23:30:35 +00:00
struct Frame
{
String name;
unsigned int data[7][3];
}
typedef Frame;
2017-11-21 12:09:40 +00:00
//***********************************************************************************
//*********************************MOUTHS DEFINES************************************
//***********************************************************************************
2017-11-21 23:30:35 +00:00
const Frame shapes[] = {
{
"zeros",
{
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
}
},
{
"happySimple",
{
{0,0,0},
{0,150,0},
{0,150,0},
{0,150,0},
{0,150,0},
{0,0,0},
{0,0,0},
}
}
2017-11-21 12:09:40 +00:00
};
2017-11-20 13:59:19 +00:00
#endif