You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---Returns whether the local bus interface is enabled.
5
+
--- @returnboolean
6
+
functionabstract_bus.getEnabled() end
7
+
8
+
---Sets whether the local bus interface should be enabled
9
+
--- @paramenabledboolean
10
+
functionabstract_bus.setEnabled(enabled) end
11
+
12
+
---Returns the local interface address. number is a 16 bit hexadecimal number (0xFFFF being a broadcast). Returns 0 if an address has not yet been set.
13
+
--- @returnnumber
14
+
functionabstract_bus.getAddress() end
15
+
16
+
---Sets the local interface address. number is a 16bit hexadecimal number.
17
+
--- @paramaddressnumber
18
+
functionabstract_bus.setAddress(address) end
19
+
20
+
---Scans the abstract bus for attached devices and returns them in a list.
21
+
--- @parammasknumber
22
+
--- @returntable
23
+
functionabstract_bus.scan(mask) end
24
+
25
+
--- Sends data across the abstract bus. The table data is in the form of key-value pairs, e.g.
0 commit comments