15 string _port =
"COM3";
16 SerialPort _serialPort;
25 if (configOptions != null && configOptions.HasChild(
"port"))
26 _port = configOptions[
"port"].Value;
28 if (configOptions != null && configOptions.HasChild(
"passive"))
29 Passive = configOptions[
"passive"].BoolValue;
31 _serialPort =
new SerialPort(
"\\\\.\\" + _port, 9600);
32 _serialPort.ReadTimeout = 10000;
34 try { _serialPort.Open(); }
38 UnityEngine.Debug.LogError(
"Failed to start Polar HRM: " + e.Message);
42 _thread =
new Thread(
new ThreadStart(PollHeartRate));
48 while (_serialPort.IsOpen)
50 string message =
"G1\r";
51 _serialPort.Write(message.ToCharArray(), 0, message.Length);
54 char c = (char)_serialPort.ReadByte();
56 while (c !=
'\n' && c !=
'\r')
59 c = (char)_serialPort.ReadByte();
62 string[] tokens = line.Split(
' ');
64 _hr =
int.Parse(tokens[2]);
70 Heart.InjectPolarRate(_hr);
84 jeli.AddChild(
"port", _port);
85 jeli.AddChild(
"passive", Passive);
Heart class. Allows for heart rate queries and heart rate injection from devices. ...
Abstract class to be extended by devices.
A Device for providing HeartRate information to the Heart class from a Polar HR Monitor.
static void InjectRate(float heartRate)
Injects a heart rate.
override UJeli GetDeviceSaveOptions()
Returns a jeli containing all the custom options used by a device.
ClientConfig Config
Gets the configuration for this client.
static GameClient Instance
Gets the sole instance of the game client.
Unity version of Jeli markup class.