flipperzero-firmware/firmware/targets/api-hal-include/api-hal-vibro.h
gornekich 610f4f5d73
[FL-41] api-hal doxygen documentation (#387)
* targets/api-hal: rework documentation in doxygen style
* core/api-hal: rework documentation in doxygen style
* core/furi: rework documentation in doxygen style
* drivers: rework documentation in doxygen style

Co-authored-by: あく <alleteam@gmail.com>
2021-03-24 12:35:33 +03:00

20 lines
268 B
C

#pragma once
#include <stdbool.h>
#include <stdint.h>
#include <api-hal-resources.h>
#ifdef __cplusplus
extern "C" {
#endif
/** Initialize vibro */
void api_hal_vibro_init();
/** Turn on/off vibro */
void api_hal_vibro_on(bool value);
#ifdef __cplusplus
}
#endif