123456789101112131415161718192021 |
- #ifndef __SR04_H_
- #define __SR04_H_
- #include <main.h>
- typedef struct
- {
- void (*Init)(void);
- uint16_t (*Read)(void);
- }SR04_t;
- /* extern variables ------------------------------------------------*/
- extern SR04_t SR04;
- /* extern function prototypes --------------------------------------*/
- #endif
|