mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
19 lines
271 B
C
19 lines
271 B
C
#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();
|
|
|
|
/** Turn on/off vibro */
|
|
void furi_hal_vibro_on(bool value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|