i want to make a DIY toy based on arduino (2 vibro rn) and i need to change config so it sends 2 different outputs on serial port - L and R (i use T-code)
i have almost 0 experience in json and coding (changing AI written code is not coding i think)
this is my dumb config what is good only for not breaking intiface central and making 2 different sliders in IC
{
"version": {
"major": 3,
"minor": 0
},
"user-configs": {
"protocols": {
"tcode-v03": {
"communication": [
{
"serial": {
"baud-rate": 250000,
"data-bits": 8,
"stop-bits": 1,
"parity": "N",
"port": "COM3"
}
}
],
"configurations": []
}
},
"devices": [
{
"identifier": {
"protocol": "tcode-v03",
"identifier": "COM3",
"address": "COM3"
},
"config": {
"name": "TCode v0.3 (Single Linear Axis)",
"features": [
{
"description": "",
"feature-type": "Vibrate",
"actuator": {
"step-range": [
0,
255
],
"step-limit": [
0,
255
],
"messages": [
"ScalarCmd"
]
}
},
{
"description": "",
"feature-type": "Vibrate",
"actuator": {
"step-range": [
0,
255
],
"step-limit": [
0,
255
],
"messages": [
"ScalarCmd"
]
}
}
],
"user-config": {
"display-name": "",
"allow": false,
"deny": false,
"index": 0
}
}
}
]
}
}