-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFan.cs
More file actions
137 lines (113 loc) · 3.37 KB
/
Fan.cs
File metadata and controls
137 lines (113 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using SecretLabs.NETMF.Hardware.Netduino;
using System;
namespace HumidityControl
{
public sealed class Fan : IDisposable
{
private const int BinLifetimeMilliseconds = 250;
private readonly PWM speed;
private readonly InterruptPort tachometer;
private int firstCounter = 0, secondCounter = 0;
private DateTime firstCounterStart = DateTime.MinValue, secondCounterStart = DateTime.MinValue;
public Fan(Cpu.PWMChannel speed, Cpu.Pin tachometer)
{
this.speed = new PWM(speed, 25e3 /* Hz */, 0.0 /* % */, false);
this.tachometer = new InterruptPort(tachometer, false, ResistorModes.PullUp, InterruptModes.InterruptEdgeHigh); ;
this.tachometer.OnInterrupt += tachometer_OnInterrupt;
}
public void Start()
{
firstCounter = 0;
firstCounterStart = DateTime.Now;
speed.Start();
tachometer.EnableInterrupt();
}
private void tachometer_OnInterrupt(uint pin, uint state, DateTime time)
{
lock (this)
{
Debug.Assert(firstCounterStart >= secondCounterStart);
if (time >= firstCounterStart) // time after firstCounterStart
{
firstCounter++;
}
else if (time >= secondCounterStart) // time after secondCounterStart
{
secondCounter++;
} // else event has been lost due to the CPU being too busy
UpdateBins();
}
}
private void UpdateBins()
{
var difference = (DateTime.Now.Ticks - firstCounterStart.Ticks) / TimeSpan.TicksPerMillisecond;
if (difference > BinLifetimeMilliseconds)
{
secondCounter = firstCounter;
secondCounterStart = firstCounterStart;
firstCounter = 0;
firstCounterStart = DateTime.Now;
// Debug.Print("Update: first=" + firstCounter + " " + firstCounterStart + ", second=" + secondCounter + " " + secondCounterStart);
}
}
public float Speed
{
get
{
lock (this)
{
float result;
if (secondCounterStart != DateTime.MinValue)
{
result = RotationPerMinute(firstCounter + secondCounter, secondCounterStart);
}
else
{
Debug.Assert(firstCounterStart != DateTime.MinValue);
result = RotationPerMinute(firstCounter, firstCounterStart);
}
UpdateBins();
return result;
}
}
}
private static float RotationPerMinute(int counts, DateTime counterStart)
{
if (counts <= 0)
{
return 0.0f;
}
long ticks = DateTime.Now.Ticks - counterStart.Ticks;
if (ticks <= 0)
{
return 0.0f;
}
else
{
return counts / 2.0f / ticks * TimeSpan.TicksPerMinute;
}
}
/// <summary>
/// Fan speed between zero and one.
/// </summary>
public double SpeedControl
{
get { return speed.DutyCycle; }
set
{
if (double.IsNaN(value) || value < 0.0 || 100.0 < value)
{
throw new ArgumentOutOfRangeException("value");
}
speed.DutyCycle = value;
}
}
public void Dispose()
{
speed.Dispose();
tachometer.Dispose();
}
}
}