Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
7eacc342
Commit
7eacc342
authored
Mar 19, 2015
by
Lorenz Meier
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1372 from dogmaphobic/fixBattery
Advanced Power Config
parents
d890bbb0
afb59711
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
13 deletions
+31
-13
ParameterFactMetaData.xml
src/AutoPilotPlugins/PX4/ParameterFactMetaData.xml
+1
-0
PowerComponent.qml
src/AutoPilotPlugins/PX4/PowerComponent.qml
+30
-13
No files found.
src/AutoPilotPlugins/PX4/ParameterFactMetaData.xml
View file @
7eacc342
...
...
@@ -30,6 +30,7 @@
<short_desc>
Battery capacity
</short_desc>
<long_desc>
Defines the capacity of the attached battery.
</long_desc>
<default>
-1.0
</default>
<unit>
mA
</unit>
</parameter>
<parameter
name=
"BAT_V_SCALE_IO"
type=
"INT32"
>
<short_desc>
Scaling factor for battery voltage sensor on PX4IO
</short_desc>
...
...
src/AutoPilotPlugins/PX4/PowerComponent.qml
View file @
7eacc342
...
...
@@ -44,7 +44,7 @@ Rectangle {
color
:
palette
.
window
property
int
firstColumnWidth
:
220
property
int
textEditWidth
:
6
0
property
int
textEditWidth
:
8
0
property
ScreenTools
screenTools
:
ScreenTools
{
}
property
Fact
battNumCells
:
Fact
{
name
:
"
BAT_N_CELLS
"
}
...
...
@@ -109,7 +109,7 @@ Rectangle {
Rectangle
{
width
:
parent
.
width
height
:
1
6
0
height
:
1
2
0
color
:
palette
.
windowShade
Column
{
...
...
@@ -155,17 +155,6 @@ Rectangle {
showUnits
:
true
}
}
Row
{
spacing
:
10
visible
:
showAdvanced
.
checked
QGCLabel
{
text
:
"
Voltage Drop on Full Load (per cell)
"
;
width
:
firstColumnWidth
;
anchors.baseline
:
battDropField
.
baseline
}
FactTextField
{
id
:
battDropField
width
:
textEditWidth
fact
:
Fact
{
name
:
"
BAT_V_LOAD_DROP
"
}
showUnits
:
true
}
}
}
Canvas
{
id
:
arrows
...
...
@@ -276,5 +265,33 @@ Rectangle {
id
:
showAdvanced
text
:
"
Show Advanced Settings
"
}
QGCLabel
{
text
:
"
Advanced Power Settings
"
color
:
palette
.
text
font.pointSize
:
screenTools
.
dpiAdjustedPointSize
(
20
);
visible
:
showAdvanced
.
checked
}
Rectangle
{
width
:
parent
.
width
height
:
40
color
:
palette
.
windowShade
visible
:
showAdvanced
.
checked
Column
{
id
:
advBatteryColumn
spacing
:
10
anchors.verticalCenter
:
parent
.
verticalCenter
x
:
(
parent
.
x
+
20
)
Row
{
spacing
:
10
QGCLabel
{
text
:
"
Voltage Drop on Full Load (per cell)
"
;
width
:
firstColumnWidth
;
anchors.baseline
:
battDropField
.
baseline
}
FactTextField
{
id
:
battDropField
width
:
textEditWidth
fact
:
Fact
{
name
:
"
BAT_V_LOAD_DROP
"
}
showUnits
:
true
}
}
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment