public void ButtonClick() { if (BLEManager.connectBLE == true) { BLEManager.MySendData(msg); } Debug.Log(msg); }
public void InputChanged(string s) { if (BLEManager.connectBLE == true) { BLEManager.MySendData(s); } Debug.Log(s); }
public void SliderChanged(float n) { string value = n.ToString(); if (BLEManager.connectBLE == true) { BLEManager.MySendData(value); } //Debug.Log(n); text.text = value; }