Skip to content

Commit 648998a

Browse files
Renamed 'DEBUG' to 'debug' conform dvg-qdeviceio
1 parent c1f6144 commit 648998a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Arduino_PyQt_demo_with_multithreading.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = "Dennis van Gils"
77
__authoremail__ = "vangils.dennis@gmail.com"
88
__url__ = "https://github.com/Dennis-van-Gils/DvG_Arduino_PyQt_multithread_demo"
9-
__date__ = "23-06-2020"
9+
__date__ = "24-06-2020"
1010
__version__ = "2.1"
1111

1212
import os
@@ -469,10 +469,10 @@ def DAQ_function():
469469
DAQ_interval_ms = DAQ_INTERVAL_ARDUINO,
470470
DAQ_timer_type = QtCore.Qt.PreciseTimer,
471471
critical_not_alive_count = 3,
472-
DEBUG = DEBUG,)
472+
debug = DEBUG,)
473473
# fmt: on
474474

475-
qdev_ard.create_worker_jobs(DEBUG=DEBUG)
475+
qdev_ard.create_worker_jobs(debug=DEBUG)
476476

477477
# Connect signals to slots
478478
qdev_ard.signal_DAQ_updated.connect(update_GUI)

Arduino_PyQt_demo_with_multithreading__LARGE_TEXT.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = "Dennis van Gils"
77
__authoremail__ = "vangils.dennis@gmail.com"
88
__url__ = "https://github.com/Dennis-van-Gils/DvG_Arduino_PyQt_multithread_demo"
9-
__date__ = "23-06-2020"
9+
__date__ = "24-06-2020"
1010
__version__ = "2.1"
1111

1212
import os
@@ -499,10 +499,10 @@ def my_Arduino_DAQ_update():
499499
DAQ_interval_ms = UPDATE_INTERVAL_ARDUINO,
500500
DAQ_timer_type = QtCore.Qt.PreciseTimer,
501501
critical_not_alive_count = 3,
502-
DEBUG = DEBUG)
502+
debug = DEBUG)
503503
# fmt: on
504504

505-
qdev_ard.create_worker_jobs(DEBUG=DEBUG)
505+
qdev_ard.create_worker_jobs(debug=DEBUG)
506506

507507
# Connect signals to slots
508508
qdev_ard.signal_DAQ_updated.connect(update_GUI)

Arduino_PyQt_demo_with_multithreading__minimalistic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = "Dennis van Gils"
77
__authoremail__ = "vangils.dennis@gmail.com"
88
__url__ = "https://github.com/Dennis-van-Gils/DvG_Arduino_PyQt_multithread_demo"
9-
__date__ = "23-06-2020"
9+
__date__ = "24-06-2020"
1010
__version__ = "2.1"
1111

1212
import os
@@ -220,7 +220,7 @@ def my_Arduino_DAQ_update():
220220
DAQ_interval_ms = UPDATE_INTERVAL_ARDUINO,
221221
DAQ_timer_type = QtCore.Qt.PreciseTimer,
222222
critical_not_alive_count = 3,
223-
DEBUG = DEBUG)
223+
debug = DEBUG)
224224
# fmt: on
225225

226226
# Start workers

0 commit comments

Comments
 (0)