Skip to content

Instantly share code, notes, and snippets.

@ddossot
Created May 7, 2013 22:29
Show Gist options
  • Save ddossot/5536691 to your computer and use it in GitHub Desktop.
Save ddossot/5536691 to your computer and use it in GitHub Desktop.
<flow name="setupBlink1">
<blink1:set-color deviceId="${blink1.device.id}" color="off" />
<blink1:clear-pattern deviceId="${blink1.device.id}" />
<blink1:store-pattern deviceId="${blink1.device.id}">
<blink1:entries>
<blink1:entry color="green" duration="100" />
<blink1:entry color="off" duration="100" />
</blink1:entries>
</blink1:store-pattern>
<logger level="INFO" message="blink(1) initialized" />
</flow>
<flow name="resetBlink1">
<blink1:set-color deviceId="${blink1.device.id}" color="off" />
<blink1:clear-pattern deviceId="${blink1.device.id}" />
<logger level="INFO" message="blink(1) turned off" />
</flow>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment