mirror of
https://github.com/halleysfifthinc/toyota-avc-lan-bluetooth.git
synced 2025-06-20 22:36:12 +00:00
21 lines
410 B
C
21 lines
410 B
C
#ifndef __BLUETOOTH_H
|
|
#define __BLUETOOTH_H
|
|
|
|
#define MAC_ADDRESS_LENGTH 18
|
|
|
|
void bluetooth_init(void);
|
|
void bluetooth_config(void);
|
|
void bluetooth_next_song(void);
|
|
void bluetooth_previous_song(void);
|
|
void bluetooth_pause_song(void);
|
|
void bluetooth_play_song(void);
|
|
|
|
typedef enum MATCH_STATES {
|
|
NO_MATCH,
|
|
MATCHING_CONNECT,
|
|
MATCHING_LIST,
|
|
FETCHING_MAC,
|
|
} MATCH_STATES;
|
|
|
|
#endif
|