1
0
mirror of https://github.com/s00500/SimpleExpressions synced 2024-06-01 13:43:27 +00:00
SimpleExpressions/Shapes.h

80 lines
1.2 KiB
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
{
2017-11-22 12:50:16 +00:00
char name[20];
int data[7][3];
2017-11-21 23:30:35 +00:00
}
typedef Frame;
2017-11-21 12:09:40 +00:00
//***********************************************************************************
//*********************************MOUTHS DEFINES************************************
//***********************************************************************************
2017-11-22 12:50:16 +00:00
#define shapeNumber 5 // add the current shape count here
// and don't make names longer than 20!
const PROGMEM Frame shapes[] = {
2017-11-21 23:30:35 +00:00
{
"zeros",
{
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
}
},
{
2017-11-22 12:50:16 +00:00
"happySmall",
{
{0,0,0},
{0,0,0},
{0,150,0},
{0,150,0},
{0,0,0},
{0,0,0},
{0,0,0},
}
},
{
"happyFull",
2017-11-21 23:30:35 +00:00
{
{0,0,0},
{0,150,0},
{0,150,0},
{0,150,0},
{0,150,0},
{0,0,0},
{0,0,0},
}
2017-11-22 12:50:16 +00:00
},
{
"sadSmall",
{
{0, 0, 0},
{0, 0, 0},
{0, 0, 0},
{0, 0, 0},
{0, 0, 0},
{0, 150,0},
{0, 150,0},
}
},
{
"sadFull",
{
{0,0,0},
{0,150,0},
{0,0,0},
{0,0,0},
{0,150,0},
{0,150,0},
{0,150,0},
}
},
2017-11-21 12:09:40 +00:00
};
2017-11-20 13:59:19 +00:00
#endif