+
+ ${supportsTones
+ ? html`
+
+ ${Object.entries(
+ this._stateObj.attributes.available_tones
+ ).map(
+ ([toneId, toneName]) => html`
+ ${toneName}
+ `
+ )}
+
+ `
+ : nothing}
+ ${supportsVolume
+ ? html`
+
+ `
+ : nothing}
+ ${supportsDuration
+ ? html`
+
+ `
+ : nothing}
+
+
+
+
+
+
+
+
+
+
+