Skip to content

Commit b0a4c70

Browse files
committed
Merge pull request #628 from BrianGenisio/tinkerkit-thermistor
Migrating the Tinkerkit Thermistor to be included in Temperature component
2 parents 09801c7 + f14823a commit b0a4c70

6 files changed

+73
-67
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@ board.on("ready", function() {
324324
- [TinkerKit - Joystick](https://github.com/rwaldron/johnny-five/blob/master/docs/tinkerkit-joystick.md)
325325
- [TinkerKit - Linear Potentiometer](https://github.com/rwaldron/johnny-five/blob/master/docs/tinkerkit-linear-pot.md)
326326
- [TinkerKit - Rotary Potentiometer](https://github.com/rwaldron/johnny-five/blob/master/docs/tinkerkit-rotary.md)
327+
- [TinkerKit -- Temperature](https://github.com/rwaldron/johnny-five/blob/master/docs/tinkerkit-thermistor.md)
327328
- [TinkerKit - Tilt Sensor](https://github.com/rwaldron/johnny-five/blob/master/docs/tinkerkit-tilt.md)
328329
- [TinkerKit - Touch Sensor](https://github.com/rwaldron/johnny-five/blob/master/docs/tinkerkit-touch.md)
329330

docs/tinkerkit-thermistor.md

+5-34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--remove-start-->
2-
#
2+
# TinkerKit -- Temperature
33

44
Run with:
55
```bash
@@ -8,41 +8,12 @@ node eg/tinkerkit-thermistor.js
88
<!--remove-end-->
99

1010
```javascript
11-
var five = require("johnny-five"),
12-
Thermistor;
13-
14-
(function() {
15-
var adcres, beta, kelvin, rb, ginf;
16-
17-
adcres = 1023;
18-
// Beta parameter
19-
beta = 3950;
20-
// 0°C = 273.15 K
21-
kelvin = 273.15;
22-
// 10 kOhm
23-
rb = 10000;
24-
// Ginf = 1/Rinf
25-
ginf = 120.6685;
26-
27-
Thermistor = {
28-
c: function(raw) {
29-
var rthermistor, tempc;
30-
31-
rthermistor = rb * (adcres / raw - 1);
32-
tempc = beta / (Math.log(rthermistor * ginf));
33-
34-
return tempc - kelvin;
35-
},
36-
f: function(raw) {
37-
return (this.c(raw) * 9) / 5 + 32;
38-
}
39-
};
40-
}());
11+
var five = require("johnny-five");
4112

4213
new five.Board().on("ready", function() {
43-
new five.Sensor("I0").on("change", function() {
44-
console.log("F: ", Thermistor.f(this.value));
45-
console.log("C: ", Thermistor.c(this.value));
14+
new five.Temperature({controller: "TINKERKIT", pin: "I0"}).on("change", function() {
15+
console.log("F: ", this.fahrenheit);
16+
console.log("C: ", this.celsius);
4617
});
4718
});
4819

eg/tinkerkit-thermistor.js

+4-33
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,9 @@
1-
var five = require("../lib/johnny-five.js"),
2-
Thermistor;
3-
4-
(function() {
5-
var adcres, beta, kelvin, rb, ginf;
6-
7-
adcres = 1023;
8-
// Beta parameter
9-
beta = 3950;
10-
// 0°C = 273.15 K
11-
kelvin = 273.15;
12-
// 10 kOhm
13-
rb = 10000;
14-
// Ginf = 1/Rinf
15-
ginf = 120.6685;
16-
17-
Thermistor = {
18-
c: function(raw) {
19-
var rthermistor, tempc;
20-
21-
rthermistor = rb * (adcres / raw - 1);
22-
tempc = beta / (Math.log(rthermistor * ginf));
23-
24-
return tempc - kelvin;
25-
},
26-
f: function(raw) {
27-
return (this.c(raw) * 9) / 5 + 32;
28-
}
29-
};
30-
}());
1+
var five = require("../lib/johnny-five.js");
312

323
new five.Board().on("ready", function() {
33-
new five.Sensor("I0").on("change", function() {
34-
console.log("F: ", Thermistor.f(this.value));
35-
console.log("C: ", Thermistor.c(this.value));
4+
new five.Temperature({controller: "TINKERKIT", pin: "I0"}).on("change", function() {
5+
console.log("F: ", this.fahrenheit);
6+
console.log("C: ", this.celsius);
367
});
378
});
389

lib/temperature.js

+19
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,25 @@ var Controllers = {
178178
return tempc;
179179
}
180180
}
181+
},
182+
TINKERKIT: {
183+
initialize: {
184+
value: analogHandler
185+
},
186+
toCelsius: {
187+
value: function(raw) {
188+
var adcres = 1023;
189+
var beta = 3950;
190+
var kelvin = 273.15;
191+
var rb = 10000; // 10 kOhm
192+
var ginf = 120.6685; // Ginf = 1/Rinf
193+
194+
var rthermistor = rb * (adcres / raw - 1);
195+
var tempc = beta / (Math.log(rthermistor * ginf));
196+
197+
return tempc - kelvin;
198+
}
199+
}
181200
}
182201
};
183202

test/temperature.js

+43
Original file line numberDiff line numberDiff line change
@@ -438,3 +438,46 @@ exports["Temperature -- GROVE"] = {
438438
test.done();
439439
}
440440
};
441+
442+
exports["Temperature -- TINKERKIT"] = {
443+
444+
setUp: function(done) {
445+
446+
this.clock = sinon.useFakeTimers();
447+
this.analogRead = sinon.spy(board.io, "analogRead");
448+
this.temperature = new Temperature({
449+
controller: "TINKERKIT",
450+
pin: "A0",
451+
freq: 100,
452+
board: board
453+
});
454+
455+
done();
456+
},
457+
458+
tearDown: function(done) {
459+
this.analogRead.restore();
460+
this.clock.restore();
461+
done();
462+
},
463+
464+
data: function(test) {
465+
466+
var raw = this.analogRead.args[0][1],
467+
spy = sinon.spy();
468+
469+
test.expect(4);
470+
this.temperature.on("data", spy);
471+
472+
raw(810);
473+
474+
this.clock.tick(100);
475+
476+
test.ok(spy.calledOnce);
477+
test.equals(Math.round(spy.args[0][1].celsius), 39);
478+
test.equals(Math.round(spy.args[0][1].fahrenheit), 102);
479+
test.equals(Math.round(spy.args[0][1].kelvin), 312);
480+
481+
test.done();
482+
}
483+
};

tpl/titles.json

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
"tinkerkit-joystick.js": "TinkerKit - Joystick",
121121
"tinkerkit-linear-pot.js": "TinkerKit - Linear Potentiometer",
122122
"tinkerkit-rotary.js": "TinkerKit - Rotary Potentiometer",
123+
"tinkerkit-thermistor.js": "TinkerKit -- Temperature",
123124
"tinkerkit-tilt.js": "TinkerKit - Tilt Sensor",
124125
"tinkerkit-touch.js": "TinkerKit - Touch Sensor",
125126
"led-blink.js": "LED - Blink",

0 commit comments

Comments
 (0)