From b0aa4a84e625f1e7d2aff5e76c447ad9a6437071 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Wed, 13 Nov 2024 15:13:11 -0500 Subject: Button selector v1 --- scripts/main.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'scripts/main.js') diff --git a/scripts/main.js b/scripts/main.js index cedfb79..0ed7fd1 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -20,6 +20,11 @@ class Client { content.appendChild(this.wheel.element); this.therm = new WidgetThermostat({temp: 72, gague: 69}); content.appendChild(this.therm.element); + this.sel_b = new WidgetSelectButton(2); + this.sel_b.addOption("Heat", "heat"); + this.sel_b.addOption("Cool", "cool"); + this.sel_b.addOption("Eco", "eco"); + content.appendChild(this.sel_b.element); // content.appendChild(Widget("button").el); // content.appendChild(Widget("checkbox").el); // content.appendChild(Widget("slider").el); -- cgit v1.2.3