flipperzero-firmware/firmware/targets/api-hal-include/api-hal-vibro.h

20 lines
268 B
C
Raw Normal View History

#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