From 049dc24ec02f3a14377d833ebf60efc4de12d918 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Wed, 13 Nov 2024 04:18:23 -0500 Subject: Thermostat widget JS --- scripts/main.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/main.js') 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); -- cgit v1.2.3