night_clock now has bigger digits.

This commit is contained in:
2020-11-04 06:16:26 +01:00
parent 1d66f9c541
commit b9cfc6568b
4 changed files with 35 additions and 8 deletions

View File

@ -0,0 +1,8 @@
#pragma once
#include "Effect.h"
class NightClockEffect : public Effect {
public:
virtual void loop(uint16_t ms);
String get_name() override { return "night_clock"; }
};