Skip to content

Commit 6e0afd8

Browse files
author
John Lee
committed
update to compatible with kernel 4.9
1 parent 88dd835 commit 6e0afd8

6 files changed

+176
-74
lines changed

EnergyMonitor.pro

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
######################################################################
2+
# Automatically generated by qmake (2.01a) ? 6? 7 10:33:24 2017
3+
######################################################################
4+
5+
CONFIG += qwt
6+
7+
TEMPLATE = app
8+
TARGET =
9+
DEPENDPATH += .
10+
INCLUDEPATH += .
11+
12+
# Input
13+
HEADERS += displaysysinfo.h getnode.h
14+
FORMS += displaysysinfo.ui
15+
SOURCES += displaysysinfo.cpp getnode.cpp main.cpp

README.md

+2-16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## This is the project Energy Monitoring program compatible the odroidxu3.
1+
## This is the project Energy Monitoring program compatible the ODROID-XU4.
22
### How to build the Energy Monitor Qt application.
33

44
#### Install packages and clone the source code.
@@ -7,22 +7,8 @@
77
# sudo apt-get install qt4-default libqwt-dev
88
# git clone https://github.com/hardkernel/EnergyMonitor.git
99
```
10-
11-
#### Create a project file.
12-
```
13-
# qmake -project
14-
```
15-
16-
#### Add below CONFIG line in the project file.
17-
```
18-
# vi EnergyMonitor.pro
19-
```
20-
######...
21-
######CONFIG += qwt
22-
######...
23-
2410
#### Make!
2511
```
26-
# qmake
12+
# qmake-qt4
2713
# make -j8
2814
```

displaysysinfo.cpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ DisplaySysInfo::DisplaySysInfo(QWidget *parent) :
1212
{
1313
ui->setupUi(this);
1414

15-
QLabel *version = new QLabel(this);
16-
version->setText("S/W Version : 1.2");
17-
version->setGeometry(10, 350, 150, 20);
18-
1915
armPlotData.index = 0;
2016
memPlotData.index = 0;
2117
kfcPlotData.index = 0;
@@ -44,6 +40,12 @@ DisplaySysInfo::DisplaySysInfo(QWidget *parent) :
4440
displaySensorPlot();
4541
}
4642

43+
getNode->GetSystemInfo();
44+
45+
ui->losname->setText(getNode->os_name + " : " + getNode->os_ver);
46+
ui->lkernel->setText("Kernel : " + getNode->kernel_ver);
47+
ui->lsw_ver->setText("Energy Monitor 1.3");
48+
4749
QTimer *timer = new QTimer(this);
4850
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
4951
timer->start(1000);

0 commit comments

Comments
 (0)