/CircuitConfiguration.json Secret
Created
October 2, 2021 20:46
Star
You must be signed in to star a gist
Configuration file for GUI Interface for IOT Simulator
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
{ | |
"name":"Analog Device", | |
"width":700, | |
"height":350, | |
"leds":[ | |
{ | |
"x":105, | |
"y":80, | |
"name":"LED", | |
"pin":21 | |
} | |
], | |
"motors":[ | |
{ | |
"x":316, | |
"y":80, | |
"name":"DC Motor", | |
"forward_pin":22, | |
"backward_pin":23 | |
} | |
], | |
"servos":[ | |
{ | |
"x":537, | |
"y":80, | |
"name":"Servo Motor", | |
"pin":24, | |
"min_angle":-180, | |
"max_angle":180, | |
"initial_angle":20 | |
} | |
], | |
"adc":{ | |
"mcp_chip":3008, | |
"potenciometers":[ | |
{ | |
"x":40, | |
"y":200, | |
"name":"Brightness Potentiometer", | |
"channel":0 | |
}, | |
{ | |
"x":270, | |
"y":200, | |
"name":"Speed Potentiometer", | |
"channel":2 | |
}, | |
{ | |
"x":500, | |
"y":200, | |
"name":"Angle Potentiometer", | |
"channel":6 | |
} | |
] | |
}, | |
"toggles":[ | |
{ | |
"x":270, | |
"y":270, | |
"name":"Direction Toggle Switch", | |
"pin":15, | |
"off_label":"backward", | |
"on_label":"forward", | |
"is_on":false | |
} | |
], | |
"labels":[ | |
{ | |
"x":15, | |
"y":35, | |
"width":25, | |
"height":18, | |
"borderwidth":2, | |
"relief":"solid" | |
}, | |
{ | |
"x":56, | |
"y":26, | |
"text":"Brightness Control" | |
}, | |
{ | |
"x":245, | |
"y":35, | |
"width":25, | |
"height":18, | |
"borderwidth":2, | |
"relief":"solid" | |
}, | |
{ | |
"x":298, | |
"y":26, | |
"text":"Speed Control" | |
}, | |
{ | |
"x":475, | |
"y":35, | |
"width":25, | |
"height":18, | |
"borderwidth":2, | |
"relief":"solid" | |
}, | |
{ | |
"x":531, | |
"y":26, | |
"text":"Angle Control" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment