summaryrefslogtreecommitdiff
path: root/src/lua/stubs/bluetooth.lua
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-01-05 17:15:47 +1100
committerjacqueline <me@jacqueline.id.au>2024-01-05 17:15:47 +1100
commite12a68a74d9527d4becde122da4ff1ad6550564e (patch)
tree1d987e513efe693bc48817acbc0e89d7db044828 /src/lua/stubs/bluetooth.lua
parentaa1dd3d522aa60c2e8ec31ccc49b3459b4f0f8e2 (diff)
downloadtangara-fw-e12a68a74d9527d4becde122da4ff1ad6550564e.tar.gz
split lua stubs into one set for ldoc, and one set for lua-ls
Diffstat (limited to 'src/lua/stubs/bluetooth.lua')
-rw-r--r--src/lua/stubs/bluetooth.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lua/stubs/bluetooth.lua b/src/lua/stubs/bluetooth.lua
deleted file mode 100644
index 2fba1ec6..00000000
--- a/src/lua/stubs/bluetooth.lua
+++ /dev/null
@@ -1,14 +0,0 @@
---- Properties and functions for handling Bluetooth connectivity
--- @module bluetooth
-
-local bluetooth = {}
-
---- Whether or not the Bluetooth stack is currently enabled. This property is writeable, and can be used to enable or disable Bluetooth.
--- @treturn types.Property a boolean property
-function bluetooth.enabled() end
-
---- Whether or not there is an active connection to another Bluetooth device.
--- @treturn types.Property a boolean property
-function bluetooth.connected() end
-
-return bluetooth