Skip to content

Commit 2edcfe6

Browse files
author
Michal
committed
Updated .md's and TODO
1 parent e4724e7 commit 2edcfe6

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<p align="center">
22
<h1 align="left">QtSerialMonitor </h1>
33
<p align="left">
4-
<a href="https://github.com/mich-w/QtSerialMonitor/blob/master/LICENSE"> <img alt="license" src="https://img.shields.io/github/license/mich-w/QtSerialMonitor"> </a>
5-
<a href="https://github.com/mich-w/QtSerialMonitor/releases"> <img alt="downloads" src="https://img.shields.io/github/downloads/mich-w/QtSerialMonitor/total"></a>
6-
<a href="https://github.com/mich-w/QtSerialMonitor/releases"> <img alt="latest release" src="https://img.shields.io/github/v/release/mich-w/QtSerialMonitor"></a>
4+
<a href="https://github.com/mich-w/QtSerialMonitor/blob/master/LICENSE"> <img alt="license" src="https://img.shields.io/github/license/mich-w/QtSerialMonitor?style=flat-square"> </a>
5+
<a href="https://github.com/mich-w/QtSerialMonitor/releases"> <img alt="downloads" src="https://img.shields.io/github/downloads/mich-w/QtSerialMonitor/total?style=flat-square"></a>
6+
<a href="https://github.com/mich-w/QtSerialMonitor/releases"> <img alt="latest release" src="https://img.shields.io/github/v/release/mich-w/QtSerialMonitor?style=flat-square"></a>
77
</p>
88
</p>
99

@@ -12,10 +12,10 @@ Universal serial monitor with data plotting capabilities, based on [Qt](https://
1212
<img src="https://raw.githubusercontent.com/mich-w/QtSerialMonitor/master/docs/_screenshots/Sines3.gif">
1313

1414
**Features:**
15-
1615
- In/out serial data terminal with command history,
1716
- UDP network protocol support,
18-
- Advanced data plotter with multiple graphs support and basic data filtering - uses [QCustomPlot](https://www.qcustomplot.com/),
17+
- Resizable UI widgets,
18+
- Data plotter with multiple graphs support and basic data filtering - uses [QCustomPlot](https://www.qcustomplot.com/),
1919
- Printer support, ability to save graph as image,
2020
- Read/write ".txt" data logs,
2121
- many more...
@@ -26,14 +26,12 @@ Universal serial monitor with data plotting capabilities, based on [Qt](https://
2626

2727
**Work in progress:**
2828

29-
29+
- Linux compatibility
3030

3131
- 3D Orientation Demo - for IMU testing (user will be able to toggle between chart view
3232
and a simple 3D scene containing an object rotating accordingly to received roll,
3333
pitch and yaw values, representing the sensor's orientation),
3434

35-
- "What’s this ?" popups for less obvious widgets,
36-
3735
- Improvements, fixes etc.
3836

3937
----

src/TODO

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
- QRegExp -> new QRegularExpressions from Qt 5.0
2+
- TODO - make serial linux compatible (port names)

src/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ void MainWindow::on_updateSerialDeviceList()
842842
else if ((devices.count() < 1) && !ui->comboBoxDevices->itemText(0).startsWith("No COM devices"))
843843
{
844844
ui->comboBoxDevices->clear();
845-
ui->comboBoxDevices->addItem("No COM devices detected :(");
845+
ui->comboBoxDevices->addItem("No serial devices detected :(");
846846
ui->comboBoxDevices->setCurrentIndex(ui->comboBoxDevices->count() - 1);
847847
}
848848

0 commit comments

Comments
 (0)