We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module description is such as follows. This module is simple enough to build on a breadboard.
{ "node_type": "Module", "model_name": "a3.poc", "model_id": 3, "component_number": 0, "channel": "can", "child_nodes": [{ "node_type": "Knob", "node_name": "LED", "component_number": 1, "max_value": 255 }, { "node_type": "Switch", "node_name": "Color", "component_number": 2, "options": [ "red", "green", "blue" ], "initial_value": 0 }] }
The text was updated successfully, but these errors were encountered:
Instance descriptor:
instance_descriptor = { model_id: 3, instance_id: 0, components: [ 0, // module value, usually meaningless 128, 1 ] };
Sorry, something went wrong.
struct instance_descriptor { uint16_t model_id; uint16_t instance_id; uint16_t components[]; };
naokiiwakami
No branches or pull requests
Module description is such as follows. This module is simple enough to build on a breadboard.
The text was updated successfully, but these errors were encountered: