2019-05-09 22:17:29 -07:00
|
|
|
#include "./Animation.h"
|
|
|
|
#include "./Input.h"
|
|
|
|
#include "./Display.h"
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
uint8_t
|
|
|
|
AnimatedNumber::value() const
|
|
|
|
{
|
2021-03-29 01:10:55 -07:00
|
|
|
return lerp8by8(m_start, m_end, m_idx);
|
2019-05-09 22:17:29 -07:00
|
|
|
}
|