Add 10 and 25 gyro scales to motor tab

10.7.0-preview
Miguel Angel Mulero Martinez 2019-09-12 16:51:30 +02:00
parent 62a0ba51a9
commit 2db22c9536
1 changed files with 18 additions and 2 deletions

View File

@ -9,8 +9,24 @@ TABS.motors = {
sensorAccelRate: 20,
sensorAccelScale: 2,
sensorSelectValues: {
"gyroScale": {"50":50,"100":100,"200":200,"300":300,"400":400,"500":500,"1000":1000,"2000":2000},
"accelScale": {"0.05":0.05,"0.1":0.1,"0.2":0.2,"0.3":0.3,"0.4":0.4,"0.5":0.5,"1":1,"2":2}
"gyroScale": {"10" : 10,
"25" : 25,
"50" : 50,
"100" : 100,
"200" : 200,
"300" : 300,
"400" : 400,
"500" : 500,
"1000" : 1000,
"2000" : 2000},
"accelScale": {"0.05" : 0.05,
"0.1" : 0.1,
"0.2" : 0.2,
"0.3" : 0.3,
"0.4" : 0.4,
"0.5" : 0.5,
"1" : 1,
"2" : 2}
},
// These are translated into proper Dshot values on the flight controller
DSHOT_DISARMED_VALUE: 1000,