89a6c09a7a
* Documentation: add Doxyfile, prepare sources for doxygen. * Update ReadMe and remove obsolete CLA * Add contribution guide * Contributing: update text * Correct spelling
26 lines
331 B
C
26 lines
331 B
C
/**
|
|
* @file furi-hal-ibutton.h
|
|
* iButton HAL API
|
|
*/
|
|
|
|
#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 |