17 lines
295 B
C
17 lines
295 B
C
/*
|
|
* ledprog.h
|
|
*/
|
|
|
|
#ifndef __APP_LED_LEDPROG_H
|
|
#define __APP_LED_LEDPROG_H
|
|
|
|
|
|
|
|
void lp_ribbon_init();
|
|
void lp_ribbon_upward(uint16_t wait, uint16_t rate, uint8_t fade);
|
|
void lp_ribbon_twinkle(uint8_t idle, uint8_t max, uint8_t thresh_lo, uint8_t thresh_hi);
|
|
|
|
|
|
|
|
#endif /* __APP_LED_LEDPROG_H */
|