aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/fan_speed.js
blob: cc81fe022e5a7392cc8cbb42ed73501a14b13cd3 (plain)
1
2
3
4
5
6
7
8
9
10
module.exports = {
    set: function(value) {
        document.getElementById('FanSpeedProgress').value = value;
        document.getElementById('FanSpeedInput').value = value;
    },
    update: function( value ) {
        this.set(value);

    }
}