aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/fan_speed.js
diff options
context:
space:
mode:
authorHumberto Alfonso Díaz <humberto.alfonso@asvito.es>2019-07-05 11:15:05 +0200
committerLorenzo Tilve <ltilve@igalia.com>2020-02-04 19:12:47 +0100
commitce1bd2c48d2aaabda784ebc42ce1d7efac4b2303 (patch)
treed109f6f139868a7239ca16ac0eae331fe71f3539 /src/js/fan_speed.js
parent7093bea641652ca4cddba8233d56c5968787f01b (diff)
FUNCT Add buttons, fan speed and chair functionality
Diffstat (limited to 'src/js/fan_speed.js')
-rw-r--r--src/js/fan_speed.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/js/fan_speed.js b/src/js/fan_speed.js
new file mode 100644
index 0000000..cc81fe0
--- /dev/null
+++ b/src/js/fan_speed.js
@@ -0,0 +1,10 @@
+module.exports = {
+ set: function(value) {
+ document.getElementById('FanSpeedProgress').value = value;
+ document.getElementById('FanSpeedInput').value = value;
+ },
+ update: function( value ) {
+ this.set(value);
+
+ }
+} \ No newline at end of file