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

29 lines
360 B
C
Raw Normal View History

/**
* @file furi-hal-vibro.h
* Vibro HAL API
*/
#pragma once
#include <stdbool.h>
#include <stdint.h>
2021-08-08 18:03:25 +00:00
#include <furi-hal-resources.h>
#ifdef __cplusplus
extern "C" {
#endif
/** Initialize vibro
*/
2021-08-08 18:03:25 +00:00
void furi_hal_vibro_init();
/** Turn on/off vibro
*
* @param[in] value new state
*/
2021-08-08 18:03:25 +00:00
void furi_hal_vibro_on(bool value);
#ifdef __cplusplus
}
#endif