fixed mixed up names
This commit is contained in:
parent
e39472b51a
commit
2559bf327c
|
@ -36,6 +36,9 @@
|
||||||
#ifdef SMALLANIMATION_COLWALK
|
#ifdef SMALLANIMATION_COLWALK
|
||||||
# include "smallani/colwalk.h"
|
# include "smallani/colwalk.h"
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef SMALLANIMATION_ROWBOUNCE
|
||||||
|
# include "smallani/rowbounce.h"
|
||||||
|
#endif
|
||||||
#ifdef SMALLANIMATION_COLBOUNCE
|
#ifdef SMALLANIMATION_COLBOUNCE
|
||||||
# include "smallani/colbounce.h"
|
# include "smallani/colbounce.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#ifndef ROWBOUNCE_H_
|
#ifndef COLBOUNCE_H_
|
||||||
#define ROWBOUNCE_H_
|
#define COLBOUNCE_H_
|
||||||
|
|
||||||
void rowbounce(uint8_t times,uint8_t speed);
|
void colbounce(uint8_t times,uint8_t speed);
|
||||||
|
|
||||||
#endif /* ROWBOUNCE_H_ */
|
#endif /* COLBOUNCE_H_ */
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#ifndef COLBOUNCE_H_
|
#ifndef ROWBOUNCE_H_
|
||||||
#define COLBOUNCE_H_
|
#define ROWBOUNCE_H_
|
||||||
|
|
||||||
void colbounce(uint8_t times,uint8_t speed);
|
void rowbounce(uint8_t times, uint8_t speed);
|
||||||
|
|
||||||
#endif /* COLBOUNCE_H_ */
|
#endif /* ROWBOUNCE_H_ */
|
||||||
|
|
Loading…
Reference in New Issue