File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ class InfoWindow extends Component {
32
32
commandText = `Waypoint (${ this . props . command } / ${ this . getType ( ) } ) ` ;
33
33
} else if ( this . props . command === 21 ) {
34
34
commandText = `Land (${ this . props . command } / ${ this . getType ( ) } ) ` ;
35
+ } else if ( this . props . command === 203 ) {
36
+ commandText = `Take a Picture (${ this . props . command } / ${ this . getType ( ) } ) ` ;
35
37
}
36
38
37
39
return commandText ;
Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ const commands = [
38
38
{
39
39
value : 112 ,
40
40
label : 'MAV_CMD_CONDITION_DELAY'
41
+ } ,
42
+ {
43
+ value : 203 ,
44
+ label : 'Take a Picture'
41
45
}
42
46
]
43
47
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ export class MissionSidebarItem extends Component {
46
46
commandText = `Waypoint (${ this . props . command } / ${ this . getType ( ) } ) ` ;
47
47
} else if ( this . props . command === 21 ) {
48
48
commandText = `Land (${ this . props . command } / ${ this . getType ( ) } ) ` ;
49
+ } else if ( this . props . command === 203 ) {
50
+ commandText = `Take a Picture (${ this . props . command } / ${ this . getType ( ) } ) ` ;
49
51
}
50
52
51
53
return commandText ;
Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ const commands = [
38
38
value : 112 ,
39
39
label : 'MAV_CMD_CONDITION_DELAY' ,
40
40
} ,
41
+ {
42
+ value : 203 ,
43
+ label : 'Take a Picture' ,
44
+ } ,
41
45
] ;
42
46
43
47
export default commands ;
You can’t perform that action at this time.
0 commit comments