Better formatting FrontView lines.
Now cycling through each FrontView sensor every 2 seconds.
Fixing character conversion when sending VFD text.
Using special FrontView characters for Celsius and Farenheit.
2 namespace OxyPlot.WindowsForms {
4 using System.Collections.Generic;
7 public class HashSet<T> {
9 private readonly Dictionary<T, object> set = new Dictionary<T, object>();
11 public bool Add(T value) {
12 if (set.ContainsKey(value))
19 public bool Contains(T value) {
20 return set.ContainsKey(value);