From 00a05f0b10da680a185d6eabba9ec2e99d21491b Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 29 Oct 2022 00:51:17 +0200 Subject: [PATCH] Added bluetooth driver placeholder --- Bluetooth.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Bluetooth.h diff --git a/Bluetooth.h b/Bluetooth.h new file mode 100644 index 0000000..d28b6c9 --- /dev/null +++ b/Bluetooth.h @@ -0,0 +1,5 @@ +bool bt_ready = false; +bool bt_init() { + bt_state = BT_STATE_OFF; + return true; +} \ No newline at end of file