aboutsummaryrefslogtreecommitdiffstats
path: root/python/examples
diff options
context:
space:
mode:
authorgeremy2015-01-04 17:34:29 -0800
committergeremy2015-01-04 17:34:29 -0800
commit2027e8b20ab05946e357f7357c91a19d3a50e483 (patch)
tree7410b7fd7ea7f0b44e2ef7c6c41bf5eeb35a98a1 /python/examples
parent58974042044d53309d914eacc0e0abeca972e63e (diff)
downloadpubnub-python-2027e8b20ab05946e357f7357c91a19d3a50e483.tar.bz2
adding ability to tweak dynamically
Diffstat (limited to 'python/examples')
-rw-r--r--python/examples/futureHouse/waveViz.html13
-rw-r--r--python/examples/futureHouse/waveViz.js12
2 files changed, 19 insertions, 6 deletions
diff --git a/python/examples/futureHouse/waveViz.html b/python/examples/futureHouse/waveViz.html
index d85a47d..273f3b8 100644
--- a/python/examples/futureHouse/waveViz.html
+++ b/python/examples/futureHouse/waveViz.html
@@ -9,16 +9,19 @@
</div>
+<label>minPulseLength (0-4096)</label>
+<input id="minPulseLength">
<label>maxPulseLength (0-4096)</label>
-<input type="text" name="maxPulseLength">
-<label>minPulseLength (0-4096)</label>
-<input name="minPulseLength">
+<input type="text" id="maxPulseLength">
+
<br/>
+
<label>waitFloor (0-2, should be less than waitCeiling</label>
-<input name="waitFloor">
+<input id="waitFloor">
+
<label>waitCeiling (0-2, should be more than waitFloor)</label>
-<input name="waitCeiling">
+<input id="waitCeiling">
</body>
</html>
diff --git a/python/examples/futureHouse/waveViz.js b/python/examples/futureHouse/waveViz.js
index 5e59a18..a0cb53f 100644
--- a/python/examples/futureHouse/waveViz.js
+++ b/python/examples/futureHouse/waveViz.js
@@ -34,6 +34,16 @@ $(function () {
ctx.strokeStyle = '#ffffff';
ctx.fillStyle = 'rgb(50, 50, 80)';
+ $("#minPulseLength").on('keydown', function (e) {
+
+ if (e.keyCode == 13) {
+ var v = $("#minPulseLength").val();
+ osc1.min = v;
+ console.log("minP: " + v);
+ }
+
+ });
+
function loop() {
var i;
@@ -99,7 +109,7 @@ $(function () {
//return max * Math.sin(a * Math.PI);
var waveVal = a < 1 ? this.min : this.max;
- console.log(waveVal);
+ // console.log(waveVal);
return waveVal;
}