diff --git a/light9/web/live/index.html b/light9/web/live/index.html
--- a/light9/web/live/index.html
+++ b/light9/web/live/index.html
@@ -129,6 +129,7 @@
step=".001"
editable
content-type="application/json"
+ value="{{sliderWriteValue}}"
immediate-value="{{immediateSlider}}">
diff --git a/light9/web/live/live.coffee b/light9/web/live/live.coffee
--- a/light9/web/live/live.coffee
+++ b/light9/web/live/live.coffee
@@ -9,6 +9,7 @@ Polymer
value: { type: Object, notify: true }
immediateSlider: { notify: true, observer: 'onSlider' }
+ sliderWriteValue: { type: Number }
pickedChoice: { observer: 'onChange' }
observers: [
'onChange(value)'
@@ -23,6 +24,8 @@ Polymer
resend: ->
window.gather(@lastSent)
clear: ->
+ @pickedChoice = null
+ @sliderWriteValue = 0
if @deviceAttr.useColor
@value = '#000000'
else