MCPcopy Create free account
hub / github.com/brainflow-dev/brainflow / mac_address

Method mac_address

rust_package/brainflow/src/brainflow_input_params.rs:70–73  ·  view source on GitHub ↗

Mac address, for example, is used for bluetooth based boards.

(mut self, address: S)

Source from the content-addressed store, hash-verified

68
69 /// Mac address, for example, is used for bluetooth based boards.
70 pub fn mac_address<S: AsRef<str>>(mut self, address: S) -> Self {
71 self.params.mac_address = address.as_ref().to_string();
72 self
73 }
74
75 /// IP address is used for boards which reads data from socket connection.
76 pub fn ip_address<S: AsRef<str>>(mut self, address: S) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected