mirror of
https://github.com/cclassic/hcs12ss59t
synced 2024-11-22 02:15:05 +01:00
15 lines
238 B
C
15 lines
238 B
C
#ifndef VFD_FUN_H
|
|
#define VFD_FUN_H
|
|
|
|
#include "hcs12ss59t.h"
|
|
|
|
enum VFD_FUN_ANIMATIONS {
|
|
ANIMATION_RANDOM = 0,
|
|
ANIMATION_FLIP,
|
|
ANIMATION_SLIDE
|
|
};
|
|
|
|
void vfd_animate_to(char *text, enum VFD_FUN_ANIMATIONS animation);
|
|
|
|
#endif // VFD_FUN_H
|