22 lines
325 B
C
22 lines
325 B
C
#ifndef __BUBBLE_H
|
|
#define __BUBBLE_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "main.h"
|
|
#include "stdint.h"
|
|
|
|
extern uint8_t getPWMDutyCycle(void);
|
|
uint8_t bubble_init(void);
|
|
uint8_t bubble_set_mode(uint8_t mode);
|
|
uint8_t bubbleGetSize(void);
|
|
uint8_t bubbleGetStatus(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |