Created
December 5, 2014 06:30
-
-
Save dt/ba4dd0ce404fb83a49be to your computer and use it in GitHub Desktop.
#coffeebot device
This file contains 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
light <- hardware.pin8; | |
light.configure(ANALOG_IN); | |
function check() { | |
agent.send("lvl", light.read()); | |
imp.wakeup(10, check); | |
} | |
check(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment