2019-01-29 08:41:27 -07:00
|
|
|
#ifndef BT_H
|
|
|
|
#define BT_H
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "device.h"
|
|
|
|
#include "util/time.h"
|
2020-10-22 07:59:10 -06:00
|
|
|
#include "hardware/Serial.h"
|
2019-01-29 08:41:27 -07:00
|
|
|
|
|
|
|
void bluetooth_init(void);
|
|
|
|
bool bluetooth_enabled(void);
|
|
|
|
|
|
|
|
|
2019-01-29 12:43:46 -07:00
|
|
|
#endif
|