Created
April 17, 2015 22:43
-
-
Save sqrtofsaturn/9156d6cd90b7ce20aa5d to your computer and use it in GitHub Desktop.
Function node configuration in the Octoblu designer
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
// First function node | |
msg.payload = { | |
"servo": "PWM0", | |
"value": 180, | |
"speed": 1000 | |
}; | |
return msg; | |
// Second function node | |
msg.payload = { | |
"servo": "PWM0", | |
"value": 0, | |
"speed": 1000 | |
}; | |
return msg; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment