Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.3%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: fullstackengineer777
- License: mit
- Language: Python
- Default Branch: master
- Size: 91.8 KB
Statistics
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
2022 FEBRUARY UPDATE
V1.1 INTRODUCED
CHANGELOG: - Source code updated - Bug fixes and performance updates - GUI updated, now better! faster! - English language is added.
For serial communication tests, the "serial.ino" file can be investigated!
New UI:

NOTES FROM 2018
NOTE: Program Language is Turkish, but It can be easily adopted and translated to other languages freely.
Serial-Communication-GUI-Program
PyQt, Serial Communication between different hardware During my test releases, I have tried NodeMCU and Arduino cards. Also, the program tested on Windows 10 x64 and Ubuntu 16.04.
Feature 1
On the right side of the GUI, you can access the port options. After you selected baud rate, port name, etc. you can save your settings via "kaydet" button which means save exactly.
Feature 2
Python PyQt threading, multitasking feature added. Due to multitasking function, the program does not crash (one of the thread keen on serial port listen, other does rest of tasks) and uses less memory.
It has different 2 blocks of code.
One worker runs in one thread also the main side of the program runs at the same time.
class Worker(QObject):
finished = pyqtSignal()
intReady = pyqtSignal(str)
@pyqtSlot()
def __init__(self):
super(Worker, self).__init__()
self.working = True
def work(self):
while self.working:
line = ser.readline().decode('utf-8')
# print(line)
time.sleep(0.05)
self.intReady.emit(line)
# if line != '':
# self.textEdit_3.append(line)
self.finished.emit()
Multitasking
Thread1 listen COM port and convert data to UTF-8
Thread2 send data to serially connected hardware (Arduino, esp32, raspberry pi, etc.) also, control the buttons
PyQt5
The program is using Pyqt5 instead of the 4th version of PyQt.
Owner
- Name: Full Stack | BlockChain Developer
- Login: fullstackengineer777
- Kind: user
- Location: fullstackdev3546@gmail.com
- Company: Telegram : @fullstackengineer7
- Repositories: 1
- Profile: https://github.com/fullstackengineer777
Backend: PHP, Laravel, WP, Node.js Frontend: React.js, Angular.js , Vue.js , Javascript Desktop: C++, C#, Unity
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use this research, please cite it as below." authors: - family-names: "Aksoy" given-names: "Mehmet Çağrı" orcid: " https://orcid.org/0000-0002-7886-7945 " title: "Serial-Communication-GUI-Program" version: 1.0.0 doi: 10.5281/zenodo.1234 date-released: 2018 url: "https://github.com/mcagriaksoy/Serial-Communication-GUI-Program"