port to platformio
This commit is contained in:
13
src/animations/UpdateStatus.h
Normal file
13
src/animations/UpdateStatus.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <Figments.h>
|
||||
|
||||
class UpdateStatus: public Figment {
|
||||
public:
|
||||
UpdateStatus() : Figment("UpdateStatusAnimation") {}
|
||||
void handleEvent(const InputEvent& evt) override;
|
||||
void loop() override;
|
||||
void render(Display* dpy) const override;
|
||||
|
||||
private:
|
||||
bool m_updateReady = false;
|
||||
uint8_t m_pos = 0;
|
||||
};
|
Reference in New Issue
Block a user