1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/core/embed/trezorhal/haptic.h
tychovrahe 0e70fcdc6f feat(core): add haptic to prodtest
[no changelog]
2024-02-29 23:05:56 +01:00

27 lines
505 B
C

#ifndef TREZORHAL_HAPTIC_H
#define TREZORHAL_HAPTIC_H
#include <stdbool.h>
#include <stdint.h>
typedef enum {
HAPTIC_BUTTON_PRESS = 0,
HAPTIC_ALERT = 1,
HAPTIC_HOLD_TO_CONFIRM = 2,
} haptic_effect_t;
// Initialize haptic driver
void haptic_init(void);
// Calibrate haptic driver
void haptic_calibrate(void);
// Test haptic driver, plays a maximum amplitude for the given duration
bool haptic_test(uint16_t duration_ms);
// Play haptic effect
void haptic_play(haptic_effect_t effect);
#endif