mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-26 14:30:25 +00:00
585b7f963d
merge ofw commit
28 lines
364 B
C
28 lines
364 B
C
/**
|
|
* @file furi_hal_vibro.h
|
|
* Vibro HAL API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <furi_hal_resources.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Initialize vibro
|
|
*/
|
|
void furi_hal_vibro_init(void);
|
|
|
|
/** Turn on/off vibro
|
|
*
|
|
* @param[in] value new state
|
|
*/
|
|
void furi_hal_vibro_on(bool value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|