Created
May 7, 2013 22:29
-
-
Save ddossot/5536691 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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