diff options
Diffstat (limited to 'scripts/main.js')
-rw-r--r-- | scripts/main.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/main.js b/scripts/main.js index 3cdbe12..cedfb79 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -18,6 +18,8 @@ class Client { content.appendChild(this.light.element); this.wheel = new WidgetColorWheel(); content.appendChild(this.wheel.element); + this.therm = new WidgetThermostat({temp: 72, gague: 69}); + content.appendChild(this.therm.element); // content.appendChild(Widget("button").el); // content.appendChild(Widget("checkbox").el); // content.appendChild(Widget("slider").el); |