Liberi
An exergame built for kids with CP!
PolarHeartRateMonitor.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.IO;
4 using System.IO.Ports;
5 using System.Threading;
6 using System.Diagnostics;
7 
12 {
13  public bool Passive;
14 
15  string _port = "COM3";
16  SerialPort _serialPort;
17  Thread _thread;
18  int _hr;
19 
20  void OnEnable()
21  {
22  UJeli configOptions;
23  GameClient.Instance.Config.Devices.Options.TryGetValue(name, out configOptions);
24 
25  if (configOptions != null && configOptions.HasChild("port"))
26  _port = configOptions["port"].Value;
27 
28  if (configOptions != null && configOptions.HasChild("passive"))
29  Passive = configOptions["passive"].BoolValue;
30 
31  _serialPort = new SerialPort("\\\\.\\" + _port, 9600);
32  _serialPort.ReadTimeout = 10000;
33 
34  try { _serialPort.Open(); }
35 
36  catch (IOException e)
37  {
38  UnityEngine.Debug.LogError("Failed to start Polar HRM: " + e.Message);
39  return;
40  }
41 
42  _thread = new Thread(new ThreadStart(PollHeartRate));
43  _thread.Start();
44  }
45 
46  void PollHeartRate()
47  {
48  while (_serialPort.IsOpen)
49  {
50  string message = "G1\r";
51  _serialPort.Write(message.ToCharArray(), 0, message.Length);
52 
53  string line = "";
54  char c = (char)_serialPort.ReadByte();
55 
56  while (c != '\n' && c != '\r')
57  {
58  line += c;
59  c = (char)_serialPort.ReadByte();
60  }
61 
62  string[] tokens = line.Split(' ');
63 
64  _hr = int.Parse(tokens[2]);
65 
66  if (!Passive)
67  {
68  Heart.InjectRate(_hr);
69  }
70  Heart.InjectPolarRate(_hr);
71 
72  Thread.Sleep(100);
73  }
74  }
75 
76  void OnDestroy()
77  {
78  _serialPort.Close();
79  }
80 
81  public override UJeli GetDeviceSaveOptions()
82  {
83  UJeli jeli = new UJeli();
84  jeli.AddChild("port", _port);
85  jeli.AddChild("passive", Passive);
86  return jeli;
87  }
88 }
Heart class. Allows for heart rate queries and heart rate injection from devices. ...
Definition: Heart.cs:20
Abstract class to be extended by devices.
Definition: Device.cs:7
A Device for providing HeartRate information to the Heart class from a Polar HR Monitor.
static void InjectRate(float heartRate)
Injects a heart rate.
Definition: Heart.cs:85
override UJeli GetDeviceSaveOptions()
Returns a jeli containing all the custom options used by a device.
ClientConfig Config
Gets the configuration for this client.
Definition: GameClient.cs:176
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Main game client class.
Definition: GameClient.cs:16
Unity version of Jeli markup class.
Definition: UJeli.cs:10