1
0
mirror of https://github.com/s00500/SimpleExpressions synced 2025-07-07 01:10:19 +00:00

Working as normal

This commit is contained in:
2017-11-22 16:20:14 +01:00
parent e3d6ae422b
commit 29762e3852
3 changed files with 19 additions and 14 deletions

View File

@ -14,7 +14,7 @@ typedef Frame;
#define shapeNumber 5 // add the current shape count here
// and don't make names longer than 20!
const PROGMEM Frame shapes[] = {
const Frame shapes[] = {
{
"zeros",
{
@ -24,7 +24,7 @@ const PROGMEM Frame shapes[] = {
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0}
}
},
{
@ -36,7 +36,7 @@ const PROGMEM Frame shapes[] = {
{0,150,0},
{0,0,0},
{0,0,0},
{0,0,0},
{0,0,0}
}
},
{
@ -48,7 +48,7 @@ const PROGMEM Frame shapes[] = {
{0,150,0},
{0,150,0},
{0,0,0},
{0,0,0},
{0,0,0}
}
},
{
@ -60,7 +60,7 @@ const PROGMEM Frame shapes[] = {
{0, 0, 0},
{0, 0, 0},
{0, 150,0},
{0, 150,0},
{0, 150,0}
}
},
{
@ -72,8 +72,8 @@ const PROGMEM Frame shapes[] = {
{0,0,0},
{0,150,0},
{0,150,0},
{0,150,0},
{0,150,0}
}
},
}
};
#endif