espleaf/src/prototypes.cpp

15 lines
345 B
C++
Raw Normal View History

2021-01-18 04:53:11 +00:00
#include "prototypes.h"
std::map<AnimationMode, const char*> animation_mode_names {
{AM_CORNERS, "corners"},
{AM_FLASH, "flash"},
{AM_FIRST_CORNER, "first_corner"},
{AM_NODES, "nodes"},
{AM_FIRST_NODE, "first_node"},
{AM_OFF, "off"},
{AM_ERROR, "error"},
{AM_NONE, "NONE"},
2021-01-19 19:52:40 +00:00
{AM_STATIC, "static"},
{AM_RAINBOW, "rainbow"}
2021-01-18 04:53:11 +00:00
};