Metrics now include the current effect's name.

This commit is contained in:
2019-09-25 18:11:03 +02:00
parent d396b68191
commit 36edb94ff0
25 changed files with 51 additions and 30 deletions

View File

@ -1,5 +1,4 @@
#ifndef effect_snake_H
#define effect_snake_H
#pragma once
#include "Effect.h"
#include "prototypes.h"
@ -22,6 +21,5 @@ public:
boolean valid_position(Coords c);
Coords update_position(Coords c, uint8_t direction);
boolean can_be_shown_with_clock();
String get_name() override { return "snake"; }
};
#endif