mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
20 lines
No EOL
274 B
C
20 lines
No EOL
274 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void furi_hal_ibutton_start();
|
|
|
|
void furi_hal_ibutton_stop();
|
|
|
|
void furi_hal_ibutton_pin_low();
|
|
|
|
void furi_hal_ibutton_pin_high();
|
|
|
|
bool furi_hal_ibutton_pin_get_level();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |